-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathblog.css
More file actions
65 lines (54 loc) · 987 Bytes
/
blog.css
File metadata and controls
65 lines (54 loc) · 987 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
div p:nth-of-type(1) {
color: rgb(0,255,100);
text-transform: uppercase;
font-weight: 800;
}
h1{
text-transform: capitalize;
}
div p:nth-of-type(2){
border-left: 10px solid green;
padding: 10px;
}
body{
border: 10px solid red;
margin: 20px auto;
width: 60%;
height: 80%;
padding: 30px;
}
div:nth-of-type(1){
border-bottom: 2px solid blue;
}
/*@import url(https://fonts.googleapis.com/css?family=Source+Sans+Pro:400,700);
body {
width: 80%;
border: 20px solid #bdc3c7;
font-family: 'Source Sans Pro', sans-serif;
padding: 20px;
margin: 20px auto;
max-width: 700px;
}
.post {
margin-bottom: 20px;
}
.date {
color: #3498db;
letter-spacing: 0.2rem;
text-transform: uppercase;
}
.quote{
border-left: 5px solid #bdc3c7;
padding-left: 5px;
}
h2 {
font-size: 2.0rem;
font-weight: bold;
color: #2c3e50;
}
hr{
border: 0;
height: 0;
border-top: 1px solid rgba(0, 0, 0, 0.1);
border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}*/