-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
104 lines (104 loc) · 1.71 KB
/
index.css
File metadata and controls
104 lines (104 loc) · 1.71 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
103
104
.hi {
font-weight: 500;
font-size: 64px;
animation: show 0.8s;
}
.basics {
margin-top: 10px;
font-weight: 500;
font-size: 40px;
max-width: 710px;
animation: show 1.2s;
}
.teaser:first-child {
margin-top: 40px;
}
.socials {
display: flex;
align-items: center;
column-gap: 20px;
}
.link {
margin: 20px 0;
display: flex;
column-gap: 8px;
background-color: var(--white);
align-items: center;
padding: 10px 30px 10px 10px;
border-radius: 1000px;
box-shadow: 0 4px 4px -4px rgba(12, 12, 13, 0.05),
0 16px 32px -4px rgba(12, 12, 13, 0.1);
transition: 0.2s;
}
.link:hover {
scale: 1.05;
transform: rotate(7deg);
}
.link:active {
scale: 0.95;
}
.skill {
font-size: 32px;
font-weight: 500;
animation: show 1s;
}
.text {
display: flex;
align-items: center;
column-gap: 10px;
}
.stack {
font-size: 20px;
margin-top: 8px;
color: var(--grey);
animation: show 2s;
}
.line_container {
margin-top: 8px;
width: 100%;
max-width: 300px;
height: 8px;
border-radius: 1000px;
border: 1px solid var(--grey);
margin-bottom: 30px;
}
.line {
height: 100%;
border-radius: 1000px;
max-width: var(--width);
animation: growWidth 1s ease;
}
@keyframes growWidth {
from {
width: 0px;
}
to {
width: var(--width);
}
}
@media (max-width: 700px) {
.teaser {
margin-top: 20px;
}
.hi {
margin-top: -10px;
font-size: 48px;
}
.basics {
font-size: 24px;
}
}
.blog-link {
align-self: normal;
width: 100%;
max-width: 400px;
margin: 20px auto;
border: 2px solid var(--black);
background-color: var(--background-color);
color: var(--black);
margin-bottom: 20px;
}
.blog-link:hover {
background-color: var(--black);
color: var(--white);
}