-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcaptcha.css
More file actions
72 lines (72 loc) · 1.64 KB
/
captcha.css
File metadata and controls
72 lines (72 loc) · 1.64 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
/* by @kushalcodes (https://github.com/kushalcodes) */
/* https://www.neupanekushal.com.np */
@import url("https://fonts.googleapis.com/css2?family=Indie+Flower&display=swap");
.__captcha_main {
display: block;
width: inherit;
padding: 10px;
box-sizing: border-box;
text-align: center;
}
.__captcha_value {
font-size: 35px;
font-family: "Indie Flower", cursive;
margin-bottom: 5px;
-moz-user-select: none;
-webkit-user-select: none;
-ms-user-select: none;
user-select: none;
}
.__captcha_value > img {
height: 45px;
width: 45px;
}
.__captcha_input,
.__captcha_btn {
outline: none !important;
padding: 14px;
box-sizing: border-box;
border: 1px solid #ebebeb;
font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande",
"Lucida Sans", Arial, sans-serif;
line-height: 1.2em !important;
transition: all 0.1s;
-webkit-transition: all 0.1s;
-moz-transition: all 0.1s;
-ms-transition: all 0.1s;
-o-transition: all 0.1s;
}
.__captcha_input {
border-right: none;
border-left: none;
}
.__captcha_input.custom {
border-right: 1px solid #ebebeb;
}
.__captcha_btn {
cursor: pointer;
background-color: #ffffff;
}
.__captcha_btn:active {
background-color: #ebebeb;
}
.__captcha_btn.custom {
position: relative;
top: 17px;
left: -36px;
background-size: contain;
border: none;
background-repeat: no-repeat;
background-position: center;
}
.__captcha_btn.custom:active {
transform: scale(0.8);
background-color: unset;
-webkit-transform: scale(0.8);
-moz-transform: scale(0.8);
-ms-transform: scale(0.8);
-o-transform: scale(0.8);
}
.__border_color_default {
border-color: #ebebeb !important;
}