-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstudent_dashboard.css
More file actions
181 lines (154 loc) · 3.29 KB
/
Copy pathstudent_dashboard.css
File metadata and controls
181 lines (154 loc) · 3.29 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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
/* General Styles */
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f4f4f4;
color: #333;
}
/* Header */
header {
display: flex;
justify-content: space-between;
align-items: center;
background-color: #191c2f;
color: white;
padding: 10px 20px;
}
.header-left {
display: flex;
align-items: center;
}
.icon {
font-size: 24px;
margin-right: 10px;
}
.logo-text {
font-size: 18px;
font-weight: bold;
}
.header-right {
display: flex;
align-items: center;
gap: 15px;
}
.notification {
font-size: 20px;
cursor: pointer;
}
.user-name {
font-size: 16px;
}
/* Anchor Tag Reset */
a {
text-decoration: none; /* Remove underline */
color: inherit; /* Use the parent element's color */
font-weight: bold; /* Make links bold */
}
a:hover {
text-decoration: none; /* No underline on hover */
color: inherit; /* No color change on hover */
}
/* Welcome Section */
.welcome-section {
text-align: center;
margin-bottom: 30px;
}
.welcome-section h1 {
font-size: 24px;
color: #4f46e5;
}
/* Slider Section */
.slider-section {
margin: 20px auto;
text-align: center;
}
.slider-container {
position: relative;
width: 100%;
max-width: 1200px;
overflow: hidden;
margin: 0 auto;
border-radius: 10px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.slider {
display: flex;
transition: transform 0.5s ease-in-out;
}
.slide {
min-width: 100%;
box-sizing: border-box;
background-color: #fff;
text-align: center;
}
.slide img {
width: 100%;
height: auto;
border-radius: 10px 10px 0 0;
}
.slide h3 {
margin: 10px 0;
font-size: 20px;
}
.slide p {
margin: 0 20px 20px;
font-size: 14px;
color: #555;
}
/* Slider Buttons */
.slider-btn {
position: absolute;
top: 50%;
transform: translateY(-50%);
background-color: rgba(0, 0, 0, 0.5);
color: white;
border: none;
font-size: 20px;
padding: 10px 15px;
cursor: pointer;
border-radius: 50%;
z-index: 1000;
}
.slider-btn:hover {
background-color: rgba(0, 0, 0, 0.8);
}
.prev-btn {
left: 10px;
}
.next-btn {
right: 10px;
}
/* Options Section */
.options-section {
display: flex;
justify-content: space-around;
gap: 20px;
margin-bottom: 40px; /* Add space below the buttons */
}
.column {
display: flex;
flex-direction: column;
gap: 15px;
}
.option-button {
padding: 15px;
font-size: 16px;
border: none;
border-radius: 5px;
background-color: #4f46e5;
color: white;
cursor: pointer;
transition: background-color 0.3s;
}
.option-button:hover {
background-color: #3733a3;
}
/* Footer */
footer {
text-align: center;
padding: 20px 0; /* Increased padding for better spacing */
background-color: #191c2f;
color: white;
margin-top: 20px; /* Add space between the footer and above content */
}