-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
65 lines (60 loc) · 1.38 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
/* Style Settings */
@import url('https://fonts.googleapis.com/css2?family=Raleway&display=swap');
:root {
--bgColor:#FFDFDC;
--accentColor: #2B2929;
--complementColor: #FFFFFF;
--font: 'Raleway', sans-serif;
}
body{
background-color: var(--bgColor);
background-image: url("abstract.png");
background-repeat: no-repeat;
background-size: cover;
margin: 0px;
padding: 0px;
}
#userPhoto{
width: 350px;
height: 350px;
display: block;
margin: 0px auto 0px;
padding: 0px;
border: 1px;
}
#userName{
color: var(--accentColor);
font-size: 1.5rem;
font-weight: 600;
line-height: 1.25;
display: block;
font-family: var(--font);
width: 100%;
text-align: center;
text-transform: uppercase;;
}
#links{
max-width: 500px;
width: auto;
display: block;
margin: 27px auto;
}
.link{
display: block;
background-color: var(--accentColor);
color: var(--bgColor);
font-family: var(--font);
text-align: center;
margin-bottom: 20px;
padding: 17px;
text-decoration: none;
font-size: 1rem;
transition: all .25s cubic-bezier(.08,.59,.29,.99);
border-color: var(--complementColor);
border: 1px;
border-radius: 30px;
}
.link:hover{
background-color: var(--bgColor);
color: var(--accentColor);
}