-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsite.css
More file actions
92 lines (76 loc) · 1.66 KB
/
Copy pathsite.css
File metadata and controls
92 lines (76 loc) · 1.66 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
/* General reusable stuff (from Bootstrap) */
.text-center { text-align: center; }
.float-right { float: right; }
.list-unstyled { padding: 0; }
.list-unstyled li { list-style-type: none; }
/* Print styles, for resume PDF */
@media print {
html { font-size: 14px; }
body {
margin: 0;
color: #000;
}
body > header { display: none; }
.hidden-print { display: none; }
}
@media screen {
.visible-print { display: none; }
}
/* Flex */
div.flex {
display: -webkit-flex;
display: flex;
}
div.flex-wrap {
-webkit-flex-wrap: wrap;
flex-wrap: wrap;
}
div.flex-center {
justify-content: center;
}
/* Index */
figure.mugshot {
max-width: 25%;
margin-top: 0;
}
/* Projects page */
div.project {
width: 25ch;
padding-right: 1ch;
}
/* Resume */
div.pdf-link { margin-top: 1.5rem; }
/* Records */
a.record { height: 200px; }
/* Posts */
.subtitle { margin-top: 0; }
nav.discussions { font-size: 0.833em; }
nav.discussions ul { margin-top: 0; }
div.footnotes ol, div.footnotes code {
font-size: 0.833em;
}
div.footnotes ol li p {
margin-top: 0;
}
/* Rouge highlighter */
.na, .nt, .nf { color: #900; }
.s, .s1, .s2 { color: #090; }
.nb, .mi, .mh { color: #009; }
.cp { color: #599; }
.k, .kc, .kd, .kt { color: #770; }
.p, .c1 { color: #555; }
.c { color: #777; }
/* Days-in-month formula post */
p.formula { text-align: center; }
table.tov { text-align: right; }
table.tov th {
font-weight: normal;
border-right-width: 2px;
}
table.tov td.y { background-color: #9e9; }
table.tov td.n { background-color: #e99; }
/* Tetrasm post */
table.memory code {
background-color: transparent;
border: none;
}