forked from jpitassi/age_gate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
age_gate.css
71 lines (62 loc) · 1.09 KB
/
age_gate.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
#age_gate_verification_popup {
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
background-color: #eee;
border: 2px solid #999;
border-radius: 5px;
display: none;
left: 0px;
position: fixed;
top: 0px;
width: 500px;
z-index: 9999;
}
#age_gate_header {
background-color: #555;
border-bottom: 2px solid #999;
color: #fff;
display: block;
font-size: 125%;
padding: 5px;
text-align: center;
}
#age_gate_message {
display: block;
padding: 15px;
text-align: justify;
}
#age_gate_overlay {
background-color: #000;
display: none;
filter: alpha(opacity=90);
min-height: 100%;
min-width: 100%;
opacity: 0.90;
position: fixed;
top: 0px;
left: 0px;
z-index: 9998;
zoom: 1;
}
#age_gate_widget {
padding: 20px;
margin: 20px 0px;
}
#age_gate_widget .boolean li {
display: inline-block;
float: left;
}
#age_gate_widget .dateselect {
margin: auto;
text-align: center;
}
#age_gate_widget .dateselect select {
display: block;
}
#age_gate_widget .dateselect label {
display: inline-block;
margin: 0px 10px 0px 10px;
}
.clear {
clear: both;
}