forked from TheZoom110/Esperanza-2023-Hackathon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathclubs-body.css
63 lines (54 loc) · 934 Bytes
/
clubs-body.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
/* Reset styles */
* {
margin: 0;
padding: 0;
/* box-sizing: border-box; */
}
/* Body styles */
body {
font-family: Arial, sans-serif;
font-size: 16px;
line-height: 1.5;
}
/* Section styles */
section {
padding: 50px;
text-align: center;
}
section h2 {
margin-bottom: 20px;
}
.button {
display: inline-block;
padding: 10px 20px;
background-color: #333;
color: #fff;
text-decoration: none;
border-radius: 5px;
margin-top: 20px;
}
/* Courses section styles */
.courses {
background-color: #f5f5f5;
padding: 50px;
}
.courses h2 {
margin-bottom: 20px;
}
.courses ul {
list-style: none;
display: flex;
flex-wrap: wrap;
}
.courses li {
margin-right: 20px;
margin-bottom: 20px;
width: calc(33.33% - 20px);
}
li img{
height:200px ;
width:200px ;
margin-bottom: 10px;
border-radius: 1rem;
box-shadow: 2px 2px 7px 2px black;
}