-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdashboard.css
62 lines (55 loc) · 1.03 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
body {
font-family: 'Times New Roman', Times, serif;
background-color: #000000;
margin: 0;
padding: 0;
display: flex;
justify-content: center;
align-items: center;
height: 95vh;
}
.dashboard {
text-align: center;
max-width: 800px;
margin: 0 auto;
padding: 20px;
background: white;
border-radius: 15px;
box-shadow: 0 4px 8px rgba(255, 255, 255, 0.2);
}
h1 {
margin-bottom: 20px;
color: #000000;
}
.card {
margin: 20px 0;
padding: 15px;
border: 1px solid #ddd;
border-radius: 15px;
background-color: #e4e4e46e;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.card:hover{
transition: 800ms;
background-color: #9696966e;
}
.card h2 {
color: #242424;
margin-bottom: 10px;
}
.card p {
color: #313131;
margin-bottom: 15px;
}
button {
padding: 10px 20px;
background-color: #007BFF;
color: white;
border: none;
border-radius: 30px;
cursor: pointer;
font-size: 14px;
}
button:hover {
background-color: #00b300;
}