-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathstyle.css
120 lines (97 loc) · 2.32 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
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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
html {
height: 100%;
}
body {
padding: 2rem;
font-family: "Rubik", sans-serif;
background-color: #f6f6f6;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%25' height='100%25' viewBox='0 0 1600 800'%3E%3Cg %3E%3Cpolygon fill='%23eaf0f1' points='800 100 0 200 0 800 1600 800 1600 200'/%3E%3Cpolygon fill='%23dfebec' points='800 200 0 400 0 800 1600 800 1600 400'/%3E%3Cpolygon fill='%23d3e5e7' points='800 300 0 600 0 800 1600 800 1600 600'/%3E%3Cpolygon fill='%23c8e0e3' points='1600 800 800 400 0 800'/%3E%3Cpolygon fill='%23bcdade' points='1280 800 800 500 320 800'/%3E%3Cpolygon fill='%23b1d5d9' points='533.3 800 1066.7 800 800 600'/%3E%3Cpolygon fill='%23a5cfd4' points='684.1 800 914.3 800 800 700'/%3E%3C/g%3E%3C/svg%3E");
/* background by SVGBackgrounds.com */
background-attachment: fixed;
background-size: cover;
background-position: center;
color: #181d25;
min-height: 100%;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
img {
width: 120px;
height: 120px;
border-radius: 50%;
margin-bottom: 2.5rem;
border: 3px solid #f6f6f6;
box-shadow: 0px 16px 40px rgba(63, 191, 191, 0.8);
box-sizing: content-box;
}
header {
margin-bottom: 3rem;
text-align: center;
}
header p {
font-weight: 300;
font-size: 1.25rem;
margin-bottom: 0.25rem;
color: #525252;
}
header h1 {
font-weight: 700;
font-size: 2rem;
line-height: 85%;
}
nav {
width: 100%;
display: block;
max-width: 380px;
}
ul {
margin: 0;
padding: 0;
list-style: none;
}
a {
display: flex;
justify-content: center;
align-items: center;
flex-wrap: wrap;
padding: 0.75rem;
margin-bottom: 1rem;
border-radius: 8px;
text-align: center;
text-decoration: none;
font-weight: 500;
font-size: 1.25rem;
color: #fff;
box-shadow: 0px 0.5rem 1.5rem -0.25rem var(--link-color);
background-color: var(--link-color);
transition: box-shadow 0.5s;
}
a:hover {
box-shadow: 0px 0.5rem 1.5rem 0rem var(--link-color);
}
i {
margin-right: 0.5rem;
font-size: 1.5rem;
}
#linkedin {
--link-color: #0e76a8;
}
#github {
--link-color: #24292e;
}
#instagram {
--link-color: #e1206c;
}
#portfolio {
--link-color: #673ab7;
}
#blog {
--link-color: #673ab7;
}