-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
143 lines (127 loc) · 2.73 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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
:root {
--color0: #002b36;
--color1: #93a1a1;
--color2: #859900;
--color3: #586e75;
--bg-gif: url("Themes/solarized-dark/line.gif");
--bg-img: url("Themes/solarized-dark/bg.jpg");
}
@font-face {
font-family: 'IBM VGA';
src: url('./Fonts/WebPlus_IBM_VGA_9x16.woff');
font-weight: normal;
font-style: normal;
}
body {
background-image: var(--bg-gif), var(--bg-img);
background-attachment: fixed;
background-repeat: repeat;
background-position: right bottom;
background-color: var(--color0);
color: var(--color1);
font-family: 'IBM VGA';
font-size: 32px;
}
::selection {
background-color: var(--color1);
color: var(--color0);
}
.top_image img {
border: 1px solid;
border-color: var(--color3);
}
/*
.button_menu {
border: 1px solid;
border-color: var(--color2);
}
.button_menu input {
border: 1px solid;
border-color: var(--color2);
}
*/
/*Channel selector*/
/*the container must be positioned relative:*/
.custom-select {
position: relative;
font-family: 'IBM VGA';
font-size: 32px;
}
.custom-select select {
display: none; /*hide original SELECT element:*/
}
.select-selected {
color: var(--color0);
background-color: var(--color1);
}
/*style the arrow inside the select element:*/
.select-selected:after {
position: absolute;
content: "";
top: 14px;
right: 10px;
width: 0;
height: 0;
border: 6px solid transparent;
border-color: var(--color0) transparent transparent transparent;
}
/*point the arrow upwards when the select box is open (active):*/
.select-selected.select-arrow-active:after {
border-color: transparent transparent var(--color0) transparent;
top: 7px;
}
/*style the items (options), including the selected item:*/
.select-items div,.select-selected {
color: var(--color0);
padding: 8px 16px;
border: 1px solid transparent;
border-color: transparent transparent rgba(0, 0, 0, 0.1) transparent;
cursor: pointer;
user-select: none;
}
/*style items (options):*/
.select-items {
position: absolute;
background-color: var(--color3);
top: 100%;
left: 0;
right: 0;
z-index: 99;
}
/*hide the items when the select box is closed:*/
.select-hide {
display: none;
}
.select-items div:hover, .same-as-selected {
background-color: rgba(0, 0, 0, 0.1);
}
/*flex-box stuff here*/
.row {
text-align: center;
align-items: center;
display: flex;
flex-wrap: wrap;
width: 50%;
margin: auto;
justify-content: space-around;
font-size: 32px;
}
.main {
font-family: 'IBM VGA';
font-size: 32px;
flex: 100%;
background-color: var(--color0);
color: var(--color1);
border: 1px solid var(--color2);
padding: 12px;
height: 100%;
}
a {
color: var(--color2);
font-family: 'IBM VGA';
font-size: 32px;
}
p {
font-family: 'IBM VGA';
font-size: 32px;
}