-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
64 lines (54 loc) · 876 Bytes
/
index.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
:root {
--bg: #233445;
--fg: #abbccd;
--kl: rgba(255, 255, 255, 0.1);
}
html,
body {
background: var(--bg);
color: var(--fg);
height: 100%;
display: grid;
font-family: monospace;
}
#app {
margin: auto;
}
.root {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.buttons {
display: flex;
}
.row {
display: flex;
}
.Counter__Buttons {
display: flex;
}
.Counter__Button {
color: var(--fg);
background: transparent;
border: 2px solid currentColor;
border-radius: 3px;
font-size: 13px;
line-height: 32px;
font-weight: bold;
cursor: pointer;
padding: 0 21px;
font-family: inherit;
}
.Counter__Button + .Counter__Button {
margin-left: 8px;
}
.Counter {
margin-right: 13px;
}
.Counter + .Counter {
margin-left: 13px;
border-left: 1px dashed var(--kl);
padding-left: 13px;
}