Skip to content

Commit f3df32d

Browse files
committed
removed net neutrality
1 parent d9cf4e0 commit f3df32d

File tree

7 files changed

+138
-215
lines changed

7 files changed

+138
-215
lines changed

css/crumple.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -358,8 +358,8 @@
358358
}
359359
.footer > a:nth-child(2n):hover~.crumple {
360360
background: #ee5c87; /* fallback for old browsers */
361-
background: -webkit-linear-gradient(45deg, #f598a8, #f6edb2); /* Chrome 10-25, Safari 5.1-6 */
362-
background: linear-gradient(45deg, #f598a8, #f6edb2);
361+
background: -webkit-linear-gradient(45deg, #66CDAA, #20B2AA); /* Chrome 10-25, Safari 5.1-6 */
362+
background: linear-gradient(45deg, #66CDAA, #20B2AA);
363363
background-size: 400% 400%;
364364
}
365365
.footer > a:hover~.crumple {

css/font.css

Lines changed: 13 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,13 @@ h1 {
1919
.bio {
2020
font-size: 2.5vw;
2121
}
22-
.list__item > p {
23-
font-size: 1.25em;
22+
23+
.menu {
24+
font-family: "Trebuchet MS", Helvetica, sans-serif;
25+
letter-spacing: 2px;
26+
font-size: 3vw;
2427
}
28+
2529
.footer > a {
2630
line-height: 1;
2731
font-size: 1.4em;
@@ -30,7 +34,7 @@ a, .footer > a {
3034
border-bottom: 1px solid #f8f8f6;
3135
color: inherit;
3236
font-weight: normal;
33-
text-decoration: none
37+
text-decoration: none;
3438
}
3539
a {
3640
font-family: monospace;
@@ -70,3 +74,9 @@ a:focus, a:hover {
7074
font-weight: bold;
7175

7276
}
77+
78+
/*
79+
.list__item > p {
80+
font-size: 1.25em;
81+
}
82+
*/

css/main.css

Lines changed: 53 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,39 +1,63 @@
11
body {
22
margin: 0;
3-
padding: 5vh 0 5vw 5vw;
43
background-color: #222;
54
-webkit-font-smoothing: antialiased;
65
-moz-osx-font-smoothing: grayscale;
76
display: block;
87
}
98
section {
109
z-index: 1;
11-
width: calc(100vw - 20em);
1210
position: relative;
1311
display: flex;
1412
flex-direction: column;
1513
justify-content: space-between;
14+
min-height: 100vh;
1615
}
1716
.hero {
18-
height: calc(100vh - 2em);
17+
width: calc(100vw - 20em);
18+
padding-top: 5vh;
19+
padding-left: 6vw;
1920
}
2021
.bio {
21-
margin-bottom: 2.5em;
22+
padding-bottom: 10vh;
2223
max-width: 70vw;
2324
}
24-
.writing {
25-
max-width: 70vw;
25+
26+
.menu {
27+
display: flex;
28+
flex-wrap: wrap;
29+
flex-direction: row;
30+
height: calc(100vh - 2.1em);
31+
max-height: calc(100vh - 2.1em);
32+
min-height: calc(100vh - 2.1em);
2633
}
27-
.list {
28-
margin: 0;
34+
.menu > div {
35+
display: flex;
36+
flex-basis: calc(50% - 40px);
37+
justify-content: center;
38+
flex-direction: row;
39+
margin: 20px;
40+
background: #282C34;
2941
}
30-
.list__item {
31-
margin: 0;
32-
margin-bottom: 2em;
42+
.menu > div:nth-child(1) {
43+
background:tomato;
3344
}
34-
.list__item > p {
35-
margin: 1em 0;
45+
.menu > div:nth-child(2) {
46+
background: lightsalmon;
47+
}
48+
.menu > div:nth-child(3) {
49+
background: plum;
50+
}
51+
.menu > div:nth-child(4) {
52+
background: mediumslateblue;
53+
}
54+
55+
.menu > div > div {
56+
display: flex;
57+
flex-direction: column;
58+
justify-content: center;
3659
}
60+
3761
.footer {
3862
position: fixed;
3963
right: 5em;
@@ -45,8 +69,23 @@ section {
4569

4670
}
4771
.footer > a {
48-
margin-top: 0.7em;
72+
padding-top: 0.7em;
4973
}
5074
a {
5175
position: relative;
5276
}
77+
/*
78+
.writing {
79+
max-width: 70vw;
80+
}
81+
.list {
82+
margin: 0;
83+
}
84+
.list__item {
85+
margin: 0;
86+
margin-bottom: 2em;
87+
}
88+
.list__item > p {
89+
margin: 1em 0;
90+
}
91+
*/

css/mobile.css

Lines changed: 25 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
@media (max-width:850px) {
1+
@media only screen and (max-width:850px) {
22
body {
33
padding: 7.5vw;
44
flex-flow: column wrap;
@@ -12,10 +12,10 @@
1212
padding-bottom: 2em;
1313
}
1414
.list {
15-
margin-top: 1em;
15+
margin-top: 1em;
1616
}
1717
section {
18-
padding: 7.5vw;
18+
/* padding: 7.5vw; */
1919
width: 100%;
2020
display: table-row;
2121
height:auto;
@@ -27,9 +27,31 @@
2727
-webkit-box-align: start;
2828
align-items: flex-start
2929
}
30+
.menu {
31+
flex-direction: column;
32+
font-size: 1.5em;
33+
height: 100vh;
34+
justify-content: space-around;
35+
}
36+
.menu > div {
37+
flex-basis: auto;
38+
margin: 0;
39+
padding: 1em;
40+
}
41+
.menu > div > div {
42+
flex-basis: auto;
43+
}
3044
.footer {
45+
display: flex;
3146
position: inherit;
3247
align-items: flex-start;
48+
flex-direction: column;
49+
justify-content: flex-end;
50+
padding: 0;
51+
}
52+
.footer > a {
53+
position: relative;
54+
padding-top: 0.7em;
3355
}
3456
}
3557
@media (min-width:1080px) {

css/netneutrality.css

Lines changed: 0 additions & 155 deletions
This file was deleted.

0 commit comments

Comments
 (0)