-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
102 lines (91 loc) · 2.17 KB
/
Copy pathstyle.css
File metadata and controls
102 lines (91 loc) · 2.17 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
/* Style Settings */
@import url('https://fonts.googleapis.com/css2?family=Ubuntu&display=swa');
:root {
--accentColor: #35363a;
--font: 'Ubuntu', sans-serif;
font-display: swap;
}
body {
background-color: #161616;
}
#userPhoto{
width: 96px;
height: 96px;
display: block;
margin: 35px auto 20px;
border-radius: 50%;
-webkit-box-shadow: 1px 0px 48px -11px rgba(0,0,0,0.22);
-moz-box-shadow: 1px 0px 48px -11px rgba(0,0,0,0.22);
box-shadow: 1px 0px 48px -11px rgba(0,0,0,0.22);
}
#userName{
color: rgb(255, 255, 255);
font-size: 2rem;
font-weight: 200;
line-height: 1.25;
margin-bottom: 4rem;
display: block;
font-family: var(--font);
width: auto;
text-align: center;
text-decoration: none;
}
.footer{
color: rgba(255, 255, 255, 0.705);
transition: 0.5s;
font-size: 1.2rem;
font-weight: 200;
line-height: 1.25;
display: block;
font-family: var(--font);
width: 100%;
text-align: center;
text-decoration: none;
margin-top: 50px;
margin-bottom: 75px;
}
.footer:hover{
color: rgb(255, 255, 255);
transition: 0.5s;
}
#links{
max-width: 675px;
width: auto;
display: block;
margin: 27px auto;
}
.link{
display: block;
background-color: #2c2c2c;
color: #a2a2a2;
font-family: var(--font);
border-radius: 40px;
text-align: center;
margin-bottom: 20px;
padding: 17px;
text-decoration: none;
font-size: 1.5rem;
transition: all .25s cubic-bezier(.08,.59,.29,.99);
transition: box-shadow .5s;
}
.link:hover{
background-color: #363636;
transition: .5s;
color: #ffffff;
box-shadow: 0 0 31px rgba(0, 0, 0, 0.247);
font-weight: 100;
}
/* Colors for social links*/
.hvr-grow {
-webkit-transform: perspective(1px) translateZ(0);
transform: perspective(1px) translateZ(0);
box-shadow: 0 0 1px rgba(0, 0, 0, 0);
-webkit-transition-duration: 0.3s;
transition-duration: 0.3s;
-webkit-transition-property: transform;
transition-property: transform;
}
.hvr-grow:hover, .hvr-grow:focus, .hvr-grow:active {
-webkit-transform: scale(1.02);
transform: scale(1.02);
}