-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
82 lines (82 loc) · 1.31 KB
/
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
* {
box-sizing: border-box;
font-family: 'Roboto', sans-serif;
}
body {
margin: 0px;
height: 100vh;
width: 100vw;
overflow-y: hidden;
overflow-x: hidden;
}
.canvas {
border: 2px solid black;
width: 100%;
height: 100%;
}
.toolbar {
background-color: #101419;
display: flex;
gap: 4px;
flex-direction: column;
align-items: center;
justify-content: center;
padding: 4px;
}
.toolbar-upper {
display: flex;
align-items: center;
justify-content: center;
gap: 4px;
flex-shrink: 3;
}
.toolbar-lower {
display: flex;
gap: 8px;
align-items: center;
justify-content: center;
flex-shrink: 3;
}
.toolbar-lower i {
color: #D1D5DB;
}
.gamesheet {
display: none;
}
.nav-button {
color: #F87171;
background-color: #101419;
border: 0px;
width: 40px;
height: 40px;
}
.nav-button:hover {
background-color: #1F2937;
}
.slider {
display: flex;
align-items: center;
justify-content: center;
}
.dice-container {
background-color: #1F2937;
display: flex;
align-items: center;
justify-content: center;
gap: 8px;
height: 24px;
width: 100%;
}
.die {
flex-shrink: 0;
display: flex;
align-items: center;
justify-content: center;
color: #101419;
background-color: #D1D5DB;
border-radius: 4px;
width: 24px;
height: 24px;
font-weight: 900;
font-size: large;
}