removed font; sorted scss alphabetically

This commit is contained in:
Vrifox 2020-09-29 19:37:50 +02:00
parent 133a7eca33
commit e729d96059
11 changed files with 121 additions and 216 deletions

View file

@ -2,11 +2,21 @@ footer {
background: rgb(30, 30, 45);
color: rgb(200, 200, 230);
margin-top: 100px;
white-space: nowrap;
overflow-x: auto;
overflow-y: hidden;
white-space: nowrap;
&::after {
background: rgb(30, 30, 45);
content: '';
height: 10000px;
overflow: hidden;
position: fixed;
width: 100vw;
}
.container {
display: flex;
align-items: center;
display: flex;
height: 64px;
.website-subnav {
margin-left: auto;
ul {
@ -15,7 +25,7 @@ footer {
}
li {
list-style-type: none;
padding: 10px 0 10px 30px;
padding: 4px 0 4px 30px;
}
a {
color: rgb(200, 200, 230);
@ -23,14 +33,6 @@ footer {
}
}
}
footer::after {
content: '';
background: rgb(30, 30, 45);
position: fixed;
height: 10000px;
width: 100vw;
overflow: hidden;
}
@media (max-width: 600px) {
footer {
@ -42,7 +44,7 @@ footer::after {
}
.website-subnav {
li {
padding: 10px 30px 10px 0;
padding: 4px 30px 4px 0;
}
}
}

View file

@ -1,23 +1,19 @@
* {
box-sizing: border-box;
}
@font-face {
font-family: PoppinsLatin;
src: url(/fonts/PoppinsLatin-Regular.otf);
}
html {
scrollbar-width: thin;
scrollbar-color: rgb(255, 130, 130) rgb(60, 60, 90);
scrollbar-width: thin;
overflow-x: hidden;
overflow-y: scroll;
}
body {
background: rgb(40, 40, 60);
color: rgb(240, 240, 255);
margin: 0;
font-family: PoppinsLatin, Monaco, Lucida Console, monospace;
font-display: block;
display: grid;
font-family: monospace, 'Lucida Console', 'Monaco';
line-height: 1.8;
margin: 0;
}
a {
color: rgb(255, 130, 130);
@ -28,9 +24,9 @@ a {
}
.container {
width: calc(100% - 40px);
max-width: 1140px;
margin: 0 auto;
max-width: 1140px;
width: calc(100% - 40px);
}
main {

View file

@ -1,43 +1,45 @@
nav {
background: rgb(60, 60, 90);
white-space: nowrap;
overflow-x: auto;
overflow-y: hidden;
white-space: nowrap;
.container {
display: flex;
align-items: center;
display: flex;
height: 64px;
.website-name {
a {
color: rgb(245, 245, 245);
text-decoration: none;
padding: 20px 30px;
display: block;
padding: 20px 30px;
text-decoration: none;
transition: background .2s;
}
a:hover {
background: rgb(50, 50, 75);
&:hover {
background: rgb(50, 50, 75);
}
}
}
.website-nav {
margin-left: auto;
ul {
display: flex;
padding: 0;
margin: 0;
padding: 0;
li {
list-style-type: none;
a {
color: rgb(245, 245, 245);
text-decoration: none;
padding: 20px 30px;
display: block;
text-decoration: none;
transition: background .2s;
}
a:hover {
background: rgb(50, 50, 75);
padding: 20px 30px;
&:hover {
background: rgb(50, 50, 75);
}
}
.seperator {
padding: 20px 10px;
display: block;
padding: 20px 10px;
}
}
}