-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
74 lines (66 loc) · 1.33 KB
/
index.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
body {
min-height: 100vh;
background-color: #1c3a5c;
color: #ffffff;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
box-sizing: border-box;
padding: 3rem;
font-family: 'Nunito';
}
.bio-container {
display: flex;
flex-wrap: wrap;
justify-content: center;
align-items: center;
margin-bottom: 25px;
}
.photo-container {
display: flex;
justify-content: center;
align-items: center;
border-radius: 50%;
background: #1c3a5c;
box-shadow: 20px 20px 60px #18314e, -20px -20px 60px #20436a;
height: 200px;
width: 200px;
}
.photo {
width: 85%;
height: 85%;
border-radius: 50%;
object-fit: cover;
}
.social-media-buttons-container {
display: flex;
justify-content: center;
align-items: center;
flex-wrap: wrap;
padding: 2rem 0 2rem 0;
}
#bio {
margin-left: 2rem;
font-weight: 100;
}
.social-media-button {
padding: 10px;
display: flex;
justify-content: center;
align-items: center;
}
.social-media-button > a {
display: inline-flex;
justify-content: center;
align-items: center;
width: 80px;
height: 80px;
text-decoration: none;
border-radius: 50px;
background: linear-gradient(145deg, #193453, #1e3e62);
box-shadow: 10px 10px 19px #18314e, -10px -10px 19px #20436a;
}
.social-media-button > a > span {
color: #ffffff;
}