-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
50 lines (43 loc) · 797 Bytes
/
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
body {
background-color: black;
}
#page-content {
margin: auto;
width: 100%;
min-width: 800px;
border: 1px solid black;
background: linear-gradient(rgb(255, 50, 100), rgb(0, 50, 100));
color: white;
font-family: monospace;
}
#canvasDiv {
margin: auto;
width: 800px;
height: 600px;
border: 10px solid white;
margin-bottom: 20px;
}
h1, p {
text-align: center;
text-shadow: 2px 2px 2px black;
font-style: italic;
}
a, a:visited {
color: white;
text-decoration: none;
font-weight: bold;
font-style: normal;
}
table {
margin: auto;
width: 800px;
}
td:first-child {
width: 125px;
text-align: right;
text-shadow: 2px 2px 2px black;
font-style: italic;
}
input[type=range] {
width: 100%;
}