-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
126 lines (113 loc) · 2.11 KB
/
styles.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
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
/* google font import */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');
/* sets font for body */
body {
font-family: 'Poppins', sans-serif;
margin: 0;
padding: 0;
box-sizing: border-box;
background-color: #f0f4f8;
}
header {
background: #1e3d59;
color: #fff;
padding: 15px 0;
display: flex;
justify-content: space-between;
align-items: center;
}
/* styles for logo in navbar */
.logo img {
width: 80px;
height: auto;
border-radius: 50%;
margin-left: 20px;
}
/* styles for navbar */
nav ul {
list-style: none;
padding: 0;
margin: 0;
display: flex;
justify-content: center;
align-items: center;
}
nav ul li {
display: inline;
margin: 0 30px;
}
nav ul li a {
color: #fff;
text-decoration: none;
font-weight: bold;
}
/* styles for intro section */
.intro {
padding: 100px 40px;
background: url('guitarbg.jpg') no-repeat center center/cover;
text-align: center;
color: #fff;
}
.intro h2 {
font-size: 36px;
margin-bottom: 20px;
}
.intro p {
font-size: 18px;
margin-bottom: 40px;
}
.intro button {
background: #ffc107;
color: #fff;
border: none;
padding: 12px 24px;
cursor: pointer;
font-size: 16px;
border-radius: 5px;
}
.intro button:hover {
background: #e0a800;
}
/* styles for courses section */
section {
padding: 60px;
margin: 0 auto;
max-width: 1200px;
text-align: center;
}
.courses {
display: flex;
justify-content: center;
gap: 30px;
flex-wrap: wrap;
}
.course {
background: #fff;
padding: 20px;
margin: 10px;
border-radius: 8px;
width: 300px;
box-shadow: 0 0 10px rgba(0,0,0,0.1);
text-align: left;
}
h2.section-title {
font-size: 36px;
margin-bottom: 40px;
}
.price {
font-weight: bold;
color: #1e3d59;
}
/* styles for about/contact */
.about, .contact {
background: #ffffff;
text-align: center;
border-radius: 8px;
}
footer {
background: #1e3d59;
color: #fff;
text-align: center;
padding: 20px 0;
font-size: 14px;
}