-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathstyle.css
76 lines (66 loc) · 1.03 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
html,
body {
height: 100%;
width: 100%;
margin: 0;
padding: 0;
background-color: #fafafa;
font-family: "Lato", sans-serif;
}
#mount {
display: flex;
flex-direction: row;
height: 100%;
}
.dice-ui,
.sample-space {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
height: 100%;
width: 50%;
}
.dice-container {
display: flex;
flex-direction: row;
justify-content: space-around;
width: 300px;
}
button {
height: 35px;
width: 100px;
outline: none;
cursor: pointer;
}
#die-0,
#die-1 {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
font-size: 22px;
margin-top: 15px;
margin-bottom: 15px;
background-color: #fff;
border: 2px solid #444;
border-radius: 5px;
}
.event-list {
width: 300px;
}
.event-list ul {
list-style: none;
}
.event-list li {
cursor: pointer;
}
.event-list p {
align-self: start;
font-size: 18px;
font-weight: bold;
}
.event-list p span {
font-size: 10px;
font-weight: normal;
}