-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
190 lines (166 loc) · 2.48 KB
/
style.css
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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
body {
background-color: #fff;
padding: 50px;
color: #727272;
font-weight: 400;
word-wrap: break-word;
}
h1 {
font-size: 30px;
line-height: 1.1;
color: #222;
margin: 0 0 20px;
}
h1#header a {
color:#222;
text-decoration: none;
}
header p {
font-size: 22px;
}
a {
color: #267CB9;
text-decoration: none;
cursor: pointer;
}
svg.icon {
display: inline-block;
vertical-align: sub;
height: 1em;
}
p {
margin: 0 0 20px;
}
div#display p{
font-size: 18px;
margin: 0;
}
div#display ul {
list-style-type: none;
margin: 0;
padding: 0;
}
div#display ul li {
margin: 3px 0 3px;
font-size: 18px;
}
.wrapper {
width: 860px;
margin: 0 auto;
}
header {
margin: 20px;
position: sticky;
text-align: center;
display: block;
}
section {
margin: 30px;
position: sticky;
text-align: center;
}
.about h2 {
margin: 0;
}
.about p {
margin-top: 8px;
margin-left: auto;
margin-right: auto;
max-width: 600px;
text-align: center;
font-size: 20px;
}
.posts h2 {
margin: 0;
}
.posts ul {
list-style: none;
text-align: center;
margin: 10px auto;
padding: 0;
border: 0;
width: 600px;
}
.posts li .title {
margin: 0 0 5px 0;
}
.posts li .title h3 {
margin: 0;
padding: 0;
border: 0;
}
.posts li .title span {
color: #888;
font-size: 10px;
text-transform: uppercase;
}
.projects h2 {
margin: 0;
}
.projects ul {
list-style: none;
text-align: center;
margin: 10px auto;
padding: 0;
border: 0;
width: 600px;
}
.projects li .title {
margin: 0 0 5px 0;
}
.projects li .title h3 {
margin: 0;
padding: 0;
border: 0;
}
.projects li .title span {
color: #888;
font-size: 10px;
text-transform: uppercase;
}
@media print, screen and (max-width: 960px) {
div.wrapper {
width: auto;
margin: 0;
}
header{
float: none;
position: static;
width: auto;
}
}
@media print, screen and (max-width: 720px) {
body {
word-wrap:break-word
}
header {
padding:0
}
header ul,
header p.view {
position:static
}
pre,
code {
word-wrap:normal
}
}
@media print, screen and (max-width: 480px) {
body {
padding:15px
}
header ul {
width:99%
}
header li,
header ul li+li+li {
width:99%
}
}
@media print {
body {
padding:0.4in;
font-size:12pt;
color:#444
}
}