-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcaptcha.css
More file actions
96 lines (84 loc) · 1.91 KB
/
captcha.css
File metadata and controls
96 lines (84 loc) · 1.91 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
#overload{
margin: 15px;
display: flex;
flex-direction: row;
}
#overload .captchaForm{
display: flex;
flex-direction: column;
align-items: center;
padding: 10px;
border: 1px solid #d20c0f;
background: #fff3e3;
border-radius: 5px;
}
#overload .captchaForm{
display: flex;
flex-direction: column;
align-items: center;
}
#overload .captchaForm .captchaTop{
display: flex;
flex-flow: row nowrap;
width: 100%;
justify-content: space-between;
}
#overload .captchaForm .captchaCanvas{
margin-right: 10px;
}
#overload .captchaForm .captchaReload{
display: flex;
flex-flow: row nowrap;
justify-content: center;
align-items: center;
width: 40px;
height: 40px;
margin: 5px;
background: #d20c0f;
border-radius: 50%;
color: white;
font-size: 30px;
line-height: 30px;
box-sizing: border-box;
user-select: none;
}
#overload .captchaForm .captchaReload:hover, #overload .captchaForm .captchaConfirmBtn:hover{
cursor: pointer;
box-shadow: 2px 2px 5px -2px rgba(0,0,0,0.75);
}
#overload .captchaForm .captchaLog{
display: none;
box-sizing: border-box;
width: 100%;
margin-top: 10px;
padding: 2px 5px;
}
#overload .captchaForm .captchaLog.captchaWarning{
background-color: #FFBABA;
color: #D8000C;
}
#overload .captchaForm .captchaLog.captchaSuccess{
background-color: #bcffba;
color: #00a918;
}
#overload .captchaForm .captchaControls{
width: 100%;
margin-top: 10px;
display: flex;
flex-flow: column nowrap;
}
#overload .captchaForm .txtInput{
height: 26px;
padding: 5px;
border: 1px solid #e5e5e5;
box-shadow: inset 1px 1px 6px -3px rgba(0, 0, 0, 0.75);
border-radius: 5px
}
#overload .captchaForm .captchaConfirmBtn{
margin-top: 10px;
padding: 5px 10px;
background: #d20c0f;
border-radius: 5px;
color: white;
user-select: none;
}