-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyles.css
98 lines (83 loc) · 1.4 KB
/
styles.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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
body {
background: #eeeeee;
font-family: 'Helvetica neue', Helvetica, sans-serif;
font-size: 4vw;
font-variant: small-caps;
}
.menu {
height: 100vh;
width: 100vh;
position: fixed;
margin: 10%;
background: #eeeeee;
z-index: 2;
font-size: 4vw;
visibility: visible;
}
select,
optgroup,
button {
font-size: 4vw;
font-variant: small-caps;
border-radius: .2em;
display: ;
}
.container {
display: flex;
flex-direction: column;
}
.clocks {
margin: 10%;
height: auto;
display: flex;
flex-direction: row;
justify-content: space-around;
}
.player {
font-size: 14vw;
padding: .2em;
border-radius: .2em;
}
.byo-yomi {
font-variant: small-caps;
font-size: 4vw;
}
.white {
background: #eeeeee;
color: #222222;
border: #222222;
}
.black {
background: #222222;
color: #eeeeee;
}
.divider {
height: auto;
min-width: 1em;
}
.current {
padding: .2em;
border-style: solid;
border-width: .1em;
border-radius: .2em;
border-color: #DE704F;
}
.clocks-menu {
display: flex;
flex-flow: row;
justify-content: right;
align-content: bottom;
padding: 1em;
}
.clock-button {
margin-left: 1em;
margin-right: 1em;
}
.start-button {
color: black;
background-size: contain;
background-color: #darkblue;
}
.start-button:hover {
text-decoration-style: double;
}