forked from suraj9706/links
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlinktree.css
More file actions
61 lines (57 loc) · 1.05 KB
/
linktree.css
File metadata and controls
61 lines (57 loc) · 1.05 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
body {
padding-top: 40px;
padding-bottom: 40px;
background-color: rgb(75, 165, 207);
display: flex;
justify-content: center;
}
.name{
font-size: 275%;
font-style: italic;
color: rgb(9, 10, 53);
display: flex;
justify-content: center;
border: .05em solid rgb(9, 10, 53);
border-radius: 158px;
background-color:rgb(132, 210, 247);
}
.headshot{
display: flex;
justify-content: center;
}
.headshot-image {
width: 220px;
height: 220px;
object-fit: cover;
border-radius: 158px;
border: .2em solid rgb(9, 10, 53);;
}
.imagesIcon {
width: 85px;
height: 85px;
border-radius: 85px;
object-fit: cover;
margin-right: 2em;
justify-content: space-around;
}
.everything{
display: flex;
flex-direction: column;
gap: 30px;
max-width: 840px;
}
.links {
background-color: #ffffff;
display: flex;
align-items: center;
padding: 20px 200px;
border: .2em solid rgb(9, 10, 53);
border-radius: 158px;
}
.links a {
font-size: 120%;
color: rgb(9, 10, 53);
text-decoration: none;
text-align: center;
flex-grow: 1;
}