-
Notifications
You must be signed in to change notification settings - Fork 19
/
master.css
84 lines (81 loc) · 1.1 KB
/
master.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
body{
margin: 0px;
background: #222;
color: #ccc;
}
h2{
margin-top: -0px;
font-size: 40px;
font-family: 'Permanent Marker', cursive;
background-color: #161616;
color: #eef;
padding: 5px;
text-align: center;
transition: 0.25s;
}
#processing_canvas{
filter: grayscale();
}
#output,#credit,#processing,#settings{
float: left;
background: #222
}
#output{
width: 200px;
}
#output h2:hover{
color: rgb(250, 105, 59);
transition: 0.25s;
}
#credit
{
width: calc( 50% - 200px);
}
#credit h2:hover{
color: rgb(126, 250, 59);
transition: 0.25s;
}
#settings{
width: 50%;
}
#settings h2:hover{
color: rgb(59, 135, 250);
transition: 0.25s;
}
#processing{
width: 100%;
}
#processing h2:hover{
color: rgb(250, 231, 59);
transition: 0.25s;
}
canvas {
width: 33%;
}
.overview {
height: 300px;
overflow: scroll;
}
#settingsTable{
margin-left: 30px;
}
.programmer{
text-decoration: underline;
text-shadow: 1px 1px
}
.tester{
text-decoration: underline;
}
.date{
}
a{
color: rgb(59, 135, 250);
}
.progressStuff{
text-align: center;
display: block;
}
#progressBar{
min-width: 160px;
width: 33%;
}