-
Notifications
You must be signed in to change notification settings - Fork 0
/
extStyle.css
68 lines (57 loc) · 1.07 KB
/
extStyle.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
.feature-container{
width: 20px;
height: 21px;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
-webkit-appearance: none;
/* margin: 0; */
}
.random-pick-button{
margin-bottom: 10px;
width: 20px;
cursor: pointer
}
.feature-menu{
position: absolute;
width: 300px;
background: white;
z-index: 100;
top: 25px;
right: -150px;
border-radius: 10px;
border: 0.5px solid rgba(0, 0, 0, 0.4);
display: flex;
padding: 15px;
justify-content: center;
flex-direction: column;
align-items: center;
}
.invis{
display: none;
}
.control-button-container{
display: flex;
flex-direction: row;
gap: 2rem;
margin-top: 5px;
}
.feature{
display: flex;
justify-content: space-between;
gap: 1rem;
}
.rating-input{
text-align: center;
width: 50px;
}
.loading-overlay{
background: rgba(128, 128, 128, 0.466);
display: flex;
position: absolute;
align-items: center;
justify-content: center;
width: 100%;
height: 100%;
pointer-events: none;
}