-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
52 lines (45 loc) · 786 Bytes
/
style.css
File metadata and controls
52 lines (45 loc) · 786 Bytes
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
body {
margin: 0;
font-family: Arial, sans-serif;
background-color: #f4f6f8;
}
/* Navbar */
.navbar {
background-color: #1e293b;
color: white;
padding: 15px 30px;
display: flex;
justify-content: space-between;
align-items: center;
}
.nav-links {
list-style: none;
display: flex;
gap: 20px;
}
.nav-links li {
cursor: pointer;
}
/* Courses */
.courses {
padding: 30px;
}
.course-container {
display: flex;
gap: 20px;
}
.course-card {
background-color: white;
padding: 20px;
width: 250px;
border-radius: 8px;
box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
.course-card button {
background-color: #2563eb;
color: white;
border: none;
padding: 10px;
cursor: pointer;
width: 100%;
}