-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
90 lines (78 loc) · 1.24 KB
/
styles.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
*, ::before, ::after {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: Arial, Helvetica, sans-serif;
}
nav {
width: 100%;
height: 70px;
position: relative;
z-index: 1000;
position: fixed;
}
ul {
height: 100%;
list-style-type: none;
display: flex;
justify-content: center;
align-items: center;
}
li {
font-size: 20px;
margin: 0 20px;
cursor: pointer;
color: #f1f1f1;
}
.accueil {
height: 70vh;
width: 100%;
background-color: #0C273C;
}
@media screen and (max-width: 450px) {
.accueil {
height: 85vh;
}
}
.fond-curvy {
width: 100%;
position: absolute;
left: 0;
bottom: 5%;
display: block;
}
.contenu {
position: relative;
z-index: 1000;
}
h1 {
font-size: 70px;
padding: 200px 0 0 10vw;
position: relative;
right: 8px;
color: #f1f1f1;
}
p {
font-size: 30px;
padding: 0 0 0 10vw;
margin: 7px 0;
color: #f1f1f1;
}
button {
margin: 20px 0 0 10vw;
padding: 12px;
font-size: 20px;
width: 150px;
border-radius: 5px;
cursor: pointer;
border: none;
}
.laptop {
width: 30vw;
height: 250px;
position: absolute;
top: 100px;
right: 12%;
}