-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
116 lines (94 loc) · 1.82 KB
/
style.css
File metadata and controls
116 lines (94 loc) · 1.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
:root {
--bg-color-dark: #222529;
--font-color-dark: #D6D6D6;
--bg-color-light: #EEEEEE;
--font-color-light: #41474E;
}
.light-mode {
background-color: var(--bg-color-light);
color: var(--font-color-light);
}
body {
background-color: var(--bg-color-dark);
color: var(--font-color-dark);
font-family: Verdana, Geneva, Tahoma, sans-serif;
margin: 0;
padding: 0;
text-align: center;
}
nav {
position: fixed;
top: 15px;
right: 0;
font-size: 15px;
width: auto;
padding: 10px;
box-sizing: border-box;
cursor: default;
white-space: nowrap;
overflow: hidden;
z-index: 1000;
}
@media (max-width: 768px) {
nav {
font-size: 12px;
padding: 8px;
}
}
a:link, a:visited {
color: var(--font-color-dark);
text-decoration: none;
padding: 5px 10px;
cursor: default;
}
.light-mode a:link, .light-mode a:visited {
color: var(--font-color-light); /* font color for light mode */
}
a:hover {
background-color: var(--font-color-dark);
color: var(--bg-color-dark);
border-radius: 2px;
cursor: default;
}
.LinkContainer {
text-align: left;
margin: 20px auto;
width: 50%;
}
pre.LandingHeader {
text-align: center;
margin-top: 150px;
}
hr.SeparatorLine {
height: 2px;
border-width: 0;
width: 50%;
color: var(--font-color-dark);
background-color: var(--font-color-dark);
margin: 20px auto;
}
h1.LandingHeader {
text-align: left;
width: 50%;
margin: 20px auto;
}
p.LandingText {
text-align: left;
width: 50%;
margin: 20px auto;
}
div.quote {
text-align: center;
width: 50%;
margin: 20px auto;
padding: 20px;
cursor: default;
}
div.author {
text-align: center;
}
p.SiteEnding {
text-align: center;
width: 50%;
margin: 20px auto;
}