-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
59 lines (45 loc) · 892 Bytes
/
style.css
File metadata and controls
59 lines (45 loc) · 892 Bytes
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
/*Reponsive design pour téléphone*/
@media screen and (min-width: 375px) {
div{
margin: 200px auto 0 auto;
}
}
@media screen and (min-width: 990px) {
div{
margin: 75px auto 0 auto;
}
}
body{
background-color: hsl(212, 45%, 89%);
height: 50vh;
}
div{
padding: 5px 10px 20px 10px;
background-color: hsl(0, 0%, 100%);
display: flex;
flex-direction: column;
width: 250px;
height: 400px;
border-radius: 15px;
}
img{
height: 240px;
margin: auto;
width: 240px;
border-radius: 15px;
}
h2{
color: hsl(218, 44%, 22%);
margin: 10px 10px 0 10px;
font-size: 20px;
text-align: center;
font-weight: 700;
font-family: "Outfit", sans-serif;
}
p{
text-align: center;
font-family: "Outfit", sans-serif;
font-size: 15px;
color: hsl(220, 15%, 55%);
font-weight: 400;
}