-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
68 lines (58 loc) · 1.06 KB
/
style.css
File metadata and controls
68 lines (58 loc) · 1.06 KB
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
body {
background-color: #313639;
color: #DADCE0;
font-family: 'Lato', sans-serif;
margin-left: 25vw;
margin-right: 25vw;
margin-top: 0;
}
.banner {
margin-left: -25vw;
margin-right: -25vw;
text-align: center;
padding-top: 2em;
padding-bottom: 2em;
}
p {
text-align: left;
line-height: 1.5;
}
p ~ p {
padding-top: 1.5em;
}
p:nth-child(2) {
border-top: 2px solid red;
}
input {
width: 70px;
font-family: 'Lato', sans-serif;
font-size: 16px;
background-color: #1f1f1f;
border: 2px solid black;
color: lemonchiffon;
}
.display {
color: lemonchiffon;
}
th, td {
padding: 8px;
/*border: 1px solid black;*/
}
/* source: https://stackoverflow.com/a/7782251 */
canvas {
padding-left: 0;
padding-right: 0;
margin-left: 0;
margin-right: 0;
display: block;
background-color: lightgray;
border:4px solid gray;
}
.footer a {
padding-top: 8em;
padding-bottom: 2em;
text-decoration: none;
width: 100%;
color: lemonchiffon;
text-align: center;
}