-
Notifications
You must be signed in to change notification settings - Fork 2
/
popup.css
81 lines (72 loc) · 1.42 KB
/
popup.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
77
78
79
80
81
:root {
--blue: rgba(52, 81, 166);
--darkblue: rgba(27, 42, 88);
}
#overlay {
position: absolute;
top: 0;
bottom: 0;
background: var(--darkblue);
width: 100%;
height: 100%;
opacity: 0.3;
z-index: 100;
}
#popup {
background: var(--darkblue);
width: 800px;
z-index: 200;
display: flex;
flex-direction: row;
justify-content: center;
}
#popupouter {
position: absolute;
top: 0;
left:0;
width: 100%;
height: 100%;
z-index: 400;
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
}
.popupcontent {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
width: 100%;
height: 100%;
margin: 10px 10px;
}
.popupcontrols {
/*makeitarectanglethatsitsatthebotomofthedivitsin*/width: 30%;
z-index: 300;
text-align: center;
background-color: #078148;
border-top: 3em;
padding: 10px 10px 10px 10px;
margin-top: 20px;
margin-bottom: 20px;
border-radius: .1em;
cursor: pointer;
}
.popupcontrols:hover {
background-color: #0a9e5a;
border-radius: 0em;
}
@media screen and (max-width: 800px) {
#popup {
width: 90%;
/* margin-left: -50%; */
/* margin-top: -50%; */
padding: 10px;
border: 10px;
/* left: 55%; */
}
.popupcontrols {
width: 100%;
}
}