-
Notifications
You must be signed in to change notification settings - Fork 0
/
HTML-verf.css
132 lines (118 loc) · 2.28 KB
/
HTML-verf.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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
body {
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
background: black;
overflow-y: hidden;
}
.verfication-box {
position: relative;
width: 100%;
max-width: 325px;
border-radius: 1em;
background: #333;
padding: 1em 1.75em 1.75em;
box-shadow: 0 6px 10px rgba(0, 0, 0, 0.1);
}
h1 {
margin-bottom: 2.5em;
font-size: 2rem;
font-weight: 700;
text-align: center;
color: whitesmoke;
}
.input-field {
position: relative;
height: 3rem;
width: 100%;
margin-top: 10px;
background-color: rgba(0,0,0, 0.1);
}
.refresh_captcha {
position: absolute;
top: 50%;
right: 10px;
transform: translateY(-50%);
height: 2em;
width: 2em;
border: none;
border-radius: 0.5rem;
color: #333;
cursor: pointer;
}
.refresh_captcha:active {
transform: translateY(-50%) scale(0.97);
}
.input-field input {
height: 100%;
width: 100%;
outline: none;
border: none;
border-radius: 10px;
padding: 0;
border: 2px solid rgb(177, 0, 0);
}
.field-text input {
outline: none;
border: none;
border-radius: 8px;
margin: 0;
border: 2px solid rgb(255, 255, 255);
height: 2rem;
text-align: center;
font-size: 25px;
font-weight: 500;
width: 100%;
margin-top: 25px;
background-color: rgba(0,0,0, 0.1);
}
.box-input input {
color: white;
pointer-events: none;
text-align: center;
font-size: x-large;
font-weight: 700;
}
.box-input input:focus {
box-shadow: 0 4px 4px rgba(0, 0, 0, 0.1);
}
.user-message {
font-size: 18px;
text-align: center;
padding: 20px;
color:#5ee25e;
display: none;
}
.user-message.active {
display:block;
}
.input-fieldB button {
position: relative;
display: flex;
margin: 0 auto;
margin-top: 2.5%;
/* user-select: none; */
}
.input-fieldB button:active {
transform: scale(0.98);
}
.input-fieldB button.disabled {
opacity: 0.5;
pointer-events: none;
}
.after-captcha {
display: flex;
justify-content: left;
position: absolute;
bottom: 10%;
color: antiquewhite;
/* bottom: 15%; */
}
.tick-finish {
position: absolute;
padding: 6px;
bottom: 11.75%;
/* bottom: 16.7%; */
right: 22.5%;
}