-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
171 lines (144 loc) · 3.11 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
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
@font-face {
font-family: "consoleFont";
src: url("assets/clacon2.ttf");
}
body {
font-family: "consoleFont";
/* background image takes a little while (0.2s?) to load, so show a similiar color while it does */
/* background: #1d1d1d url("assets/bg.png"); */
background: #0f0f0f;
}
h2 {
margin-top: 0.2em;
margin-left: 0.2em;
margin-bottom: 0;
}
p {
margin-top: 0.2em;
margin-left: 0.2em;
margin-bottom: 0;
padding: 0.1em;
}
img {
image-rendering: pixelated;
}
a {
text-decoration: none;
}
#container {
height: 90%;
max-width: 650px;
margin: 0 auto;
box-shadow: 0px 0px 40px black;
}
#header {
background-color: rgba(0, 0, 0, 0.5);
}
#nav {
margin: 0;
padding: 0;
background-color: rgb(0, 0, 0);
}
#nav li {
list-style: none;
float: left;
padding: 0 15px 0 0;
}
#nav li a:link, #nav li a:visited {
color: orange;
text-decoration: none;
}
#body {
background-color: rgb(255, 255, 255);
min-height: 85vh;
}
.main {
height: 100%;
width: 100%;
float: left;
min-height: 85vh;
}
.subtitle {
background-color: rgb(136, 136, 136);
text-align: center;
margin: 0;
margin-bottom: 0.5em;
}
.cardlist {
display: block;
text-align: center;
font-size: 0;
line-height: 0;
}
.cardlistDiv {
display: inline-block;
width: 160px;
height: 200px;
margin: 0px 8px 6px;
text-overflow: ellipsis;
overflow: hidden;
text-align: left;
font-size: 16px;
line-height: 16px;
vertical-align: top;
font-weight: bold;
}
.cardlistText {
font-size: 14px;
line-height: 0.8em;
font-weight: normal;
color: #252525;
}
#footer {
margin: 0;
background-color: orange;
}
.clearfix:after {
content: ".";
display: block;
height: 0;
clear: both;
visibility: hidden;
}
#canvas {
padding: 0;
margin: auto;
display: block;
image-rendering: pixelated;
background-color: rgb(255, 255, 255);
border: 4px solid black;
}
.slidecontainer {
width: 85%;
margin: 0 auto;
margin-top: 10px;
}
/* The slider itself */
.slider {
-webkit-appearance: none; /* Override default CSS styles */
appearance: none;
width: 100%; /* Full-width */
height: 20px; /* Specified height */
background: #4d4d4d; /* Grey background */
outline: none; /* Remove outline */
}
/* The slider handle (use -webkit- (Chrome, Opera, Safari, Edge) and -moz- (Firefox) to override default look) */
.slider::-webkit-slider-thumb {
-webkit-appearance: none; /* Override default look */
appearance: none;
width: 25px; /* Set a specific slider handle width */
height: 25px; /* Slider handle height */
background: orange;
cursor: pointer; /* Cursor on hover */
}
.slider::-moz-range-thumb {
width: 25px; /* Set a specific slider handle width */
height: 25px; /* Slider handle height */
background: orange;
cursor: pointer; /* Cursor on hover */
}
.clearfix {display: inline-block;}
/* Hides from IE-mac \*/
* html .clearfix {height: 1%;}
.clearfix {display: block;}
/* End hide from IE-mac */