-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcss2css.css
More file actions
39 lines (39 loc) · 766 Bytes
/
css2css.css
File metadata and controls
39 lines (39 loc) · 766 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
body{
font-family: 'Source Sans Pro';
border: 20px solid #bdc3c7;
padding: 20px;
max-width: 700px;
width: 80%;
margin: 20px auto;
}
.left-border{
border-left: 5px solid #bdc3c7;
padding-left: 5px;
}
.Date {
color: #3498db;
text-transform: uppercase;
letter-spacing: 0.2rem;
}
h1{
color: #2c3e50;
font-size: 2.0rem;
}
hr{
overflow: visible; /* For IE */
height: 30px;
border-style: solid;
border-color: black;
border-width: 1px 0 0 0;
border-radius: 20px;
}
hr:before {
display: block;
content: "";
height: 30px;
margin-top: -31px;
border-style: solid;
border-color: black;
border-width: 0 0 1px 0;
border-radius: 20px;
}