Skip to content

Commit 6df5a85

Browse files
committed
organizing fonts, changing color
1 parent 587bac1 commit 6df5a85

40 files changed

+89
-1580
lines changed

assets/bio.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
This once was a professional site, made with little passion or purpose. <br>
1+
This once was a professional site, made with little passion or purpose.
22
I still am a software developer, nevertheless I've never enjoyed self promotion or praise.
33
I'm no one special, I'm no one unique, still I felt intrigued to express a piece of me
44
to the abyss of the Internet. Thank you for giving this place your time, and know that this is not a platform or a showcase, it is my

assets/fonts/34C3A6_0_0.ttf

-154 KB
Binary file not shown.

css/crumple.css

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -351,10 +351,14 @@
351351

352352
@media (hover: hover) {
353353
.footer > a:nth-child(odd):hover~.crumple {
354-
background: linear-gradient(45deg, #69b7eb, #b3dbd3, #f4d6db);
354+
background: #6190e8; /* fallback for old browsers */
355+
background: -webkit-linear-gradient(to top, #6190e8, #a7bfe8); /* Chrome 10-25, Safari 5.1-6 */
356+
background: linear-gradient(to top, #6190e8, #a7bfe8);
355357
background-size: 400% 400%;
356358
}
357359
.footer > a:nth-child(2n):hover~.crumple {
360+
background: #ee5c87; /* fallback for old browsers */
361+
background: -webkit-linear-gradient(to top, #ee5c87, #d587b3); /* Chrome 10-25, Safari 5.1-6 */
358362
background: linear-gradient(90deg, #ee5c87, #f1a4b5, #d587b3);
359363
background-size: 400% 400%;
360364
}

css/font.css

Lines changed: 63 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,63 @@
1+
body {
2+
font-family: 'Roboto Slab', serif;
3+
line-height: 1.5;
4+
color: #f8f8f6;
5+
}
6+
h1, dt, .footer > a {
7+
font-family: "Trebuchet MS", Helvetica, sans-serif;
8+
letter-spacing: 2px;
9+
}
10+
dt {
11+
font-size: 1.25em;
12+
font-weight: bold;
13+
}
14+
h1 {
15+
font-size: 3vw;
16+
letter-spacing: 4px;
17+
font-weight: normal;
18+
}
19+
.bio {
20+
font-size: 2.5vw;
21+
}
22+
.list__item > p {
23+
font-size: 1.25em;
24+
}
25+
.footer > a {
26+
line-height: 1;
27+
font-size: 1.4em;
28+
}
29+
a, .footer > a {
30+
border-bottom: 1px solid #f8f8f6;
31+
color: inherit;
32+
text-decoration: none
33+
}
34+
a {
35+
font-family: monospace;
36+
}
37+
a:focus, a:hover {
38+
color: #3d6eff;
39+
border-bottom: 1px solid #3d6eff
40+
}
41+
42+
@media (max-width:800px) {
43+
h1 {
44+
line-height: 1em;
45+
font-size: 2em;
46+
}
47+
.bio {
48+
font-size: 1.5em;
49+
}
50+
.footer > a {
51+
border: none;
52+
text-decoration: underline;
53+
}
54+
}
55+
56+
@media (min-width:1080px) {
57+
.bio {
58+
font-size:2em;
59+
}
60+
h1 {
61+
font-size: 2.5em;
62+
}
63+
}

css/mobile.css

Lines changed: 14 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,4 @@
11
@media (max-width:800px) {
2-
h1 {
3-
line-height: 1em;
4-
font-size: 1.5em
5-
}
62
body {
73
padding: 1em 1em 1em 2em;
84
flex-flow: column wrap;
@@ -11,13 +7,12 @@
117
height: auto;
128
}
139
.bio {
14-
font-size: 6vw;
1510
margin: 0;
1611
min-width: 80vw;
1712
}
18-
.list {
19-
margin-top: 1em;
20-
}
13+
.list {
14+
margin-top: 1em;
15+
}
2116
section {
2217
padding: 7.5vw;
2318
width: 100%;
@@ -35,8 +30,16 @@
3530
position: inherit;
3631
align-items: flex-start;
3732
}
38-
.footer > a {
39-
border: none;
40-
text-decoration: underline;
33+
}
34+
@media (min-width:1080px) {
35+
.bio {
36+
max-width: 1100px;
37+
}
38+
.writing {
39+
max-width: 750px;
40+
}
41+
.footer {
42+
right: 3em;
43+
bottom: 5em;
4144
}
4245
}

css/styles.css

Lines changed: 0 additions & 44 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,10 @@
11
body {
22
margin: 0;
33
padding: 5vh 0 3vw 3vw;
4-
line-height: 1.5;
5-
font-family: monospace;
6-
color: #f8f8f6;
74
background-color: #222;
85
-webkit-font-smoothing: antialiased;
96
-moz-osx-font-smoothing: grayscale;
107
display: block;
11-
}
12-
h1, dt {
13-
font-family: "Helvetica Neue", sans-serif;
14-
font-weight: bold;
15-
letter-spacing: .03em;
16-
}
17-
dt {
18-
font-size: 1.25em;
19-
}
20-
h1 {
21-
font-size: 2vw;
22-
}
23-
.main-section {
24-
258
}
269
section {
2710
z-index: 1;
@@ -36,22 +19,11 @@ section {
3619
}
3720
.bio {
3821
margin-bottom: 2.5em;
39-
font-size: 3vw;
4022
max-width: 70vw;
41-
font-family: serif;
4223
}
4324
.writing {
4425
max-width: 70vw;
4526
}
46-
@media (min-width:1080px) {
47-
.bio {
48-
font-size:2.5em;
49-
max-width: 1100px;
50-
}
51-
.writing {
52-
max-width: 750px;
53-
}
54-
}
5527
.list {
5628
margin: 0;
5729
}
@@ -61,7 +33,6 @@ section {
6133
}
6234
.list__item > p {
6335
margin: 1em 0;
64-
font-size: 1.5em;
6536
}
6637
.footer {
6738
position: fixed;
@@ -73,24 +44,9 @@ section {
7344
align-items: flex-end;
7445

7546
}
76-
@media (max-width:1080px) {
77-
.footer {
78-
right: 3em;
79-
bottom: 5em;
80-
}
81-
}
8247
.footer > a {
8348
margin-top: 1em;
84-
line-height: 1;
85-
font-size: 1.4em;
8649
}
8750
a {
8851
position: relative;
89-
border-bottom: 1px solid #f8f8f6;
90-
color: inherit;
91-
text-decoration: none
92-
}
93-
a:focus, a:hover {
94-
color: #3d6eff;
95-
border-bottom: 1px solid #3d6eff
9652
}
-1.28 MB
Binary file not shown.
-1.49 MB
Binary file not shown.

0 commit comments

Comments
 (0)