-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles_admin.css
159 lines (142 loc) · 3.52 KB
/
styles_admin.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
/* General Body Styling */
body {
margin: 0;
padding: 0;
font-family: Arial, sans-serif;
background: linear-gradient(135deg, rgba(58, 123, 213, 0.9), rgba(58, 213, 196, 0.9));
background-attachment: fixed;
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
color: #000000;
}
/* Glass Effect Container */
.container {
background: rgba(255, 255, 255, 0.2);
border-radius: 15px;
backdrop-filter: blur(15px);
-webkit-backdrop-filter: blur(15px);
box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
padding: 30px;
max-width: 900px;
width: 90%;
text-align: center;
box-sizing: border-box;
border: 1px solid rgba(255, 255, 255, 0.3);
}
/* Title Styling */
h2 {
font-size: 2.5rem;
font-weight: bold;
margin-bottom: 20px;
color: #000000;
text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}
/* Section Heading Styling */
h3 {
font-size: 1.8rem;
margin-bottom: 15px;
color: #000000;
text-align: left;
}
/* List Styling */
ul {
background: rgba(255, 255, 255, 0.2);
border-radius: 10px;
padding: 15px;
list-style: none;
margin-bottom: 20px;
text-align: left;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
ul li {
background: rgba(255, 255, 255, 0.1);
margin: 10px 0;
padding: 10px;
border-radius: 5px;
color: #000000;
font-size: 1rem;
box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
display: grid;
grid-template-columns: 1fr auto auto;
gap: 10px;
align-items: center;
}
/* Buttons Styling for Edit/Delete */
ul li a {
margin: 0;
padding: 8px 15px;
color: #fff;
background: linear-gradient(135deg, rgba(58, 123, 213, 0.8), rgba(58, 213, 196, 0.8));
border-radius: 5px;
text-decoration: none;
font-size: 0.9rem;
font-weight: bold;
text-align: center;
box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
transition: all 0.3s ease;
}
ul li a:hover {
background: linear-gradient(135deg, rgba(58, 213, 196, 0.8), rgba(58, 123, 213, 0.8));
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}
/* Add User/Announcement Links */
a {
color: #000000;
text-decoration: none;
font-weight: bold;
display: inline-block;
margin: 10px 0;
}
a:hover {
text-decoration: underline;
}
/* Logout Button */
.logout-btn {
display: inline-block;
margin-top: 20px;
padding: 10px 20px;
background: linear-gradient(135deg, rgba(255, 69, 0, 0.8), rgba(255, 165, 0, 0.8));
color: #fff;
text-decoration: none;
border-radius: 8px;
font-weight: bold;
text-align: center;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
transition: background 0.3s, box-shadow 0.3s;
}
.logout-btn:hover {
background: linear-gradient(135deg, rgba(255, 165, 0, 0.8), rgba(255, 69, 0, 0.8));
box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}
/* Responsive Design */
@media (max-width: 768px) {
.container {
width: 95%;
padding: 20px;
}
h2 {
font-size: 2rem;
}
h3 {
font-size: 1.5rem;
}
ul li {
grid-template-columns: 1fr;
}
ul li a {
margin: 5px 0;
}
}
.message {
background: rgba(255, 255, 255, 0.2);
border: 1px solid rgba(255, 69, 0, 0.8);
color: #fff;
padding: 10px;
margin-bottom: 20px;
border-radius: 5px;
text-align: center;
font-weight: bold;
font-size: 1rem;
}