summaryrefslogtreecommitdiff
path: root/src/static/main.css
blob: 7ed054338f0095a6cd1e922f2d6c83b9a74a9b6e (plain)
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
body {
	color: white;
	background: black;
	image-rendering: pixelated;
	zoom: 2; 
}

#root-container {
  margin: auto;
	text-align: center;
	width: min-content;
}

.content {
	margin-top: 0.1em;
}

#top {
	font-size: 1vh;
	color: grey;
}

#program {
	font-size: 1.3vh;
}



#news {
	font-size: 1.36em;
	text-align: left;
}

.grey {
	color: grey !important;
}

img {
	width: 40vh;
}

input {
	width: 80%;
	height: 200%;
	font-size: 1em;
}

#news_input_label {
	font-size: 0.7em;
}

input[type=submit] {
	width: fit-content;
}


progress {
    -webkit-appearance: none;
		background: #000;
		border: none;
    width: 93%;
}

progress::-webkit-progress-value { background: #006688; }

progress::-moz-progress-bar { background: #006688; }

#progress-bar span {
    position: absolute;
    display: inline-block;
    color: #fff;
    text-align: right;
}

#progress-bar {
    display: block;
    position: relative;
    width: 100%;
		left: -1.25vh;
}