-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
102 lines (84 loc) · 1.46 KB
/
style.css
File metadata and controls
102 lines (84 loc) · 1.46 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
body {
background-color :#E0E2DB;
font-family: 'Roboto', sans-serif;
color : #575F7D
}
h1 {
font-size: 32px ;
line-height: 1.6;
}
h2 {
font-size: 24px ;
line-height: 1.6;
}
h3 {
color : #187498
}
p {
font-family: 'Montserrat', sans-serif;
font-size: 16px ;
line-height: 1.6;
word-spacing: 0.3 em;
margin: 20px;
}
#link-awesome {
color : white;
background-color: #0E9594;
border-radius: 4px;
padding: 5px 10px 5px 10px;
}
#link-awesome:hover {
color : black
}
a {
color : rgb(146, 149, 153);
text-decoration: none;
}
a:hover {
color: black
}
#profile-pic {
border-radius: 50%;
max-width: 100px;
max-height: 100px;
box-shadow: Opx 4px 16px rgba(0,0,0,7%);
}
.container {
width: 700px;
margin: 0 auto;
}
.card-white {
background: white;
margin: 20px;
padding: 50px 50px 50px 50px;
border: 1px solid rgb(238, 241, 245);
border-radius: 5px;
box-shadow: 0px 4px 16px rgba(0,0,0,7%);
text-align: center;
}
.list-inline {
list-style: none;
padding-left: 0px;
}
.list-inline > li {
display: inline-block;
padding: 0px 20px;
}
@media (max-width: 960px) {
/* Pour un écran < 960px, cette classe CSS s'applique */
.container {
width: 540px;
}
}
@media (max-width: 720px) {
/* Pour un écran < 720px, cette classe CSS s'applique */
.container {
width: 400px;
}
}
@media (max-width: 540px) {
/* Pour un écran < 540px, cette classe CSS s'applique */
.container {
width: 320px;
}
}