-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
60 lines (51 loc) · 914 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
51
52
53
54
55
56
57
58
59
60
* { box-sizing: border-box; }
html, body {
margin: 0;
padding: 0;
overflow: hidden;
}
#left-col, #center-col {
display: inline-block;
height: 100vh;
padding: 10px;
vertical-align: top;
}
#left-col {
font-family: sans-serif;
font-weight: bold;
font-size: 16px;
/*-webkit-text-stroke: 0.5px white;*/
width: 20vw;
color: black;
background: linear-gradient(to bottom, #b4e391 0%,#61c419 100%);
border-right: 1px outset #0a0;
}
#left-col h1 {
font-family: "Impact";
margin: 0;
text-align: center;
}
#left-col fieldset {
border-radius: 8px;
border-color: #0a0;
margin-top: 12px;
height: 20vh;
}
#left-col legend {
font-size: 20px;
}
#timeScale {
background: rgba(255, 255, 255, 0.5);
border-radius: 4px;
}
#center-col {
width: 80vw;
background-color: rgb(0, 190, 100);
overflow: auto;
text-align: center;
}
#board {
cursor: pointer;
border: 2px solid black;
border-radius: 3px;
}