-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
43 lines (38 loc) · 863 Bytes
/
style.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
body {
display: flex;
flex-direction: column;
justify-content: space-between;
height: 100vh;
margin: 0;
padding: 0;
}
header, footer {
/* Votre style header et footer ici */
}
main {
flex-grow: 1;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
width: 100%;
padding: 20px;
box-sizing: border-box;
}
.section {
display: flex;
flex-wrap: wrap;
justify-content: space-around;
align-items: center;
width: 100%;
max-width: 1200px; /* Largeur maximale pour vos sections */
margin: 0 auto 50px; /* Ajoute une marge en bas de 50px pour séparer les sections */
}
.cheatsheet {
width: 200px;
height: 200px;
background-color: #f8f8f8;
border-radius: 10px;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
overflow: hidden;
}