-
Notifications
You must be signed in to change notification settings - Fork 208
/
dashboard.css
113 lines (95 loc) · 1.71 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
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
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700;800&display=swap");
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
body, input {
font-family: "Poppins", sans-serif;
}
.container {
min-height: 100vh;
width: 100%;
background-color: #f4f4f4;
display: flex;
justify-content: center;
align-items: center;
position: relative;
overflow: hidden;
}
.dashboard-content {
background-color: #ffffff;
padding: 2rem;
border-radius: 10px;
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
text-align: center;
width: 100%;
max-width: 700px;
}
h1 {
font-size: 2.5rem;
color: #333;
margin-bottom: 1.5rem;
}
h2 {
font-size: 1.8rem;
color: #444;
margin-bottom: 1rem;
}
ul {
list-style-type: disc;
padding-left: 20px;
text-align: left;
color: #555;
}
ul li {
margin-bottom: 10px;
}
ul li a {
color: #007bff;
text-decoration: none;
font-weight: 500;
}
ul li a:hover {
text-decoration: underline;
color: #0056b3;
}
.section {
margin: 2rem 0;
}
.homeBtn {
position: absolute;
top: 20px;
left: 20px;
background: #000000;
color: #ffffff;
padding: 10px 20px;
border-radius: 10px;
font-size: 1rem;
font-weight: 500;
text-decoration: none;
cursor: pointer;
transition: 0.3s;
}
.homeBtn:hover {
background-color: #444444;
}
/* Responsive styles */
@media (max-width: 768px) {
.dashboard-content {
padding: 1.5rem;
}
h1 {
font-size: 2rem;
}
h2 {
font-size: 1.6rem;
}
ul li {
font-size: 0.9rem;
}
.homeBtn {
font-size: 0.9rem;
}
}