-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdashboard.css
62 lines (54 loc) · 1.13 KB
/
dashboard.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
/* General Styles */
body {
font-family: 'Cambria', serif;
background-color: #f4f4f4; /* Light grey background */
color: #333333; /* Dark text color */
margin: 0;
padding: 0;
}
header {
background-color: #2C3E50; /* Dark blue */
color: #ffffff; /* White text */
text-align: center;
padding: 20px 0;
margin-bottom: 40px;
}
header h1 {
font-size: 2.5rem;
margin: 0;
}
main {
text-align: center;
padding: 30px 10px;
}
main h2 {
color: #2C3E50; /* Dark blue */
font-size: 2rem;
margin-bottom: 30px;
}
.actions {
display: flex;
justify-content: center;
gap: 20px;
}
.actions a {
background-color: #3498db; /* Blue button */
color: #ffffff; /* White text */
padding: 12px 20px;
text-decoration: none;
border-radius: 4px;
font-size: 1.1rem;
transition: background-color 0.3s;
}
.actions a:hover {
background-color: #2980b9; /* Darker blue on hover */
}
footer {
background-color: #2C3E50; /* Dark blue */
color: #ffffff; /* White text */
text-align: center;
padding: 10px;
position: absolute;
bottom: 0;
width: 100%;
}