-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlinktree.css
More file actions
73 lines (64 loc) · 1.3 KB
/
linktree.css
File metadata and controls
73 lines (64 loc) · 1.3 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
62
63
64
65
66
67
68
69
70
71
72
73
body{
background: linear-gradient(180deg, #40e4ea, #f5d100, #f583e1);
background-repeat: no-repeat;
background-attachment: fixed;
font-family: 'Edu NSW ACT Foundation', cursive;
max-width: 480px;
height: 100%;
}
img{
display: flex;
border-radius: 50%;
border-color: whitesmoke;
width: 20%;
height: auto;
margin-top: 25px;
margin-botton: 25px;
margin-left: auto;
margin-right: auto;
}
.profilename{
display: flex;
align-content: center;
justify-content: center;
font-size: 18px;
text-align: center;
color: #3e4245;
border-color: aqua;
border-radius: 5%;
}
a{
display: flex;
align-items: center;
justify-content: center;
border: whitesmoke;
background-color: #9b81ea;
text-decoration: none;
color: white;
margin-top: 10px;
margin-left: auto;
margin-right: auto;
padding-left: 60px;
padding-right: 60px;
text-align: center;
}
.socialButton {
text-align: center;
width: 25%;
}
.socialSite {
text-align: center;
width: 75%;
}
a:hover{
transform: scale();
box-shadow: 5px 5px 10px 5px;
color: black;
}
/* Background colors:
#f5d100 = yellow
#f583e1 = pink
#9b81ea = purple
#40e4ea = turqoise
background: linear-gradient(90deg, #f583e1 60%, #40e4ea)
*/