This repository was archived by the owner on Aug 23, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
103 lines (100 loc) · 2.27 KB
/
index.css
File metadata and controls
103 lines (100 loc) · 2.27 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
body {
font-family: Arial, sans-serif;
display: flex;
flex-direction: row;
flex-wrap: wrap;
justify-content: center;
align-items: flex-end;
height: 100dvh;
background-color: var(--background-color);
color: var(--text-color);
margin: 0;
transition: background-color 0.5s, color 0.5s;
}
.login-container {
background-color: #fff;
padding: 20px;
margin: 30px;
border-radius: 10px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
width: 300px;
text-align: center;
}
.login-container h2 {
margin-bottom: 20px;
color: #333;
}
.login-container form {
display: flex;
flex-direction: column;
}
.login-container label {
margin-bottom: 5px;
text-align: left;
color: #555;
}
.login-container input[type="text"],
.login-container input[type="password"] {
padding: 10px;
margin-bottom: 15px;
border: 1px solid #ddd;
border-radius: 5px;
font-size: 16px;
}
.login-container input[type="submit"] {
padding: 10px;
border: none;
border-radius: 5px;
background-color: #007BFF;
color: #fff;
font-size: 16px;
cursor: pointer;
}
.login-container input[type="submit"]:hover {
background-color: #0056b3;
}
footer {
display: flex;
flex-wrap: wrap;
justify-content: space-evenly;
align-items: center;
padding: 20px;
background-color: var(--footer-background-color);
color: var(--footer-text-color);
bottom: 0;
width: 100%;
box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}
footer a {
color: var(--footer-link-color);
text-decoration: none;
}
footer a:hover {
text-decoration: underline;
}
.theme-toggle {
cursor: pointer;
padding: 10px 40px;
background-color: var(--theme-toggle-background-color);
color: #fff;
border: none;
border-radius: 20px;
}
/* Light theme variables */
:root {
--background-color: #f0f0f0;
--text-color: #333;
--footer-background-color: #000;
--footer-text-color: #fff;
--footer-link-color: #fff;
--theme-toggle-background-color: gray;
}
/* Dark theme variables */
[data-theme="dark"] {
--background-color: #333;
--text-color: #fff;
--footer-background-color: #000;
--footer-text-color: #fff;
--footer-link-color: #fff;
--theme-toggle-background-color: white;
}