-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcss
More file actions
97 lines (84 loc) · 1.47 KB
/
css
File metadata and controls
97 lines (84 loc) · 1.47 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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: Arial, sans-serif;
}
body {
background: #f4f6f8;
color: #333;
}
header {
display: flex;
justify-content: space-between;
align-items: center;
padding: 15px 50px;
background: #1e3c72;
color: white;
}
nav a {
color: white;
margin-left: 20px;
text-decoration: none;
}
.hero {
height: 90vh;
background: linear-gradient(to right, #1e3c72, #2a5298);
color: white;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.hero button {
margin-top: 20px;
padding: 10px 25px;
border: none;
background: #ff9800;
color: white;
font-size: 16px;
cursor: pointer;
}
.courses {
padding: 60px;
text-align: center;
}
.course-list {
display: flex;
justify-content: center;
gap: 30px;
margin-top: 30px;
}
.course-card {
background: white;
padding: 25px;
width: 250px;
border-radius: 10px;
box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.about, .contact {
padding: 60px;
text-align: center;
}
.contact form {
max-width: 400px;
margin: auto;
}
.contact input, .contact textarea {
width: 100%;
margin: 10px 0;
padding: 10px;
}
.contact button {
background: #1e3c72;
color: white;
padding: 10px;
border: none;
width: 100%;
}
footer {
background: #1e3c72;
color: white;
text-align: center;
padding: 15px;
}