-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
60 lines (58 loc) · 1005 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
54
55
56
57
58
59
60
body {
background-color: rgb(235, 235, 235);
color: black;
}
.img-circle{
border-radius: 80%;
}
.shadowed{
box-shadow: 3px 3px 3px rgb(131, 145, 144);
}
#profil{
}
h1 {
color: rgb(221, 85, 85);
font-family: 'Poppins', sans-serif;
font-size: 24px;
font-weight: bold;
line-height: 20px;
}
h2, h3 {
color: rgb(131, 145, 144);
font-family: 'Raleway', sans-serif;
line-height: 20px;
}
p {
color: rgb(120, 120, 120);
font-family: 'Catamaran', sans-serif;
line-height: 22px;
}
a:hover, i:hover {
color: rgb(67, 96, 156);
}
a, i {
text-decoration: none;
color: rgb(131, 145, 144);
}
li {
list-style-type: none;
font-family: 'Catamaran', sans-serif;
font-size: 20px;
border-collapse: collapse;
}
.container{
width: 500px;
margin: 0 auto;
text-align: center;
}
.card-white {
background: white;
padding: 10px;
border: 1px solid rgb(200, 200, 200);
margin-bottom: 30px;
border-radius: 10px;
}
.list-inline > li {
display: inline-block;
padding: 20px;
}