-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathadmin.css
100 lines (90 loc) · 1.9 KB
/
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
/* Add your CSS styles here */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
text-decoration: none;
}
body {
background-image: linear-gradient(to left, #0066ff, #00a2ff);
background-position: 0 0, 100% 100%;
background-size: 100% 100%;
font-family: Arial, sans-serif;
background-color: #f7f7f7;
color: #333;
padding: 20px;
}
#sidebar {
width: 250px;
height: 100%;
background-color: #000000;
color: #fff;
padding: 20px;
position: fixed;
left: 0;
top: 0;
display: flex;
flex-direction: column;
}
#sidebar h2 {
font-size: 22px;
background-color: #000000;
margin-top: 0;
}
#sidebar ul {
list-style: none;
padding: 0;
margin: 20px 0;
}
#sidebar ul li {
padding: 10px 0;
cursor: pointer;
}
button {
width: 140px;
height: 40px;
display: flex;
align-items: center;
justify-content: center; /* Center horizontally */
padding: 10px 20px;
font-size: 16px;
text-align: center;
text-decoration: none;
border: none;
border-radius: 5px;
cursor: pointer;
transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
background-color: #0033ff;
color: #fff;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
button:hover {
transform: translateY(-2px); /* Adjust the Y-offset for the effect */
box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2);
background-color: #0b2bab;
}
.content {
margin-left: 260px;
padding: 20px;
}
.welcome-message {
font-size: 90px;
font-weight: bold;
color:#fff;
text-align: center; /* Center-align the text */
margin-bottom: 20px;
animation: fadeIn 1s ease; /* Apply the fadeIn animation */
}
.count {
color: #f7f7f7;
font-size: 20px;
margin: 10px 0;
}
@keyframes fadeIn {
from {
opacity: 0;
}
to {
opacity: 1;
}
}