-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
105 lines (90 loc) · 1.76 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;400;900&display=swap');
@media (max-width: 960px) {
/* Pour un écran < 960px, cette classe CSS s'applique */
.container {
width: 500px;
margin: 0 auto;
}
}
@media (max-width: 720px) {
/* Pour un écran < 720px, cette classe CSS s'applique */
.container {
width: 500px;
margin: 0 auto;
}
}
@media (max-width: 540px) {
/* Pour un écran < 540px, cette classe CSS s'applique */
.container {
width: 300px;
margin: 0 auto;
}
}
.container {
width: 700px;
margin: 0 auto;
}
body {
font-family: Roboto;
font-size: 16px;
color: #cacaca;
background-color: #212121;
text-align: center;
list-style-type: none;
line-height: 90%;
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
background: radial-gradient(ellipse at bottom, #0d1d31 0%, #0c0d13 100%);
overflow: hidden;
}
h1, h2 {
font-weight: 100;
line-height: 150%;
margin-bottom: 50px;
}
#img-circle {
border-radius: 50%;
box-shadow: 9px 9px 18px #323232,
-9px -9px 18px #cacaca;
}
a {
text-decoration: none;
padding: 10px;
font-family: Roboto;
font-size: 16px;
font-weight: 100;
}
.btn:hover {
color:#4d4d4d;
background-color: #cacaca;
}
.card {
border-radius: 3px;
background-color: #7e7e7e;
padding: 25px;
margin: 30px 5px;
box-shadow: 7px 7px 14px #050c14,
-7px -7px 14px #152e4e;
border: 1px solid #cacaca;
}
.list-inline > li {
display: inline-block;
padding: 0px 20px;
}
.list-inline {
list-style: none;
padding-left: 0px;
}
.socials {
font-size: 2em;
color: #cacaca;
}
.btn {
color:#cacaca;
background-color: #152e4e;
line-height: 40px;
border-radius: 3px;
box-shadow: 2px 2px 2px #050c14;
}