-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.css
More file actions
72 lines (59 loc) · 920 Bytes
/
main.css
File metadata and controls
72 lines (59 loc) · 920 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
66
67
68
69
70
71
72
body {
background-color: #1e1e1e;
text-align: center;
}
a {
color: #4980a0;
}
a:visited {
color: #CCCCCC
}
p {
word-wrap: break-word;
overflow-wrap: break-word;
}
.title {
font-size: 5.5em
}
.svg {
fill: #000;
}
.content {
color: #d4d4d4;
background-color: #252526;
font-family: monospace;
margin-top: 5%;
padding-top: 0%;
padding: 2%;
width: 70%;
max-width: 70em;
display: inline-block;
text-align: left;
}
.section {
margin-top: 1%;
border-top: 0.1em inset #d4d4d4;
}
.project {
border-left: 0.5em inset #d4d4d4;
padding-left: 0.5em
}
.image {
max-width: 400px;
max-height: 400px;
}
.lowered {
margin-top: 0.5em;
}
.footnote {
font-size: 80%;
width: 50%;
}
.darken {
-webkit-filter: brightness(0.8);
filter: brightness(0.8);
}
.neg {
-webkit-filter: invert(1);
filter: invert(1);
}