-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
65 lines (64 loc) · 1.19 KB
/
Copy pathstyle.css
File metadata and controls
65 lines (64 loc) · 1.19 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
body {
overflow: hidden;
}
#modal_numero_chance {
position: absolute;
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
width: 35%;
display: inline-flex;
flex-direction: column;
align-items: center;
padding: 1.6rem 3rem;
border: 3px solid black;
border-radius: 5px;
background: white;
box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.2);
}
#numc-msg {
font-size: 1.1rem;
margin-bottom: 1.6rem;
color: tomato;
width: 100%;
}
#modal_back {
position: absolute;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.9);
}
#nav {
margin: 1em 0;
}
#nav #items {
height: 100px;
width: 250px;
}
#nav #items {
overflow: hidden;
overflow-y: scroll;
margin: 1em 0;
}
#modal_numero_chance.btn {
color: inherit;
font-family: inherit;
font-size: inherit;
background: white;
padding: 0.3rem 3.4rem;
border: 3px solid black;
margin-right: 2.6rem;
box-shadow: 0 0 0 black;
transition: all 0.2s;
}
#modal_numero_chance.btn:last-child {
margin: 0;
}
#modal_numero_chance.btn:hover {
box-shadow: 0.4rem 0.4rem 0 black;
transform: translate(-0.4rem, -0.4rem);
}
#modal_numero_chance.btn:active {
box-shadow: 0 0 0 black;
transform: translate(0, 0);
}