-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.css
114 lines (90 loc) · 1.78 KB
/
about.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
110
111
112
.topnav {
overflow: hidden;
}
/* 1ere navbar */
#myTopNav1 {
background-color: white;
}
/* 2eme navbar */
#myTopnav2 {
background-color: #f2f2f2;
margin-right: 3px;
margin-bottom: 10px;
}
#myTopnav1 a {
color: #005645;
margin-bottom: 15px;
}
#myTopnav2 a {
color: white;
background-color: #005645;
}
/* positionner la navbar en haut */
.topnav a {
/* nous permet de placer les element a gauche */
float: right;
display: block;
text-align: center;
padding: 14px 16px;
text-decoration: none;
font-size: 17px;
}
/* survol d'un element du navbar la couleur change */
.topnav a:hover {
background-color: #ddd;
color: black;
}
/* aucun css sur les elements de la liste */
.topnav .icon {
display: none;
}
/* css pour la responsivité (les ecrans <= 600px) */
@media screen and (max-width: 600px) {
.topnav a:not(:first-child) {
display: none;
}
.topnav a.icon {
float: right;
display: block;
}
}
@media screen and (max-width: 600px) {
.topnav.responsive {
position: relative;
}
.topnav.responsive .icon {
position: absolute;
right: 0;
top: 0;
}
.topnav.responsive a {
float: none;
display: block;
text-align: left;
}
}
#titrea{
color: white;
background-color: #005645;
text-align: center;
}
#ti{
color: white;
background-color: #005645;
text-align: center;
width: 60%;
display: flex;
justify-content: center;
flex-direction: column;
justify-items: center;
}
#t{
text-align: center;
display: flex;
justify-content: space-around;
}
body{
background-image: url('image/imageagri1.avif');
background-repeat:no-repeat;
background-size: cover;
}