-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
275 lines (244 loc) · 8.67 KB
/
style.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
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
/* Hamburger Menu Icon */
.hamburger-menu {
cursor: pointer;
position: absolute;
top: 10px; /* Adjust as needed */
right: 10px; /* Adjust as needed */
display: flex;
flex-direction: column;
justify-content: space-around;
width: 70px;
height: 50px;
}
.hamburger-menu .bar {
height: 7px;
width: 100%;
background-color: black;
border-radius: 10px;
}
/* Slide-in Menu Container */
.menu-container {
position: fixed;
top: 0;
right: -250px; /* Start offscreen */
width: 250px; /* Width of the menu */
height: 100%;
background: white;
box-shadow: -2px 0 5px rgba(0, 0, 0, 0.5);
transition: right 0.3s;
padding: 20px;
box-sizing: border-box;
}
body {
font-family: sans-serif;
display: flex;
align-items: center;
justify-content: center;
min-height: 100vh;
background-color: #f0f0f0;
background-image: url("background");
background-repeat: no-repeat;
background-size: cover;
}
.login-container {
background-color: white;
padding: 30px 80px;
border-radius: 50px;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
text-align: center;
}
input[type="text"], input[type="password"] {
width: 100%;
padding: 12px;
margin: 8px 0;
border: 1px solid #ccc;
border-radius: 4px;
}
button {
background-color: lightgray;
color: black;
padding: 12px 20px;
border: none;
border-radius: 50px;
cursor: pointer;
font-weight: 700;
margin-top: 10px; /* Adjust as needed */
}
html, body, #securityTitle {
margin: 0;
padding: 0;
}
#securityTitle {
position:absolute;
top: 5%;
left: 0;
width: 100%;
background: none; /* or any background color you want */
text-align: center; /* if you want to center the text */
}
#loginB {
background-color: rgb(131, 88, 87); /* Updated color */
color: white; /* Changed to white for better contrast */
padding: 12px 20px;
border: none;
border-radius: 50px;
cursor: pointer;
font-weight: 700;
margin-top: 10px;
font-size: 16px; /* Adjust the font size as necessary */
text-align: center;
box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2); /* Optional: adds a shadow for depth */
transition: all 0.3s; /* Smooth transition for hover effects */
/* Additional styles if needed */
}
button:hover {
background-color: #45a049;
}
.actions-container {
display: flex;
justify-content: space-between;
margin-top: 20px;
}
.actions-container p {
margin: 0; /* Removes default margin */
display: inline-flex;
align-items: center;
}
button[type="button"] {
margin-left: 5px; /* Space between text and button */
padding: 6px 12px; /* Smaller padding for a more compact look */
font-size: 14px; /* Adjusted font size for button */
}
#loginBb {
display: block; /* Block display to fill the container */
width: 150px; /* Adjust width as needed */
height: 100px; /* Adjust height as needed */
background-color: #f2f2f2; /* Light grey background, change as needed */
color: black; /* Text color */
border: none; /* No border */
border-radius: 30px; /* Rounded corners */
margin: auto; /* Center the button horizontally */
padding: 0; /* No padding */
overflow: hidden; /* Prevents content from spilling outside the border-radius */
position: relative; /* Allows absolute positioning inside the button */
cursor: pointer; /* Pointer cursor on hover */
box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2); /* Optional: adds a shadow for depth */
transition: all 0.3s; /* Smooth transition for hover effects */
}
#loginBb:hover {
box-shadow: 0px 6px 12px rgba(0, 0, 0,0.5); /* Optional: changes the shadow on hover */
transform: translateY(-2px); /* Optional: slight lift effect on hover */
}
#loginB:hover {
box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.7); /* Optional: changes the shadow on hover */
transform: translateY(-5px); /* Optional: slight lift effect on hover */
}
#loginBb:active {
transform: translateY(1px); /* Optional: presses down effect on click */
box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2); /* Optional: less shadow on click */
}
#loginBb h1 {
margin: 0; /* Remove default margin */
position: absolute; /* Absolute position within the button */
top: 50%; /* Align top at 50% of button height */
left: 50%; /* Align left at 50% of button width */
transform: translate(-50%, -50%); /* Center the title */
font-size: 24px; /* Adjust font size as needed */
font-weight: normal; /* Adjust font weight as needed */
color: inherit; /* Inherit text color from the button */
}
#loginBb {
display: block; /* Block display to fill the container */
width: 150px; /* Adjust width as needed */
height: 100px; /* Adjust height as needed */
background-color: #f2f2f2; /* Light grey background, change as needed */
color: black; /* Text color */
border: none; /* No border */
border-radius: 30px; /* Rounded corners */
margin: auto; /* Center the button horizontally */
padding: 0; /* No padding */
overflow: hidden; /* Prevents content from spilling outside the border-radius */
position: relative; /* Allows absolute positioning inside the button */
cursor: pointer; /* Pointer cursor on hover */
box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2); /* Optional: adds a shadow for depth */
transition: all 0.3s; /* Smooth transition for hover effects */
}
#loginBb:hover {
box-shadow: 0px 6px 12px rgba(0, 0, 0,0.5); /* Optional: changes the shadow on hover */
transform: translateY(-2px); /* Optional: slight lift effect on hover */
}
#loginB:hover {
box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.7); /* Optional: changes the shadow on hover */
transform: translateY(-5px); /* Optional: slight lift effect on hover */
}
#loginBb:active {
transform: translateY(1px); /* Optional: presses down effect on click */
box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2); /* Optional: less shadow on click */
}
#loginBb h1 {
margin: 0; /* Remove default margin */
position: absolute; /* Absolute position within the button */
top: 50%; /* Align top at 50% of button height */
left: 50%; /* Align left at 50% of button width */
transform: translate(-50%, -50%); /* Center the title */
font-size: 24px; /* Adjust font size as needed */
font-weight: normal; /* Adjust font weight as needed */
color: inherit; /* Inherit text color from the button */
}
#loginBb {
display: block; /* Block display to fill the container */
width: 150px; /* Adjust width as needed */
height: 100px; /* Adjust height as needed */
background-color: #f2f2f2; /* Light grey background, change as needed */
color: black; /* Text color */
border: none; /* No border */
border-radius: 30px; /* Rounded corners */
margin: auto; /* Center the button horizontally */
padding: 0; /* No padding */
overflow: hidden; /* Prevents content from spilling outside the border-radius */
position: relative; /* Allows absolute positioning inside the button */
cursor: pointer; /* Pointer cursor on hover */
box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2); /* Optional: adds a shadow for depth */
transition: all 0.3s; /* Smooth transition for hover effects */
}
#loginBb:hover {
box-shadow: 0px 6px 12px rgba(0, 0, 0,0.5); /* Optional: changes the shadow on hover */
transform: translateY(-2px); /* Optional: slight lift effect on hover */
}
#loginB:hover {
box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.7); /* Optional: changes the shadow on hover */
transform: translateY(-5px); /* Optional: slight lift effect on hover */
}
#loginBb:active {
transform: translateY(1px); /* Optional: presses down effect on click */
box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2); /* Optional: less shadow on click */
}
#loginBb h1 {
margin: 0; /* Remove default margin */
position: absolute; /* Absolute position within the button */
top: 50%; /* Align top at 50% of button height */
left: 50%; /* Align left at 50% of button width */
transform: translate(-50%, -50%); /* Center the title */
font-size: 24px; /* Adjust font size as needed */
font-weight: normal; /* Adjust font weight as needed */
color: inherit; /* Inherit text color from the button */
}
.accountInfo {
font-family: sans-serif;
display: flex;
align-items: center;
justify-content: center;
min-height: 100vh;
background-color: #f0f0f0;
background-image: url("background");
background-repeat: no-repeat;
background-size: cover;
}
#gauge {
width: 250px; /* Adjust based on your preference */
height: 250px;
margin: 20px auto; /* Center the gauge */
}
#scoreInputContainer {
margin-top: 20px;
}