-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
53 lines (50 loc) · 901 Bytes
/
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
body{
background-color: rgb(255, 255, 255);
font-family: Verdana, Geneva, Tahoma, sans-serif;
}
p, li, blockquote{
font-size: 16px;
}
.main{
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
background-color: rgb(244, 241, 241);
border-radius: 10px;
margin : 30px 5px 30px 5px;
padding: 20px;
}
.titre{
text-align: center;
}
.titre h1{
font-size: 2rem;
}
.photo{
background-color: rgb(255, 255, 255);
text-align: center;
padding: 10px;
max-width: 100%;
}
.photo img{
width: 100%;
}
.life{
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.life ul, blockquote{
display: block;
font-size: 0.95rem;
}
@media screen and (min-width: 968px) {
.life ul, blockquote{
width: 30%;
}
}
.life li{
padding: 15px;
}