-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
153 lines (134 loc) · 3.53 KB
/
style.css
File metadata and controls
153 lines (134 loc) · 3.53 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
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
/* ======================================= */
/* GLOBAL STYLES & LOGIN INTERFACE STYLES */
/* ======================================= */
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
/* Login Background */
/* CORRECTION: Fixed syntax error in URL string */
background-image: url('https://wallpaperaccess.com/full/1284437.jpg');
background-size: cover;
background-position: center center;
}
/* NEW: Styles for the small, centered login box */
.login-container {
background: rgba(255, 255, 255, 0.2); /* Transparent white background */
padding: 30px;
border-radius: 15px;
/* Maximized blur value */
backdrop-filter: blur(50px);
/* TWEAK: Changed border to a softer white/gray for a subtle glow effect */
border: 1px solid rgba(255, 255, 255, 0.5);
width: 300px;
text-align: center;
box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}
.login-container h1 {
color: white;
text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
margin-bottom: 25px;
}
/* Specific Login Input Styling (Transparent/White lines) */
.login-form input[type="text"],
.login-form input[type="password"] {
width: 100%;
padding: 10px 0;
margin-bottom: 20px;
border: none;
border-bottom: 1px solid white; /* White line for input */
background: transparent; /* Transparent input background */
color: white; /* White input text */
outline: none;
box-sizing: border-box;
font-size: 16px;
}
.login-form input::placeholder {
color: rgba(255, 255, 255, 0.8);
}
/* Styling the Login Button */
.login-button {
background-color: #ff8c00;
color: white;
padding: 10px 20px;
border: none;
border-radius: 5px;
cursor: pointer;
font-size: 16px;
width: 100%;
margin-top: 25px;
}
.login-button:hover {
background-color: #e57d00;
}
/* Checkbox style */
.terms {
color: white;
font-size: 12px;
margin-top: 5px;
display: block;
text-align: left;
}
/* ======================================= */
/* EMPLOYEE MANAGEMENT (Original) STYLES */
/* ======================================= */
/* Original .container renamed to .employee-container for no conflict */
.employee-container {
background: #fff;
padding: 40px 20px;
border-radius: 8px;
/* Corrected the box-shadow syntax from original assignment*/
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
width: 80%;
max-width: 800px;
margin-top: 80px;
backdrop-filter: none;
}
h1,
h2 {
text-align: center;
color: #333;
}
.form-container {
margin-bottom: 20px;
}
label {
display: block;
margin: 8px 0 4px;
}
/* ORIGINAL EMPLOYEE INPUTS & BUTTONS */
input[type="text"],
button {
width: 100%;
padding: 8px;
margin-bottom: 10px;
border: 1px solid #ccc;
border-radius: 4px;
}
.employee-container button[type="submit"] {
background-color: #28a745;
color: white;
cursor: pointer;
}
.employee-container button[type="submit"]:hover {
background-color: #218838;
}
/* Employee List Table Styles */
.employee-list table {
width: 100%;
border-collapse: collapse;
margin-top: 20px;
}
.employee-list th,
.employee-list td {
padding: 12px;
border: 1px solid #ddd;
text-align: center;
}
.employee-list th {
background-color: #f8f9fa;
}