-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
117 lines (98 loc) · 1.89 KB
/
style.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
111
112
113
114
115
116
117
:root {
--main: #BEB7AB;
--bg: #282827;
--link: #7C997A;
--search-z-index: 10;
}
/* * {
font-family: "DejaVu Sans Mono","Proxima Nova","Helvetica",monospace;
font-size: 1em;
} */
::-moz-selection {
color: var(--bg);
background: var(--main);
}
#win-list {
color: var(--main);
}
button {
background-color: var(--bg);
border-color: var(--main);
color: var(--main);
border-style: solid;
text-align: center;
font-family: "DejaVu Sans Mono","Proxima Nova","Helvetica",monospace;
font-size: 1em;
}
.box {
width: 100%;
}
.win-title {
font: bold;
font-family: "1785 GLC Baskerville", "Book Antiqua", serif;
font-size: 4em;
}
.tab-list {
margin-left: 200px;
}
.tab-entry {
font-family: "DejaVu Sans Mono","Proxima Nova","Helvetica",monospace;
font-size: 1em;
}
.search-container {
display: block flex;
width: 100%;
justify-content: center;
position: fixed;
z-index: var(--search-z-index);
}
a {
color: var(--main);
}
a:hover {
color: var(--link);
}
body {
background-color: var(--bg);
/* overflow: visible; */
}
input {
-webkit-appearance: none;
appearance: none;
}
input[type="checkbox"] {
position: relative;
width: 1em;
height: 1em;
border: 1px solid var(--main);
vertical-align: -4px;
color: var(--main);
}
input[type="checkbox"]::before {
content: "✔";
position: absolute;
font-size: 1.2em;
right: -1px;
top: -0.4em;
visibility: hidden;
}
input[type="checkbox"]:checked::before {
visibility: visible;
}
input[type="search"] {
font-family: "DejaVu Sans Mono","Proxima Nova","Helvetica",monospace;
font-size: 1em;
text-align: center;
/* align-items: center; */
/* margin: 0 auto; */
/* position: fixed; */
background-color: var(--bg);
border-style: solid;
border-color: var(--main);
color: var(--main);
z-index: var(--search-z-index)+1;
}
input[type="search"]:focus {
outline-style: none;
font-size: 4em;
}