-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
87 lines (74 loc) · 1.31 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
body {
font-family: nobile;
}
.logo {
height: 60px;
}
.fb {
height: 25px;
margin-top: 15px;
}
footer {
padding-top: 10vmin;
padding-bottom: 5vmin;
display: flex;
justify-content: center;
}
h1 {
font-size: calc(14px + 2vw);
}
h2 {
font-size: calc(14px + 1.5vw);
}
h3 {
font-size: calc(14px + 0.5vw);
}
.presentation {
display: grid;
grid-template-columns: 1fr 1fr 1fr;
margin-top: 100px;
}
nav {
display: grid;
grid-template-columns: 30vw 1fr 1fr 1fr 10vw;
}
.title {
display: grid;
grid-template-columns: 1fr 1fr 1fr ;
grid-template-rows: 10vh 10vh;
}
.drink {
grid-column-start: 2;
justify-self: center; /* centrer le texte dans grid **/
color: blueviolet;
padding-top: 1vw;
}
.new {
grid-column-start: 2;
grid-row-start: 2;
justify-self: center;
padding-top: 1vw;
}
.digitaline {
height: 600px;
border-style: solid;
border-color: blueviolet;
justify-self: center;
}
.canette {
height: 600px;
border-style: solid;
border-color: blueviolet;
justify-self: center;
}
.texte {
padding-left: 5vw;
padding-right: 5vw;
padding-top: 5vw;
justify-self: center;
border-style: solid;
border-color: blueviolet;
background-color: rebeccapurple;
color: white;
line-height: 25px; /* changer interlignage **/
}