removed resources directory (not source code) and added it to .gitignore; moved scss files one level up

This commit is contained in:
Vrifox 2020-09-22 15:35:44 +02:00
parent 6cf10d85cd
commit 24f0f9dc20
36 changed files with 7 additions and 1416 deletions

View file

@ -1,65 +0,0 @@
@import '../partials/main';
@import '../partials/nav';
@import '../partials/footer';
header {
text-align: center;
margin: 100px 0;
h1 {
font-size: 2em;
}
}
.section-articles {
margin: 20px 0;
display: grid;
grid-template-columns: repeat(2, 1fr);
grid-gap: 1rem;
a {
color: rgb(255, 255, 255);
text-decoration: none;
}
article {
background: rgb(60, 60, 90);
color: rgb(255, 255, 255);
padding: 20px;
border-radius: 5px;
display: flex;
flex-flow: column;
height: max-content;
transition: background .2s;
img {
order: -1;
max-width: calc(100% + 40px);
border-radius: 5px;
margin: -20px -20px 20px -20px;
background: rgb(80, 80, 120);
object-fit: cover;
max-height: 250px;
}
h1 {
margin-top: 0px;
}
a {
color: rgb(255, 255, 255);
}
a:hover {
text-decoration: underline;
}
.meta {
margin: 0;
}
.author {
font-style: italic;
color: rgb(200, 200, 230);
}
}
article:hover {
background: rgb(70, 70, 105);
}
}
@media (max-width: 600px) {
.section-articles {
grid-template-columns: repeat(1, 1fr);
}
}

View file

@ -1,91 +0,0 @@
@import '../partials/main';
@import '../partials/nav';
.section-article {
article {
max-width: 720px;
margin: 80px auto;
.meta {
color: rgb(180, 180, 220);
}
.title {
font-size: 2em;
margin-top: 20px;
}
img {
max-width: 100%;
margin-bottom: 15px;
border-radius: 5px;
}
a {
color: rgb(255, 130, 130);
transition: background .2s, color .2s;
margin: -5px -10px;
padding: 5px 10px;
border-radius: 5px;
}
a:hover {
background: rgb(255, 130, 130);
color: rgb(255, 240, 240);
text-decoration: none;
}
aside {
margin-top: 80px;
.tags {
display: flex;
list-style: none;
margin-left: -10px;
padding: 0;
li {
background: rgb(60, 60, 90);
padding: 5px 10px;
border-radius: 5px;
margin-left: 10px;
a {
color: rgb(180, 180, 220);
}
a:hover {
background: rgb(70, 70, 105);
}
}
}
}
}
}
.section-articles {
margin: 20px auto -50px auto;
display: grid;
grid-template-columns: repeat(2, 1fr);
grid-gap: 1rem;
max-width: 720px;
article {
color: rgb(255, 255, 255);
margin: 20px 0;
border-radius: 5px;
display: flex;
flex-flow: column;
height: max-content;
transition: background .2s;
a {
margin: 10px 0;
}
a:hover {
text-decoration: underline;
}
}
.previous-article {
text-align: right;
}
}
.section-articles::after {
content: '';
position: absolute;
width: 100vw;
background: rgb(50, 50, 75);
height: 230px;
left: 0;
z-index: -10;
}
@import '../partials/footer';

View file

@ -1,12 +0,0 @@
@import 'partials/main';
@import 'partials/nav';
header {
text-align: center;
margin: 150px 0;
h1 {
font-size: 2em;
}
}
@import 'partials/footer';

View file

@ -1,117 +0,0 @@
@import 'partials/main';
@import 'partials/nav';
header {
text-align: center;
margin: 150px 0;
h1 {
font-size: 2em;
}
}
.section-articles {
margin: 20px 0;
display: grid;
grid-template-columns: repeat(2, 1fr);
grid-gap: 1rem;
a {
color: rgb(255, 255, 255);
text-decoration: none;
}
article {
background: rgb(60, 60, 90);
color: rgb(255, 255, 255);
padding: 20px;
border-radius: 5px;
display: grid;
height: max-content;
grid-template-columns: 120px 1fr;
grid-template-areas: "img h1"
"img p";
transition: background .2s;
img {
object-fit: cover;
height: 180px;
width: 120px;
border-radius: 5px;
border: 0px solid rgb(40, 40, 60);
grid-area: img;
margin: -20px;
}
h1 {
margin: 0px;
grid-area: h1;
}
.meta {
margin: 0;
grid-area: p;
}
.author {
font-style: italic;
color: rgb(200, 200, 230);
}
}
article:hover {
background: rgb(70, 70, 105);
}
}
@media (max-width: 900px) {
.section-articles {
grid-template-columns: repeat(1, 1fr);
}
}
.section-projects {
margin: 20px 0;
display: grid;
grid-template-columns: repeat(3, 1fr);
grid-gap: 1rem;
a {
color: rgb(255, 255, 255);
text-decoration: none;
}
article {
background: rgb(60, 60, 90);
color: rgb(255, 255, 255);
padding: 20px;
border-radius: 5px;
display: flex;
flex-flow: column;
height: max-content;
transition: background .2s;
img {
order: -1;
max-width: calc(100% + 40px);
border-radius: 5px;
margin: -20px -20px 20px -20px;
background: rgb(80, 80, 120);
object-fit: cover;
max-height: 170px;
}
h1 {
margin-top: 0;
}
.meta {
margin: 0;
}
.status {
font-style: italic;
color: rgb(200, 200, 230);
}
}
article:hover {
background: rgb(70, 70, 105);
}
}
@media (max-width: 900px) {
.section-projects {
grid-template-columns: repeat(2, 1fr);
}
}
@media (max-width: 600px) {
.section-projects {
grid-template-columns: repeat(1, 1fr);
}
}
@import 'partials/footer';

View file

@ -1,50 +0,0 @@
footer {
background: rgb(30, 30, 45);
color: rgb(200, 200, 230);
margin-top: 100px;
white-space: nowrap;
overflow-x: auto;
.container {
display: flex;
align-items: center;
.website-subnav {
margin-left: auto;
ul {
display: flex;
padding: 0;
}
li {
list-style-type: none;
padding: 10px 0 10px 30px;
}
a {
color: rgb(200, 200, 230);
}
}
}
}
footer::after {
content: '';
background: rgb(30, 30, 45);
position: fixed;
height: 10000px;
width: 100vw;
overflow: hidden;
}
@media (max-width: 600px) {
footer {
.container {
max-width: none;
.website-version {
order: 2;
padding: 10px 20px;
}
.website-subnav {
li {
padding: 10px 30px 10px 0;
}
}
}
}
}

View file

@ -1,37 +0,0 @@
* {
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);
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;
display: grid;
}
a {
color: rgb(255, 130, 130);
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
.container {
width: calc(100% - 40px);
max-width: 1140px;
margin: 0 auto;
}
main {
width: 100vw;
}

View file

@ -1,44 +0,0 @@
nav {
background: rgb(60, 60, 90);
white-space: nowrap;
overflow-x: auto;
.container {
display: flex;
align-items: center;
.website-name {
a {
color: rgb(245, 245, 245);
text-decoration: none;
background: rgb(255, 130, 130);
padding: 5px 10px;
border-radius: 20px;
text-shadow: rgb(255, 100, 100) 2px 2px;
}
}
.website-nav {
margin-left: auto;
ul {
display: flex;
padding: 0;
}
li {
list-style-type: none;
padding: 10px 0 10px 30px;
}
a {
color: rgb(245, 245, 245);
text-decoration: none;
}
}
}
}
@media (max-width: 600px) {
nav {
.container {
max-width: none;
.website-nav {
padding: 0 20px;
}
}
}
}

View file

@ -1,66 +0,0 @@
@import '../partials/main';
@import '../partials/nav';
header {
text-align: center;
margin: 100px 0;
h1 {
font-size: 2em;
}
}
.section-articles {
margin: 20px 0;
display: grid;
grid-template-columns: repeat(3, 1fr);
grid-gap: 1rem;
a {
color: rgb(255, 255, 255);
text-decoration: none;
}
article {
background: rgb(60, 60, 90);
color: rgb(255, 255, 255);
padding: 20px;
border-radius: 5px;
display: flex;
flex-flow: column;
max-width: 562px;
height: max-content;
transition: background .2s;
img {
order: -1;
max-width: calc(100% + 40px);
border-radius: 5px;
margin: -20px -20px 20px -20px;
background: rgb(80, 80, 120);
object-fit: cover;
max-height: 170px;
}
h1 {
margin-top: 0;
}
p {
margin: 0;
}
.status {
font-style: italic;
color: rgb(200, 200, 230);
}
}
article:hover {
background: rgb(70, 70, 105);
}
}
@media (max-width: 900px) {
.section-articles {
grid-template-columns: repeat(2, 1fr);
}
}
@media (max-width: 600px) {
.section-articles {
grid-template-columns: repeat(1, 1fr);
}
}
@import '../partials/footer';