-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrecaptcha.css
More file actions
100 lines (99 loc) · 1.8 KB
/
recaptcha.css
File metadata and controls
100 lines (99 loc) · 1.8 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
@charset "utf-8";
.recaptcha_modal_background {
position: fixed;
left: 0;
top: 0;
width: 100%;
height: 100%;
background: #000;
opacity: .65;
z-index: 99999999;
}
.recaptcha_modal_window {
position: fixed;
left: 50%;
top: 50%;
width: 360px;
padding: 20px;
box-sizing: border-box;
background-color: #fff;
color: #222;
font-size: 14px;
transform: translate(-50%, -50%);
z-index: 999999999;
}
.recaptcha_modal_title{
margin-bottom: 20px;
}
.recaptcha_modal_title > h3,
.recaptcha_modal_title > p {
margin: 0;
}
.recaptcha_modal_title > h3 {
margin-bottom: 10px;
font-size: 18px;
}
.recaptcha_modal_title > p {
color: #666;
}
.recaptcha_modal_content {
text-align: center;
}
.recaptcha_modal_content > .g-recaptcha {
display: inline-block;
position: relative;
min-height: 68px;
}
.recaptcha_modal_content > .g-recaptcha:before {
position: absolute;
left: 50%;
top: 50%;
content: 'Loading...';
color: #000;
font-size: 14px;
line-height: 0;
transform: translateX(-50%);
z-index: -1;
}
.recaptcha_modal_close {
position: absolute;
right: 10px;
top: 10px;
width: 25px;
height: 25px;
padding: 0;
border: none;
background: none;
outline: none;
}
.recaptcha_modal_close:before,
.recaptcha_modal_close:after {
position: absolute;
left: 50%;
top: 2px;
content: ' ';
width: 2px;
height: 20px;
background-color: #888;
}
.recaptcha_modal_close:before {
transform: rotate(45deg);
}
.recaptcha_modal_close:after {
transform: rotate(-45deg);
}
/* Dark */
.recaptcha_dark .recaptcha_modal_window {
background-color: #333;
color: #fff;
}
.recaptcha_dark .recaptcha_modal_title > p {
color: #ccc;
}
.recaptcha_dark .recaptcha_modal_content > .g-recaptcha:before {
color: #fff;
}
.recaptcha_dark .recaptcha_modal_close:before,
.recaptcha_dark .recaptcha_modal_close:after {
background-color: #aaa;
}