-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
111 lines (85 loc) · 1.39 KB
/
index.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
body {
font-family: Arial,Verdana,Tahoma;
font-size: 12px;
padding:0px;
margin:0px;
height: 100%;
background-color: black;
color: white;
}
main {
min-height: calc(100vh - 150px);
margin:0px auto 0px;
padding-left: 10px;
max-width: 800px;
padding-bottom: 33px;
}
footer {
width: 100%;
margin:0px auto;
max-width: 800px;
//border-top: 1px solid #e8e8e8;
padding-top: 10px;
}
a {
color: white;
text-decoration: none;
}
img { /* svg on an img tag */
-webkit-filter: invert(1); /* safari 6.0 - 9.0 */
filter: invert(1);
}
#nav {
min-height: 40px;
//border-bottom: 1px solid #e8e8e8;
font-size: 23px;
padding-top: 15px;
padding-left: 0px;
margin-top: 10px;
padding-bottom: 15px;
margin: auto;
max-width: 800px;
font-weight: 555;
}
#nav-color {
min-height: 4px;
width: 100%;
background: white;
}
#nav-name {
float:left;
padding-right: 40px;
margin-left: -2px;
}
.nav-item {
float: left;
padding-right: 15px;
}
.article {
margin-top: 30px;
width: 100%;
word-break: break-word;
}
.article-name {
font-size: 25px;
}
#nav-social {
margin-top: 3px;
padding-bottom: 10px;
}
@media (prefers-color-scheme: dark) {
body {
background-color: black;
color: white;
}
a {
color: white;
}
#nav-color {
background: white;
}
img { /* svg on an img tag */
-webkit-filter: invert(1); /* safari 6.0 - 9.0 */
filter: invert(1);
}
}