-
Notifications
You must be signed in to change notification settings - Fork 0
/
fCaptcha.css
116 lines (72 loc) · 1.54 KB
/
fCaptcha.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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
.fCaptcha {
margin: 15px;
color: #000000;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.fCaptcha.title {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.fCaptcha.canvas {
position: relative;
border-radius: 15px;
border-width: 2px;
border-color: #000000;
border-style: dashed;
}
.fCaptcha.input {
padding: 15px;
border-style: none;
border-bottom-style: solid;
border-bottom-color: #000000;
outline: none;
}
.fCaptcha.btn {
padding: 15px;
background-color: #3cf21f;
background: #3cf21f;
color: #000000;
border-radius: 15px;
border: none;
}
.fCaptcha.btn:hover {
padding: 15px;
background-color: #30c719;
background: #30c719;
color: #000000;
border-radius: 15px;
border: none;
}
.fCaptcha.btn:active {
padding: 15px;
background-color: #28a515;
color: #ffffff;
background: #28a515;
border-radius: 15px;
border: none;
}
.fCaptcha.span {
color: #1d1dff;
text-decoration: underline;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
cursor: pointer;
user-select: none;
}
.fCaptcha.span:active {
color: #1d1dff;
text-decoration: none;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
cursor: pointer;
user-select: none;
}
.fCaptcha.left {
text-align: left;
}
.fCaptcha.right {
text-align: right;
}
.fCaptcha.center {
text-align: center;
}
.fCaptcha.justify {
text-align: justify;
}