-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
153 lines (128 loc) · 2.35 KB
/
styles.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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
* {
transition: all 500ms ease;
cursor: crosshair;
}
html body {
font-family: 'Rubik', -apple-system, BlinkMacSystemFont, 'Open Sans', 'Helvetica Neue',
sans-serif;
color: #121314;
}
body {
padding:0;
}
main {
margin: auto;
padding: 10em 0 15em 0;
max-width: 60%;
}
#intro {
font-size: calc(2rem + 0.33vw);
font-weight: 400;
white-space: nowrap;
overflow: hidden;
width: 100%;
animation: type 4s steps(60, end);
}
.cursor {
animation: blink 1s infinite;
color: #98b4d4;
}
.web-dev {
background: linear-gradient(to right, #7facdf, #7fdfa9);
-webkit-text-fill-color: transparent;
-webkit-background-clip: text;
background-clip: transparent;
}
p {
font-size: 1.4em;
font-weight: 300;
box-sizing: border-box;
}
#outside {
padding-bottom: 0.5rem;
}
.resume-button {
display: grid;
margin: auto;
padding: .5rem;
border-radius: 1em;
border: 1px solid #121314;
width: 10rem;
font-family: 'Rubik', -apple-system, BlinkMacSystemFont, 'Open Sans', 'Helvetica Neue',
sans-serif;
font-size: 1.3em;
font-weight: 300;
background-color: #fff;
cursor: pointer;
}
.resume-button:hover {
background-image: linear-gradient(to left, #7fdfa9, #7facdf);
width: 12rem;
color: #fff;
}
.resume-link {
text-decoration: none;
}
.fa {
padding: 8px;
font-size: 1.2rem;
width: 1.4rem;
text-align: center;
text-decoration: none;
border: 1px solid #121314;
border-radius: 50%;
opacity: 85%;
transition:all .25s ease;
}
.fa:hover {
padding: 14px 14px 14px 14px;
width: 1.45rem;
cursor: pointer;
}
.fa-envelope {
color: #7fbfdf;
}
.fa-linkedin {
color: rgb(127, 201, 223);
}
.fa-instagram {
color: #7fdfd6;
}
.fa-github {
color: #7fdfa9;
}
.sm-link {
padding-top: 1.5rem;
gap: 2rem;
display:flex;
justify-content:center;
}
.color-change {
animation: hue-shift 4s infinite alternate;
}
@keyframes type {
from {
width: 0;
}
}
@keyframes hue-shift {
from {
filter: hue-rotate(0);
} to {
filter: hue-rotate(90deg);
}
}
@media (max-width: 768px) {
main {
padding: 20px;
max-width: 100%;
}
.intro {
font-size: 25px;
}
}
@media (max-width: 300px) {
.sm-link {
display:grid;
}
}