-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
127 lines (108 loc) · 1.88 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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
@import url('https://fonts.googleapis.com/css2?family=Odibee+Sans&display=swap');
/* font-family: 'Odibee Sans', cursive; */
*{
margin: 0;
padding: 0;
}
html, body{
height: 100%;
}
.slide{
height: 100%;
width: 100%;
background-color: rgb(61, 102, 101);
}
.wrapper{
margin: 0 auto;
width: 1200px;
}
#acceuil{
background-image: url(images/i3.jpg);
background-size: cover;
}
#acceuil img{
/* display: block; */
height: 740px;
width: 509,6px;
position: absolute;
top: 45%;
left: 50%;
transform: translate(-50%,-50%);
cursor: pointer;
}
nav{
width: 100%;
height: 80px;
background-color: white;
opacity: 80%;
position: fixed;
top: 0;
left: 0;
z-index: 100;
display: flex;
align-items: center;
}
nav ul{
width: 100%;
list-style: none;
display: flex;
justify-content: space-around;
}
nav ul li{
float: left;
display: block;
width: 240px;
height: 60px;
text-align: center;
text-decoration: none;
}
nav ul li a{
display: block;
width: 100%;
line-height: 60px;
background-color: white;
font-family: 'Odibee Sans', cursive;
text-decoration: none;
color: rgb(61, 102, 101);
font-size: 22px;
transition: all 0.2s;
}
nav ul li a:hover{
font-size: 20px;
color: rgb(108, 170, 169);
}
nav ul li ul{
display: none;
}
nav ul li:hover ul{
display: block;
}
nav ul img{
height: 80%;
width: 8%;
position: absolute;
top: 10%;
left: 50%;
transform: translate(-50%,-5%);
cursor: pointer;
}
#acceuil p{
color: rgb(58, 58, 58);
font-size: 60px;
font-family:'Odibee Sans', cursive;
position: absolute;
top: 90%;
left: 50%;
transform: translate(-50%,-50%);
}
@keyframes anim{
0%{
opacity: 0;
}
100%{
opacity: 1;
}
}
.box{
display: block;
}