-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
129 lines (100 loc) · 1.68 KB
/
styles.css
File metadata and controls
129 lines (100 loc) · 1.68 KB
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
font-size: 2rem;
}
h1,h2,h3,h4,h5,h6 {
color: #02456b;
text-transform: uppercase;
}
h3 { font-size: 1.5rem; }
h4 { font-size: 1.2rem; }
h3 em, h4 em {
font-style: italic;
}
a {
color: #0096e0;
text-decoration: none;
}
img.icon { width: 16px; }
p {
color: #345;
margin-block-start: 1rem;
font-size: 1rem;
}
hr {
height: 25px;
border: none;
background: no-repeat center url(img/sandwich.png);
}
a p {
color: #02456b;
font-size: 2rem;
}
em {
font-style: normal;
font-weight: bold;
}
article {
width: 95%;
margin: auto;
}
h1 {
text-transform: uppercase;
color: #789;
margin-top: 2rem;
}
h1 span {
color: #02456b;
}
ol {
padding-left: 0;
}
li {
padding: 0 0 1rem 1rem;
list-style: none;
border: 0.5rem solid transparent;
border-radius: 1rem;
}
li:first-of-type {
border-color: #ffc000;
}
blockquote {
font-size: 1.5rem;
margin-left: 0;
padding-left: 1rem;
border-left: 5px solid #abc;
}
blockquote p {
color: #789;
line-height: 2rem;
}
.votes {
font-weight: bold;
}
.upvotes,
.downvotes {
display: inline-block;
}
.upvotes {
color: #FF8b60;
}
.downvotes {
color: #9494FF;
}
@media(min-width:992px) {
p {
margin-block-start: 1rem;
}
li {
padding: 0 0 2rem 2rem;
}
article {
width: 50%;
}
blockquote {
font-size: 1.2rem;
}
blockquote p {
text-align: justify;
}
}