-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
99 lines (81 loc) · 1.41 KB
/
Copy pathstyle.css
File metadata and controls
99 lines (81 loc) · 1.41 KB
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
99
html {
height: 100%;
}
body{
font-family: 'Titillium Web', sans-serif;
background: rgb(2,0,36);
background: linear-gradient(155deg, rgba(2,0,36,1) 0%, rgba(9,5,103,1) 53%, rgba(1,15,149,1) 98%);
}
.roulette-wrapper{
position:relative;
display:flex;
justify-content:center;
width:100%;
margin:0 auto;
overflow:hidden;
}
.roulette-wrapper .selector{
width:3px;
background:grey;
left:50%;
height:100%;
transform:translate(-50%,0%);
position:absolute;
z-index:2;
}
.previous-rolls {
display: flex;
flex-wrap: nowrap;
overflow-x: auto;
justify-content: flex-start;
align-items: center;
margin-top: 20px;
}
.previous-roll {
width: 20px;
height: 20px;
margin-right: 10px;
border-radius: 50%;
box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.3);
flex-shrink: 0;
display:inline-block
}
.roulette-wrapper .wheel{
display:flex;
}
.roulette-wrapper .wheel .row{
display:flex;
}
.roulette-wrapper .wheel .row .card{
height:75px;
width:75px;
margin:3px;
border-radius:8px;
border-bottom:3px solid rgba(0,0,0,0.2);
display:flex;
align-items:center;
justify-content:center;
color:white;
font-size:1.5em;
}
.card.red{
background:#da117b;
}
.card.black{
background:#7e75dd;
}
.card.green{
background:#C8FD01;
}
*{
box-sizing:border-box;
}
.text {
color: white
}
.outcome-seed-container{
color: white
}
.public-seed-container{
color: white
}