-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdashboard.css
More file actions
114 lines (103 loc) · 2.24 KB
/
dashboard.css
File metadata and controls
114 lines (103 loc) · 2.24 KB
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
body {
font-family: 'Poppins', sans-serif;
background: url('https://images.unsplash.com/photo-1477346611705-65d1883cee1e?fm=jpg&q=60&w=3000&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxzZWFyY2h8Mnx8ZGFyayUyMGxhbmRzY2FwZXxlbnwwfHwwfHx8MA%3D%3D') no-repeat center center/cover;
margin: 0;
color: white;
}
/* Navbar */
nav {
display: flex;
justify-content: space-between;
align-items: center;
padding: 1rem 2rem;
background: rgba(0,0,0,0.6);
backdrop-filter: blur(5px);
}
nav ul {
display: flex;
gap: 1rem;
list-style: none;
}
nav a {
color: white;
text-decoration: none;
}
nav a:hover { color: #ff9800; }
/* Hero */
.hero {
text-align: center;
padding: 3rem 1rem;
}
/* Stats */
.stats-section {
display: flex;
justify-content: center;
gap: 1.5rem;
padding: 2rem;
}
.stat-card {
background: rgba(255,255,255,0.15);
padding: 1.5rem;
border-radius: 12px;
text-align: center;
min-width: 150px;
}
/* Problems */
.problems-section {
padding: 40px;
text-align: center;
}
.problems-carousel {
display: flex;
overflow-x: auto;
gap: 85px;
padding: 20px;
scroll-behavior: smooth;
}
.problem-card {
min-width: 250px;
flex: 0 0 auto;
background: rgba(255,255,255,0.15);
color: white;
padding: 20px;
border-radius: 10px;
box-shadow: 0 4px 10px rgba(0,0,0,0.2);
transition: transform 0.3s ease;
backdrop-filter: blur(6px);
}
.problem-card:hover {
transform: scale(1.05);
}
.problems-carousel::-webkit-scrollbar {
display: none;
}
/* Report Section */
.report-section {
max-width: 600px;
margin: 3rem auto;
padding: 2rem;
background: rgba(255,255,255,0.15);
border-radius: 15px;
}
.report-section form {
display: flex;
flex-direction: column;
gap: 1rem;
}
.report-section input, .report-section textarea, .report-section button {
padding: 0.8rem;
border: none;
border-radius: 8px;
}
.report-section input, .report-section textarea {
background: rgba(255,255,255,0.8);
color: black;
}
.report-section button {
background: #ff9800;
color: white;
cursor: pointer;
font-weight: 600;
transition: background 0.3s ease;
}
.report-section button:hover { background: #e68900; }