-
Notifications
You must be signed in to change notification settings - Fork 43
Expand file tree
/
Copy pathstyles.css
More file actions
116 lines (100 loc) · 1.88 KB
/
styles.css
File metadata and controls
116 lines (100 loc) · 1.88 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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');
body {
background-color: #232331;
font-family: 'Roboto', sans-serif;
}
#captchaBackground {
height: 220px;
width: 250px;
background-color: #2d3748;
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
padding: 1rem;
gap: 1rem;
border-radius: 10px;
}
#captchaHeading {
color: white;
text-align: center;
margin: 1em;
}
#captcha {
height: 80%;
width: 80%;
font-size: 30px;
letter-spacing: 3px;
margin: auto;
display: block;
}
.center {
display: flex;
flex-direction: column;
align-items: center;
}
#submitButton {
background-color: #08e5ff;
border: 0px;
font-weight: bold;
padding: 0.5em 1em;
cursor: pointer;
border-radius: 5px;
}
#refreshButton {
background-color: #08e5ff;
border: 0px;
font-weight: bold;
padding: 0.5em 1em;
cursor: pointer;
border-radius: 5px;
margin-left: 0.5em;
}
#textBox {
height: 25px;
width: 80%;
padding: 0.3em;
border-radius: 5px;
border: 1px solid #ccc;
}
.incorrectCaptcha {
color: #FF0000;
font-weight: bold;
margin-top: 0.5em;
}
.correctCaptcha {
color: #7FFF00;
font-weight: bold;
margin-top: 0.5em;
}
#buttons {
display: flex;
gap: 0.5em;
margin-top: 1em;
}
/* 📱 Responsive Design for Mobile */
@media screen and (max-width: 480px) {
#captchaBackground {
width: 90%;
height: auto;
padding: 1rem;
}
#captcha {
width: 100%;
height: 60px;
}
#textBox {
width: 90%;
margin: 1em 0;
}
#submitButton,
#refreshButton {
width: 90%;
padding: 0.5em;
margin-bottom: 1em;
}
#buttons {
flex-direction: column;
align-items: center;
}
}