-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
84 lines (66 loc) · 1.15 KB
/
style.css
File metadata and controls
84 lines (66 loc) · 1.15 KB
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
/**** Importation de la police ****/
/**** Reset ****/
*,
::before,
::after {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html.lenis,
html.lenis body {
height: auto;
}
.lenis.lenis-smooth {
scroll-behavior: auto !important;
}
.lenis.lenis-smooth [data-lenis-prevent] {
overscroll-behavior: contain;
}
.lenis.lenis-stopped {
overflow: hidden;
}
.lenis.lenis-scrolling iframe {
pointer-events: none;
}
/**** Style général de la page ****/
body {
width: 100%;
min-height: 100vh;
background-color: #060606;
color: #0d0d0d;
margin: auto;
}
header {
color: #ffffff;
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
padding: 1rem;
}
h1 {
font-size: 8rem;
text-align: center;
text-transform: uppercase;
}
p {
padding: 2rem;
font-size: 4rem;
color: #ffffff;
}
/**** Responsive design tablette ****/
@media screen and (max-width: 992px) {
h1 {
font-size: 6rem;
}
}
/**** Responsive design mobile ****/
@media screen and (max-width: 768px) {
h1 {
font-size: 3rem;
}
p {
font-size: 2rem;
}
}