-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcv.css
More file actions
121 lines (107 loc) · 2.82 KB
/
cv.css
File metadata and controls
121 lines (107 loc) · 2.82 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
html, body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
line-height: 1.5;
color:#fff;
background:#222222;
}
body {
margin: 0 auto;
padding: 0 1rem;
}
nav.toc ul {
padding: 0 0 0 10px;
list-style-type: none;
margin: 0;
overflow: hidden;
background-color: #333;
border-radius:5%;
}
nav.toc li {
overflow: hidden;
text-decoration: none;
text-overflow: ellipsis;
white-space: nowrap;
display:inline;
float:left;
}
nav.toc li a {
display: block;
color: white;
text-align: center;
padding: 14px 16px;
text-decoration: none;
}
@media screen and (min-width: 600px) {
nav.toc {
padding: 0;
position: fixed;
top: 0;
bottom: 0;
margin: 0;
overflow-x: hidden;
overflow-y: auto;
width: 20%;
}
nav.toc ul {
padding: 0;
list-style-type: none;
margin: 0;
overflow: hidden;
background-color: #333;
border-radius:5%;
}
main {
margin-left: 22%;
}
.highlight {
color: white;
background: #333;
border-radius: 2%;
}
}
@media screen and (min-width: 1300px) {
body {
max-width: 1100px;
}
nav.toc {
width: 300px;
}
main {
margin-left: 320px;
}
.highlight {
color: white;
background: #333;
border-radius: 2%;
}
}
img {
max-width: 100%;
display: block;
margin: 0 auto;
}
a, code {
color: #33c0c7;
text-decoration: none;
}
.headers {
color: #0ce3cf;
}
.highlight {
color: white;
background: #333;
border-radius: 2%;
}
code pre {
overflow: auto;
}
@media (prefers-color-scheme: dark) {
html, body {
color: whitesmoke;
background: #222;
}
a, p code {
color: #0DD;
}
}
</style>