-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmain.css
118 lines (100 loc) · 1.78 KB
/
main.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
:root {
--accent-color: #569571;
--background-color: #ffffff;
--circle-color: #5eccc7;
--divider-color: #dadada;
--text-color: #2a2a2a;
}
html {
height: 100%;
}
body {
align-items: center;
background: var(--background-color);
color: var(--text-color);
display: flex;
flex-wrap: wrap;
font-family: 'Bitter';
font-size: 16px;
line-height: 1.6;
letter-spacing: .4px;
height: 100%;
margin: 0;
overflow-y: scroll;
justify-content: center;
text-rendering: optimizeLegibility;
}
figure, svg {
overflow: visible;
}
@keyframes grow {
from {
transform: scale(.5, .5);
opacity: .3;
stroke: var(--circle-color);
}
to {
transform: scale(2.5, 2.5);
opacity: 0;
stroke: var(--accent-color);
}
}
circle {
animation: grow 7s alternate infinite cubic-bezier(.25, .08, .92, .5);
fill: transparent;
stroke-width: 4;
stroke: var(--circle-color);
transform-origin: center center;
}
circle:nth-child(1) {
animation-delay: -1s;
}
circle:nth-child(2) {
animation-delay: -4s;
}
circle:nth-child(3) {
animation-delay: -7s;
}
circle:nth-child(4) {
animation-delay: -9s;
}
circle:nth-child(5) {
animation-delay: -6s;
}
main {
padding: 40px;
width: 420px;
max-width: 95vw;
}
a {
color: var(--accent-color);
font-weight: 600;
text-decoration: none;
}
a:hover {
border-bottom: 1px solid var(--accent-color);
filter: brightness(60%);
}
h1 {
letter-spacing: 1px;
margin-top: 0;
padding-left: 2px;
}
.actions-container {
align-items: center;
border-top: 1px solid var(--divider-color);
display: flex;
justify-content: space-between;
padding-top: 20px;
margin-top: 2em;
}
.icons a {
border-bottom: 0;
margin-right: 10px;
font-size: 20px;
padding: 5px;
text-align: center;
}
.resume a {
font-size: .8em;
}