-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsite.css
61 lines (44 loc) · 766 Bytes
/
site.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
body
{
background-color: #bcdcff ; /* Le fond de la page sera noir */
color: black ; /* Le texte de la page sera blanc */
}
*
{
font-family: Impact, "Arial Black", Arial, Verdana, sans-serif;
}
h1
{
font-size: 2.8em;
text-align: center;
background-color: #a5b8ce ;
width : 100%
}
p
{
font-size: 1em;
width: 350px; /* On a indiqué une largeur (obligatoire) */
border: 1px solid black;
text-align: center;
padding: 12px;
margin: auto;
}
#menu
{
display: flex;
justify-content: space-around;
background-color: #7cbaff ;
}
.element1
{
}
a /* Liens par défaut (non survolés) */
{
text-decoration: none;
color: black;
}
a:hover /* Apparence au survol des liens */
{
font-weight: bold;
color: black;
}