-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
69 lines (61 loc) · 1.17 KB
/
styles.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
.deemix_dl_button {
margin: 4px !important;
margin-left: 0px;
color: var(--color-white);
background-color: #EF5466;
padding: 12px;
margin: 8px;
border: none;
border-radius: 16px;
}
.deemix_dl_container_pop_up {
z-index: 40;
width: 100vw;
height: 100vh;
position: fixed;
}
.deemix_dl_container_pop_up:target {
display: block;
}
.deemix_dl_hide_pop_up {
display: none !important;
}
.deemix_dl_pop_up {
text-align: center;
margin: 0 auto;
width: 45%;
height: 50%;
position: relative;
left: 50%;
transform: translateX(-95%);
top: 25%;
z-index: 41;
padding: 30px;
background-color: var(--color-white);
-webkit-box-shadow: 0 0 10px rgba(0,0,0,0.4);
-moz-box-shadow: 0 0 10px rgba(0,0,0,0.4);
box-shadow: 0 0 10px rgba(0,0,0,0.4);
}
.deemix_dl_pop_up_close_a {
position: absolute;
font-size: 150%;
color: #EF5466;
top: 0px;
right: 0px;
padding: 12px;
}
.deemix_dl_pop_up h1 {
color: #EF5466;
font-size: 250%;
padding: 8px;
}
.deemix_dl_pop_up h3 {
font-size: 175%;
padding: 8px;
}
.deemix_dl_pop_up_bottom_text {
position: absolute;
bottom: 0;
left: calc(25% - 12px);
padding: 12px;
}