-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
60 lines (58 loc) · 1003 Bytes
/
style.css
File metadata and controls
60 lines (58 loc) · 1003 Bytes
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{
color: black;
background-color: lightgrey;
font-family: 'Lekton';
text-align: justify;
justify-content: center;
}
.container{
margin: 40px auto;
width: 700px;
}
.card{
background-color: antiquewhite;
justify-content: center;
margin: 20px 0px;
text-align: center;
padding: 40px;
border-radius: 4px;
box-shadow: 0px 0px 5px darkgray;
}
.social-icons{
display: flex;
justify-content: center;
margin-right: 42px;
margin-top: 30px;
font-size: 45px;
}
a{
padding: 0px 10px;
}
i:hover{
color: darkgray;
}
i{
color: #050505;
}
.profile-img{
border-radius: 50%;
box-shadow: 0px 0px 5px darkgray;
}
@media (max-width: 960px) {
/* For a screen < 960px, this CSS will be read */
.container {
width: 700px;
}
}
@media (max-width: 720px) {
/* For a screen < 720px, this CSS will be read */
.container {
width: 500px;
}
}
@media (max-width: 540px) {
/* For a screen < 540px, this CSS will be read */
.container {
width: 300px;
}
}