-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathscript.css
More file actions
52 lines (49 loc) · 708 Bytes
/
script.css
File metadata and controls
52 lines (49 loc) · 708 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
#conteneur{
margin:0 auto;
max-width: 980px;
}
header{
display: flex;
flex-direction: column;
}
nav, main {
display: flex;
}
nav {
justify-content: space-around;
}
#droite, #gauche{
flex:0 0 30%;
margin-left: 20px;
}
footer{
display: flex;
justify-content: center;
}
header, nav, #gauche, section, #droite, footer{
padding: 5px;
}
header, footer{
background-color: bisque;
color:#fff
}
nav{
background-color: #aaa;
}
nav a {
text-decoration: none;
color:#000;
}
nav a:hover{
color:#fff;
}
#gauche, #droite{
background-color: #eee;
}
#gauche a, #droite a {
text-decoration: none;
color:#000;
}
h1, h2, h3{
margin: auto;
}