-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
109 lines (85 loc) · 1.39 KB
/
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
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
*{
margin: 0px;
}
ul{
background-color:darkgrey;
display:flex;
justify-content:flex-start;
width: 100%;
margin-right: 0px;
margin-left: 0px;
padding-left: 0px;
list-style: none;
}
li{
margin: auto;
width: 50%;
padding-left: 2%;
padding-right: 2%;
color: aliceblue;
}
.whiteb{
background-color: whitesmoke;
color:black;
margin:15px;
margin-top: 0px;
margin-bottom: 0px;
padding-top: 0.5em;
width: 70px;
text-align: center;
}
li:first-child{
font-size:2em;
}
.carousel{
margin:0px;
background-color: antiquewhite;
height:13em;
}
section h2{
text-align: center;
font-weight: lighter;
padding: 2em;
}
strong{
font-weight: bold;
color: red;
}
article{
background-color:bisque;
padding: 10%;
padding-left: 15%;
padding-right: 15%;
margin: 10px;
margin-bottom: 5em;
}
#zonearticle{
display: flex;
justify-content: space-around;
}
/* bare de séparation*/
.separator{
border-top: 0.2em inset red;
}
#zoneform{
/*
display:flex;
flex-direction: column;
align-items: center;
*/
}
/* Reglage input et textarea*/
input,textarea{
display: block;
margin:auto;
width: 80%;
margin-top: 20px;
margin-bottom: 20px;
}
form textarea{
height: 10em;
}
/* Espacement*/
.space{
height:1em;
}