-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathscript.cc5eea7c.css
More file actions
203 lines (190 loc) · 4.71 KB
/
Copy pathscript.cc5eea7c.css
File metadata and controls
203 lines (190 loc) · 4.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
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
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
@import url("https://fonts.googleapis.com/css?family=Montserrat:400,900|Permanent+Marker");
header {
text-align: center;
font-weight: 900;
font-size: 3em; }
header .header-block {
height: 100vh;
width: 100%;
display: flex;
flex-direction: column;
justify-content: space-evenly;
background: linear-gradient(rgba(186, 112, 154, 0.45), rgba(186, 112, 154, 0.45)), url("coffeeshop_s2.26c8eaa4.jpg");
background-size: cover;
background-repeat: no-repeat;
background-color: #D0719D;
position: relative; }
header .header-block h1, header .header-block h3, header .header-block a {
background: none;
color: white;
font-family: "Permanent Marker", cursive;
text-decoration: none; }
header .header-block a {
animation: hover 1s ease-in-out infinite;
position: absolute;
left: 50vw;
bottom: 10vh; }
header nav {
max-width: 100%;
margin-bottom: 25px; }
header nav ul {
display: flex;
justify-content: space-evenly;
margin-top: 25px; }
header nav ul a {
list-style: none;
text-decoration: none; }
header nav ul li:hover {
color: white; }
@keyframes hover {
0%, 100% {
bottom: 10vh; }
50% {
bottom: 12vh; } }
@keyframes mhover {
0%, 100% {
bottom: 10px; }
50% {
bottom: 20px; } }
@media only screen and (max-width: 600px) {
#arrow {
bottom: 10px;
animation: mhover 1s ease-in-out infinite; }
header nav ul {
display: block; }
header nav ul li {
margin-bottom: 1vh; } }
.bio-block {
text-align: center;
border-top: 10px solid #293563;
width: 80vw;
margin: 0 auto; }
.bio-block h2, .bio-block h3 {
margin-bottom: 5vh; }
.bio-block h2 {
margin-top: 5vh; }
.bio-block h3 {
font-size: 1.2em; }
.bio-block .icons {
display: flex;
justify-content: space-evenly;
margin-bottom: 50px; }
.bio-block .icons .icon {
display: block;
border: 5px solid #293563;
border-radius: 7px;
background: #293563; }
.bio-block .icons .icon svg {
margin: 0 10px;
width: 150px;
fill: #D0719D;
background: #293563; }
.bio-block .icons .icon figcaption {
font-weight: bold;
margin-bottom: 10px;
background: #293563;
color: #D0719D; }
.bio-block p {
margin: 2vh auto;
font-size: 1.2em;
text-align: left; }
@media only screen and (max-width: 700px) {
.bio-block p {
font-size: 2em; }
.bio-block .icons {
display: block; }
.bio-block .icons .icon {
margin: 5vh auto;
width: 50%;
min-width: 155px; }
.bio-block .icons .icon svg {
width: 135px; } }
.contact-block {
margin: 0 auto;
width: 80vw;
border-top: 10px solid #293563;
margin-top: 25px;
display: flex;
flex-direction: column;
justify-content: space-around;
text-align: center;
max-width: 100%; }
.contact-block h2 {
margin-top: 2vh;
margin-bottom: 5vh; }
.contact-block .logos {
display: flex;
justify-content: space-evenly; }
.contact-block .logo {
width: 120px;
height: 120px;
fill: #293563; }
.contact-block #linkedin {
background: #293563;
fill: #D0719D;
border-radius: 10px; }
@media only screen and (max-width: 600px) {
.contact-block {
display: block; }
.contact-block .logos {
display: block; }
.contact-block .logos * {
display: block;
margin: 0 auto; }
.contact-block .logos #octo {
margin-bottom: 2vh; } }
.portfolio-block {
display: flex;
flex-direction: column;
margin: 0 auto;
text-align: center;
margin-top: 25px;
border-top: 10px solid #293563;
width: 80vw; }
.portfolio-block h2 {
margin-top: 2vh;
margin-bottom: 2vh; }
.portfolio-block figure {
padding-bottom: 25px;
margin-bottom: 25px;
border-bottom: 3px solid #293563; }
.portfolio-block figure h3 {
margin-bottom: 1vh; }
.portfolio-block figure img {
width: 450px;
max-width: 100%;
margin-bottom: 1vh; }
.portfolio-block figure:last-child {
border-bottom: none; }
footer {
height: 6vh;
width: 100%;
display: flex;
justify-content: space-between;
align-items: center;
background: #293563; }
footer * {
background: #293563;
color: #D0719D; }
@media only screen and (max-width: 600px) {
footer {
display: block;
text-align: center;
height: 10vh; }
footer * {
margin: 1vh auto; }
footer p {
padding-top: 1vh; } }
* {
margin: 0;
padding: 0;
background: #D0719D;
color: #293563;
font-family: "Montserrat", "Helvetica", sans-serif;
font-size: 1em;
scroll-behavior: smooth; }
html, body {
width: 100%;
height: 100%; }
h2 {
font-size: 2em; }