-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
80 lines (68 loc) · 1.09 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
body {
font-family: "futura";
font-weight: 200;
background-color: #F3F4F4;
color: #586066;
text-align: center;
padding: 5px;
line-height:20px;
}
h1, h2, h3 {
font-family: "Quicksand";
color: #000b5e;
}
h2 {
font-weight:100;
}
#img-circle{
border-radius: 10%;
}
li {
display: inline-block;
padding: 0px 20px;
}
ul {
padding: 0px;
size: 50px;
}
p {
margin-bottom: 20px;
}
.card {
background-color: white;
padding: 30px;
width: 50%;
margin: 25px auto;
border-radius:10px;
border: 1px solid #EAEAEA;
box-shadow: 0 10px 30px rgba(0,0,0,.1);
}
a {
text-decoration: none;
color: #000b5e;
font-size: 18px;
font-weight: bold;
transition: 0.3s ease;
margin-bottom: 20px;
}
a:hover {
color: #ffc2e9;
}
@media (max-width: 960px) {
/* Pour un écran < 960px, cette classe CSS s'applique */
.card {
width: 60%;
}
}
@media (max-width: 720px) {
/* Pour un écran < 720px, cette classe CSS s'applique */
.card {
width: 80%;
}
}
@media (max-width: 540px) {
/* Pour un écran < 540px, cette classe CSS s'applique */
.card {
width: 80%;
}
}