removed resources directory (not source code) and added it to .gitignore; moved scss files one level up
This commit is contained in:
parent
6cf10d85cd
commit
24f0f9dc20
36 changed files with 7 additions and 1416 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -1,6 +1,7 @@
|
|||
/content/*
|
||||
/static/upload/*
|
||||
/public/*
|
||||
/resources/*
|
||||
|
||||
deploy
|
||||
git-deploy
|
||||
|
|
|
@ -2,8 +2,6 @@ baseURL: https://vrifox.cc/
|
|||
languageCode: en-us
|
||||
title: vrifox.cc
|
||||
enableRobotsTXT: true
|
||||
params:
|
||||
version: 2020-09-22
|
||||
menu:
|
||||
main:
|
||||
- identifier: blog
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
{{ define "stylesheet" }}{{ $scss := resources.Get "scss/_default/list.scss" }}{{ $style := $scss | resources.ToCSS }}
|
||||
{{ define "stylesheet" }}{{ $scss := resources.Get "/_default/list.scss" }}{{ $style := $scss | resources.ToCSS }}
|
||||
<link rel="stylesheet" href="{{ $style.Permalink }}" type="text/css" media="screen" />
|
||||
{{ end }}
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
{{ define "stylesheet" }}{{ $scss := resources.Get "scss/_default/single.scss" }}{{ $style := $scss | resources.ToCSS }}
|
||||
{{ define "stylesheet" }}{{ $scss := resources.Get "/_default/single.scss" }}{{ $style := $scss | resources.ToCSS }}
|
||||
<link rel="stylesheet" href="{{ $style.Permalink }}" type="text/css" media="screen" />
|
||||
{{ end }}
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
{{ define "stylesheet" }}{{ $sass := resources.Get "scss/errorpages.scss" }}{{ $style := $sass | resources.ToCSS }}
|
||||
{{ define "stylesheet" }}{{ $sass := resources.Get "/errorpages.scss" }}{{ $style := $sass | resources.ToCSS }}
|
||||
<link rel="stylesheet" href="{{ $style.Permalink }}" type="text/css" media="screen" />
|
||||
{{ end }}
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
{{ define "stylesheet" }}{{ $sass := resources.Get "scss/errorpages.scss" }}{{ $style := $sass | resources.ToCSS }}
|
||||
{{ define "stylesheet" }}{{ $sass := resources.Get "/errorpages.scss" }}{{ $style := $sass | resources.ToCSS }}
|
||||
<link rel="stylesheet" href="{{ $style.Permalink }}" type="text/css" media="screen" />
|
||||
{{ end }}
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
{{ define "stylesheet" }}{{ $scss := resources.Get "scss/index.scss" }}{{ $style := $scss | resources.ToCSS }}
|
||||
{{ define "stylesheet" }}{{ $scss := resources.Get "/index.scss" }}{{ $style := $scss | resources.ToCSS }}
|
||||
<link rel="stylesheet" href="{{ $style.Permalink }}" type="text/css" media="screen" />
|
||||
{{ end }}
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
{{ define "stylesheet" }}{{ $scss := resources.Get "scss/projects/list.scss" }}{{ $style := $scss | resources.ToCSS }}
|
||||
{{ define "stylesheet" }}{{ $scss := resources.Get "projects/list.scss" }}{{ $style := $scss | resources.ToCSS }}
|
||||
<link rel="stylesheet" href="{{ $style.Permalink }}" type="text/css" media="screen" />
|
||||
{{ end }}
|
||||
|
||||
|
|
|
@ -1,109 +0,0 @@
|
|||
* {
|
||||
box-sizing: border-box; }
|
||||
|
||||
@font-face {
|
||||
font-family: PoppinsLatin;
|
||||
src: url(/fonts/PoppinsLatin-Regular.otf); }
|
||||
|
||||
html {
|
||||
scrollbar-width: thin;
|
||||
scrollbar-color: #ff8282 #3c3c5a;
|
||||
overflow-x: hidden;
|
||||
overflow-y: scroll; }
|
||||
|
||||
body {
|
||||
background: #28283c;
|
||||
color: #f0f0ff;
|
||||
margin: 0;
|
||||
font-family: PoppinsLatin, Monaco, Lucida Console, monospace;
|
||||
display: grid; }
|
||||
|
||||
a {
|
||||
color: #ff8282;
|
||||
text-decoration: none; }
|
||||
|
||||
a:hover {
|
||||
text-decoration: underline; }
|
||||
|
||||
.container {
|
||||
width: calc(100% - 40px);
|
||||
max-width: 1140px;
|
||||
margin: 0 auto; }
|
||||
|
||||
main {
|
||||
width: 100vw; }
|
||||
|
||||
nav {
|
||||
background: #3c3c5a;
|
||||
white-space: nowrap;
|
||||
overflow-x: auto; }
|
||||
nav .container {
|
||||
display: flex;
|
||||
align-items: center; }
|
||||
nav .container .website-name a {
|
||||
color: whitesmoke;
|
||||
text-decoration: none;
|
||||
background: #ff8282;
|
||||
padding: 5px 10px;
|
||||
border-radius: 20px;
|
||||
text-shadow: #ff6464 2px 2px; }
|
||||
nav .container .website-nav {
|
||||
margin-left: auto; }
|
||||
nav .container .website-nav ul {
|
||||
display: flex;
|
||||
padding: 0; }
|
||||
nav .container .website-nav li {
|
||||
list-style-type: none;
|
||||
padding: 10px 0 10px 30px; }
|
||||
nav .container .website-nav a {
|
||||
color: whitesmoke;
|
||||
text-decoration: none; }
|
||||
|
||||
@media (max-width: 600px) {
|
||||
nav .container {
|
||||
max-width: none; }
|
||||
nav .container .website-nav {
|
||||
padding: 0 20px; } }
|
||||
|
||||
header {
|
||||
text-align: center;
|
||||
margin: 150px 0; }
|
||||
header h1 {
|
||||
font-size: 2em; }
|
||||
|
||||
footer {
|
||||
background: #1e1e2d;
|
||||
color: #c8c8e6;
|
||||
margin-top: 100px;
|
||||
white-space: nowrap;
|
||||
overflow-x: auto; }
|
||||
footer .container {
|
||||
display: flex;
|
||||
align-items: center; }
|
||||
footer .container .website-subnav {
|
||||
margin-left: auto; }
|
||||
footer .container .website-subnav ul {
|
||||
display: flex;
|
||||
padding: 0; }
|
||||
footer .container .website-subnav li {
|
||||
list-style-type: none;
|
||||
padding: 10px 0 10px 30px; }
|
||||
footer .container .website-subnav a {
|
||||
color: #c8c8e6; }
|
||||
|
||||
footer::after {
|
||||
content: '';
|
||||
background: #1e1e2d;
|
||||
position: fixed;
|
||||
height: 10000px;
|
||||
width: 100vw;
|
||||
overflow: hidden; }
|
||||
|
||||
@media (max-width: 600px) {
|
||||
footer .container {
|
||||
max-width: none; }
|
||||
footer .container .website-version {
|
||||
order: 2;
|
||||
padding: 10px 20px; }
|
||||
footer .container .website-subnav li {
|
||||
padding: 10px 30px 10px 0; } }
|
|
@ -1 +0,0 @@
|
|||
{"Target":"scss/404.css","MediaType":"text/css","Data":{}}
|
|
@ -1,152 +0,0 @@
|
|||
* {
|
||||
box-sizing: border-box; }
|
||||
|
||||
@font-face {
|
||||
font-family: PoppinsLatin;
|
||||
src: url(/fonts/PoppinsLatin-Regular.otf); }
|
||||
|
||||
html {
|
||||
scrollbar-width: thin;
|
||||
scrollbar-color: #ff8282 #3c3c5a;
|
||||
overflow-x: hidden;
|
||||
overflow-y: scroll; }
|
||||
|
||||
body {
|
||||
background: #28283c;
|
||||
color: #f0f0ff;
|
||||
margin: 0;
|
||||
font-family: PoppinsLatin, Monaco, Lucida Console, monospace;
|
||||
display: grid; }
|
||||
|
||||
a {
|
||||
color: #ff8282;
|
||||
text-decoration: none; }
|
||||
|
||||
a:hover {
|
||||
text-decoration: underline; }
|
||||
|
||||
.container {
|
||||
width: calc(100% - 40px);
|
||||
max-width: 1140px;
|
||||
margin: 0 auto; }
|
||||
|
||||
main {
|
||||
width: 100vw; }
|
||||
|
||||
nav {
|
||||
background: #3c3c5a;
|
||||
white-space: nowrap;
|
||||
overflow-x: auto; }
|
||||
nav .container {
|
||||
display: flex;
|
||||
align-items: center; }
|
||||
nav .container .website-name a {
|
||||
color: whitesmoke;
|
||||
text-decoration: none;
|
||||
background: #ff8282;
|
||||
padding: 5px 10px;
|
||||
border-radius: 20px;
|
||||
text-shadow: #ff6464 2px 2px; }
|
||||
nav .container .website-nav {
|
||||
margin-left: auto; }
|
||||
nav .container .website-nav ul {
|
||||
display: flex;
|
||||
padding: 0; }
|
||||
nav .container .website-nav li {
|
||||
list-style-type: none;
|
||||
padding: 10px 0 10px 30px; }
|
||||
nav .container .website-nav a {
|
||||
color: whitesmoke;
|
||||
text-decoration: none; }
|
||||
|
||||
@media (max-width: 600px) {
|
||||
nav .container {
|
||||
max-width: none; }
|
||||
nav .container .website-nav {
|
||||
padding: 0 20px; } }
|
||||
|
||||
footer {
|
||||
background: #1e1e2d;
|
||||
color: #c8c8e6;
|
||||
margin-top: 100px;
|
||||
white-space: nowrap;
|
||||
overflow-x: auto; }
|
||||
footer .container {
|
||||
display: flex;
|
||||
align-items: center; }
|
||||
footer .container .website-subnav {
|
||||
margin-left: auto; }
|
||||
footer .container .website-subnav ul {
|
||||
display: flex;
|
||||
padding: 0; }
|
||||
footer .container .website-subnav li {
|
||||
list-style-type: none;
|
||||
padding: 10px 0 10px 30px; }
|
||||
footer .container .website-subnav a {
|
||||
color: #c8c8e6; }
|
||||
|
||||
footer::after {
|
||||
content: '';
|
||||
background: #1e1e2d;
|
||||
position: fixed;
|
||||
height: 10000px;
|
||||
width: 100vw;
|
||||
overflow: hidden; }
|
||||
|
||||
@media (max-width: 600px) {
|
||||
footer .container {
|
||||
max-width: none; }
|
||||
footer .container .website-version {
|
||||
order: 2;
|
||||
padding: 10px 20px; }
|
||||
footer .container .website-subnav li {
|
||||
padding: 10px 30px 10px 0; } }
|
||||
|
||||
header {
|
||||
text-align: center;
|
||||
margin: 100px 0; }
|
||||
header h1 {
|
||||
font-size: 2em; }
|
||||
|
||||
.section-articles {
|
||||
margin: 20px 0;
|
||||
display: grid;
|
||||
grid-template-columns: repeat(2, 1fr);
|
||||
grid-gap: 1rem; }
|
||||
.section-articles a {
|
||||
color: white;
|
||||
text-decoration: none; }
|
||||
.section-articles article {
|
||||
background: #3c3c5a;
|
||||
color: white;
|
||||
padding: 20px;
|
||||
border-radius: 5px;
|
||||
display: flex;
|
||||
flex-flow: column;
|
||||
height: max-content;
|
||||
transition: background .2s; }
|
||||
.section-articles article img {
|
||||
order: -1;
|
||||
max-width: calc(100% + 40px);
|
||||
border-radius: 5px;
|
||||
margin: -20px -20px 20px -20px;
|
||||
background: #505078;
|
||||
object-fit: cover;
|
||||
max-height: 250px; }
|
||||
.section-articles article h1 {
|
||||
margin-top: 0px; }
|
||||
.section-articles article a {
|
||||
color: white; }
|
||||
.section-articles article a:hover {
|
||||
text-decoration: underline; }
|
||||
.section-articles article .meta {
|
||||
margin: 0; }
|
||||
.section-articles article .author {
|
||||
font-style: italic;
|
||||
color: #c8c8e6; }
|
||||
.section-articles article:hover {
|
||||
background: #464669; }
|
||||
|
||||
@media (max-width: 600px) {
|
||||
.section-articles {
|
||||
grid-template-columns: repeat(1, 1fr); } }
|
|
@ -1 +0,0 @@
|
|||
{"Target":"scss/_default/list.css","MediaType":"text/css","Data":{}}
|
|
@ -1,172 +0,0 @@
|
|||
* {
|
||||
box-sizing: border-box; }
|
||||
|
||||
@font-face {
|
||||
font-family: PoppinsLatin;
|
||||
src: url(/fonts/PoppinsLatin-Regular.otf); }
|
||||
|
||||
html {
|
||||
scrollbar-width: thin;
|
||||
scrollbar-color: #ff8282 #3c3c5a;
|
||||
overflow-x: hidden;
|
||||
overflow-y: scroll; }
|
||||
|
||||
body {
|
||||
background: #28283c;
|
||||
color: #f0f0ff;
|
||||
margin: 0;
|
||||
font-family: PoppinsLatin, Monaco, Lucida Console, monospace;
|
||||
display: grid; }
|
||||
|
||||
a {
|
||||
color: #ff8282;
|
||||
text-decoration: none; }
|
||||
|
||||
a:hover {
|
||||
text-decoration: underline; }
|
||||
|
||||
.container {
|
||||
width: calc(100% - 40px);
|
||||
max-width: 1140px;
|
||||
margin: 0 auto; }
|
||||
|
||||
main {
|
||||
width: 100vw; }
|
||||
|
||||
nav {
|
||||
background: #3c3c5a;
|
||||
white-space: nowrap;
|
||||
overflow-x: auto; }
|
||||
nav .container {
|
||||
display: flex;
|
||||
align-items: center; }
|
||||
nav .container .website-name a {
|
||||
color: whitesmoke;
|
||||
text-decoration: none;
|
||||
background: #ff8282;
|
||||
padding: 5px 10px;
|
||||
border-radius: 20px;
|
||||
text-shadow: #ff6464 2px 2px; }
|
||||
nav .container .website-nav {
|
||||
margin-left: auto; }
|
||||
nav .container .website-nav ul {
|
||||
display: flex;
|
||||
padding: 0; }
|
||||
nav .container .website-nav li {
|
||||
list-style-type: none;
|
||||
padding: 10px 0 10px 30px; }
|
||||
nav .container .website-nav a {
|
||||
color: whitesmoke;
|
||||
text-decoration: none; }
|
||||
|
||||
@media (max-width: 600px) {
|
||||
nav .container {
|
||||
max-width: none; }
|
||||
nav .container .website-nav {
|
||||
padding: 0 20px; } }
|
||||
|
||||
.section-article article {
|
||||
max-width: 720px;
|
||||
margin: 80px auto; }
|
||||
.section-article article .meta {
|
||||
color: #b4b4dc; }
|
||||
.section-article article .title {
|
||||
font-size: 2em;
|
||||
margin-top: 20px; }
|
||||
.section-article article img {
|
||||
max-width: 100%;
|
||||
margin-bottom: 15px;
|
||||
border-radius: 5px; }
|
||||
.section-article article a {
|
||||
color: #ff8282;
|
||||
transition: background .2s, color .2s;
|
||||
margin: -5px -10px;
|
||||
padding: 5px 10px;
|
||||
border-radius: 5px; }
|
||||
.section-article article a:hover {
|
||||
background: #ff8282;
|
||||
color: #fff0f0;
|
||||
text-decoration: none; }
|
||||
.section-article article aside {
|
||||
margin-top: 80px; }
|
||||
.section-article article aside .tags {
|
||||
display: flex;
|
||||
list-style: none;
|
||||
margin-left: -10px;
|
||||
padding: 0; }
|
||||
.section-article article aside .tags li {
|
||||
background: #3c3c5a;
|
||||
padding: 5px 10px;
|
||||
border-radius: 5px;
|
||||
margin-left: 10px; }
|
||||
.section-article article aside .tags li a {
|
||||
color: #b4b4dc; }
|
||||
.section-article article aside .tags li a:hover {
|
||||
background: #464669; }
|
||||
|
||||
.section-articles {
|
||||
margin: 20px auto -50px auto;
|
||||
display: grid;
|
||||
grid-template-columns: repeat(2, 1fr);
|
||||
grid-gap: 1rem;
|
||||
max-width: 720px; }
|
||||
.section-articles article {
|
||||
color: white;
|
||||
margin: 20px 0;
|
||||
border-radius: 5px;
|
||||
display: flex;
|
||||
flex-flow: column;
|
||||
height: max-content;
|
||||
transition: background .2s; }
|
||||
.section-articles article a {
|
||||
margin: 10px 0; }
|
||||
.section-articles article a:hover {
|
||||
text-decoration: underline; }
|
||||
.section-articles .previous-article {
|
||||
text-align: right; }
|
||||
|
||||
.section-articles::after {
|
||||
content: '';
|
||||
position: absolute;
|
||||
width: 100vw;
|
||||
background: #32324b;
|
||||
height: 230px;
|
||||
left: 0;
|
||||
z-index: -10; }
|
||||
|
||||
footer {
|
||||
background: #1e1e2d;
|
||||
color: #c8c8e6;
|
||||
margin-top: 100px;
|
||||
white-space: nowrap;
|
||||
overflow-x: auto; }
|
||||
footer .container {
|
||||
display: flex;
|
||||
align-items: center; }
|
||||
footer .container .website-subnav {
|
||||
margin-left: auto; }
|
||||
footer .container .website-subnav ul {
|
||||
display: flex;
|
||||
padding: 0; }
|
||||
footer .container .website-subnav li {
|
||||
list-style-type: none;
|
||||
padding: 10px 0 10px 30px; }
|
||||
footer .container .website-subnav a {
|
||||
color: #c8c8e6; }
|
||||
|
||||
footer::after {
|
||||
content: '';
|
||||
background: #1e1e2d;
|
||||
position: fixed;
|
||||
height: 10000px;
|
||||
width: 100vw;
|
||||
overflow: hidden; }
|
||||
|
||||
@media (max-width: 600px) {
|
||||
footer .container {
|
||||
max-width: none; }
|
||||
footer .container .website-version {
|
||||
order: 2;
|
||||
padding: 10px 20px; }
|
||||
footer .container .website-subnav li {
|
||||
padding: 10px 30px 10px 0; } }
|
|
@ -1 +0,0 @@
|
|||
{"Target":"scss/_default/single.css","MediaType":"text/css","Data":{}}
|
|
@ -1,109 +0,0 @@
|
|||
* {
|
||||
box-sizing: border-box; }
|
||||
|
||||
@font-face {
|
||||
font-family: PoppinsLatin;
|
||||
src: url(/fonts/PoppinsLatin-Regular.otf); }
|
||||
|
||||
html {
|
||||
scrollbar-width: thin;
|
||||
scrollbar-color: #ff8282 #3c3c5a;
|
||||
overflow-x: hidden;
|
||||
overflow-y: scroll; }
|
||||
|
||||
body {
|
||||
background: #28283c;
|
||||
color: #f0f0ff;
|
||||
margin: 0;
|
||||
font-family: PoppinsLatin, Monaco, Lucida Console, monospace;
|
||||
display: grid; }
|
||||
|
||||
a {
|
||||
color: #ff8282;
|
||||
text-decoration: none; }
|
||||
|
||||
a:hover {
|
||||
text-decoration: underline; }
|
||||
|
||||
.container {
|
||||
width: calc(100% - 40px);
|
||||
max-width: 1140px;
|
||||
margin: 0 auto; }
|
||||
|
||||
main {
|
||||
width: 100vw; }
|
||||
|
||||
nav {
|
||||
background: #3c3c5a;
|
||||
white-space: nowrap;
|
||||
overflow-x: auto; }
|
||||
nav .container {
|
||||
display: flex;
|
||||
align-items: center; }
|
||||
nav .container .website-name a {
|
||||
color: whitesmoke;
|
||||
text-decoration: none;
|
||||
background: #ff8282;
|
||||
padding: 5px 10px;
|
||||
border-radius: 20px;
|
||||
text-shadow: #ff6464 2px 2px; }
|
||||
nav .container .website-nav {
|
||||
margin-left: auto; }
|
||||
nav .container .website-nav ul {
|
||||
display: flex;
|
||||
padding: 0; }
|
||||
nav .container .website-nav li {
|
||||
list-style-type: none;
|
||||
padding: 10px 0 10px 30px; }
|
||||
nav .container .website-nav a {
|
||||
color: whitesmoke;
|
||||
text-decoration: none; }
|
||||
|
||||
@media (max-width: 600px) {
|
||||
nav .container {
|
||||
max-width: none; }
|
||||
nav .container .website-nav {
|
||||
padding: 0 20px; } }
|
||||
|
||||
header {
|
||||
text-align: center;
|
||||
margin: 150px 0; }
|
||||
header h1 {
|
||||
font-size: 2em; }
|
||||
|
||||
footer {
|
||||
background: #1e1e2d;
|
||||
color: #c8c8e6;
|
||||
margin-top: 100px;
|
||||
white-space: nowrap;
|
||||
overflow-x: auto; }
|
||||
footer .container {
|
||||
display: flex;
|
||||
align-items: center; }
|
||||
footer .container .website-subnav {
|
||||
margin-left: auto; }
|
||||
footer .container .website-subnav ul {
|
||||
display: flex;
|
||||
padding: 0; }
|
||||
footer .container .website-subnav li {
|
||||
list-style-type: none;
|
||||
padding: 10px 0 10px 30px; }
|
||||
footer .container .website-subnav a {
|
||||
color: #c8c8e6; }
|
||||
|
||||
footer::after {
|
||||
content: '';
|
||||
background: #1e1e2d;
|
||||
position: fixed;
|
||||
height: 10000px;
|
||||
width: 100vw;
|
||||
overflow: hidden; }
|
||||
|
||||
@media (max-width: 600px) {
|
||||
footer .container {
|
||||
max-width: none; }
|
||||
footer .container .website-version {
|
||||
order: 2;
|
||||
padding: 10px 20px; }
|
||||
footer .container .website-subnav li {
|
||||
padding: 10px 30px 10px 0; } }
|
|
@ -1 +0,0 @@
|
|||
{"Target":"scss/errorpages.css","MediaType":"text/css","Data":{}}
|
|
@ -1,194 +0,0 @@
|
|||
* {
|
||||
box-sizing: border-box; }
|
||||
|
||||
@font-face {
|
||||
font-family: PoppinsLatin;
|
||||
src: url(/fonts/PoppinsLatin-Regular.otf); }
|
||||
|
||||
html {
|
||||
scrollbar-width: thin;
|
||||
scrollbar-color: #ff8282 #3c3c5a;
|
||||
overflow-x: hidden;
|
||||
overflow-y: scroll; }
|
||||
|
||||
body {
|
||||
background: #28283c;
|
||||
color: #f0f0ff;
|
||||
margin: 0;
|
||||
font-family: PoppinsLatin, Monaco, Lucida Console, monospace;
|
||||
display: grid; }
|
||||
|
||||
a {
|
||||
color: #ff8282;
|
||||
text-decoration: none; }
|
||||
|
||||
a:hover {
|
||||
text-decoration: underline; }
|
||||
|
||||
.container {
|
||||
width: calc(100% - 40px);
|
||||
max-width: 1140px;
|
||||
margin: 0 auto; }
|
||||
|
||||
main {
|
||||
width: 100vw; }
|
||||
|
||||
nav {
|
||||
background: #3c3c5a;
|
||||
white-space: nowrap;
|
||||
overflow-x: auto; }
|
||||
nav .container {
|
||||
display: flex;
|
||||
align-items: center; }
|
||||
nav .container .website-name a {
|
||||
color: whitesmoke;
|
||||
text-decoration: none;
|
||||
background: #ff8282;
|
||||
padding: 5px 10px;
|
||||
border-radius: 20px;
|
||||
text-shadow: #ff6464 2px 2px; }
|
||||
nav .container .website-nav {
|
||||
margin-left: auto; }
|
||||
nav .container .website-nav ul {
|
||||
display: flex;
|
||||
padding: 0; }
|
||||
nav .container .website-nav li {
|
||||
list-style-type: none;
|
||||
padding: 10px 0 10px 30px; }
|
||||
nav .container .website-nav a {
|
||||
color: whitesmoke;
|
||||
text-decoration: none; }
|
||||
|
||||
@media (max-width: 600px) {
|
||||
nav .container {
|
||||
max-width: none; }
|
||||
nav .container .website-nav {
|
||||
padding: 0 20px; } }
|
||||
|
||||
header {
|
||||
text-align: center;
|
||||
margin: 150px 0; }
|
||||
header h1 {
|
||||
font-size: 2em; }
|
||||
|
||||
.section-articles {
|
||||
margin: 20px 0;
|
||||
display: grid;
|
||||
grid-template-columns: repeat(2, 1fr);
|
||||
grid-gap: 1rem; }
|
||||
.section-articles a {
|
||||
color: white;
|
||||
text-decoration: none; }
|
||||
.section-articles article {
|
||||
background: #3c3c5a;
|
||||
color: white;
|
||||
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; }
|
||||
.section-articles article img {
|
||||
object-fit: cover;
|
||||
height: 180px;
|
||||
width: 120px;
|
||||
border-radius: 5px;
|
||||
border: 0px solid #28283c;
|
||||
grid-area: img;
|
||||
margin: -20px; }
|
||||
.section-articles article h1 {
|
||||
margin: 0px;
|
||||
grid-area: h1; }
|
||||
.section-articles article .meta {
|
||||
margin: 0;
|
||||
grid-area: p; }
|
||||
.section-articles article .author {
|
||||
font-style: italic;
|
||||
color: #c8c8e6; }
|
||||
.section-articles article:hover {
|
||||
background: #464669; }
|
||||
|
||||
@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; }
|
||||
.section-projects a {
|
||||
color: white;
|
||||
text-decoration: none; }
|
||||
.section-projects article {
|
||||
background: #3c3c5a;
|
||||
color: white;
|
||||
padding: 20px;
|
||||
border-radius: 5px;
|
||||
display: flex;
|
||||
flex-flow: column;
|
||||
height: max-content;
|
||||
transition: background .2s; }
|
||||
.section-projects article img {
|
||||
order: -1;
|
||||
max-width: calc(100% + 40px);
|
||||
border-radius: 5px;
|
||||
margin: -20px -20px 20px -20px;
|
||||
background: #505078;
|
||||
object-fit: cover;
|
||||
max-height: 170px; }
|
||||
.section-projects article h1 {
|
||||
margin-top: 0; }
|
||||
.section-projects article .meta {
|
||||
margin: 0; }
|
||||
.section-projects article .status {
|
||||
font-style: italic;
|
||||
color: #c8c8e6; }
|
||||
.section-projects article:hover {
|
||||
background: #464669; }
|
||||
|
||||
@media (max-width: 900px) {
|
||||
.section-projects {
|
||||
grid-template-columns: repeat(2, 1fr); } }
|
||||
|
||||
@media (max-width: 600px) {
|
||||
.section-projects {
|
||||
grid-template-columns: repeat(1, 1fr); } }
|
||||
|
||||
footer {
|
||||
background: #1e1e2d;
|
||||
color: #c8c8e6;
|
||||
margin-top: 100px;
|
||||
white-space: nowrap;
|
||||
overflow-x: auto; }
|
||||
footer .container {
|
||||
display: flex;
|
||||
align-items: center; }
|
||||
footer .container .website-subnav {
|
||||
margin-left: auto; }
|
||||
footer .container .website-subnav ul {
|
||||
display: flex;
|
||||
padding: 0; }
|
||||
footer .container .website-subnav li {
|
||||
list-style-type: none;
|
||||
padding: 10px 0 10px 30px; }
|
||||
footer .container .website-subnav a {
|
||||
color: #c8c8e6; }
|
||||
|
||||
footer::after {
|
||||
content: '';
|
||||
background: #1e1e2d;
|
||||
position: fixed;
|
||||
height: 10000px;
|
||||
width: 100vw;
|
||||
overflow: hidden; }
|
||||
|
||||
@media (max-width: 600px) {
|
||||
footer .container {
|
||||
max-width: none; }
|
||||
footer .container .website-version {
|
||||
order: 2;
|
||||
padding: 10px 20px; }
|
||||
footer .container .website-subnav li {
|
||||
padding: 10px 30px 10px 0; } }
|
|
@ -1 +0,0 @@
|
|||
{"Target":"scss/index.css","MediaType":"text/css","Data":{}}
|
|
@ -1,153 +0,0 @@
|
|||
* {
|
||||
box-sizing: border-box; }
|
||||
|
||||
@font-face {
|
||||
font-family: PoppinsLatin;
|
||||
src: url(/fonts/PoppinsLatin-Regular.otf); }
|
||||
|
||||
html {
|
||||
scrollbar-width: thin;
|
||||
scrollbar-color: #ff8282 #3c3c5a;
|
||||
overflow-x: hidden;
|
||||
overflow-y: scroll; }
|
||||
|
||||
body {
|
||||
background: #28283c;
|
||||
color: #f0f0ff;
|
||||
margin: 0;
|
||||
font-family: PoppinsLatin, Monaco, Lucida Console, monospace;
|
||||
display: grid; }
|
||||
|
||||
a {
|
||||
color: #ff8282;
|
||||
text-decoration: none; }
|
||||
|
||||
a:hover {
|
||||
text-decoration: underline; }
|
||||
|
||||
.container {
|
||||
width: calc(100% - 40px);
|
||||
max-width: 1140px;
|
||||
margin: 0 auto; }
|
||||
|
||||
main {
|
||||
width: 100vw; }
|
||||
|
||||
nav {
|
||||
background: #3c3c5a;
|
||||
white-space: nowrap;
|
||||
overflow-x: auto; }
|
||||
nav .container {
|
||||
display: flex;
|
||||
align-items: center; }
|
||||
nav .container .website-name a {
|
||||
color: whitesmoke;
|
||||
text-decoration: none;
|
||||
background: #ff8282;
|
||||
padding: 5px 10px;
|
||||
border-radius: 20px;
|
||||
text-shadow: #ff6464 2px 2px; }
|
||||
nav .container .website-nav {
|
||||
margin-left: auto; }
|
||||
nav .container .website-nav ul {
|
||||
display: flex;
|
||||
padding: 0; }
|
||||
nav .container .website-nav li {
|
||||
list-style-type: none;
|
||||
padding: 10px 0 10px 30px; }
|
||||
nav .container .website-nav a {
|
||||
color: whitesmoke;
|
||||
text-decoration: none; }
|
||||
|
||||
@media (max-width: 600px) {
|
||||
nav .container {
|
||||
max-width: none; }
|
||||
nav .container .website-nav {
|
||||
padding: 0 20px; } }
|
||||
|
||||
header {
|
||||
text-align: center;
|
||||
margin: 100px 0; }
|
||||
header h1 {
|
||||
font-size: 2em; }
|
||||
|
||||
.section-articles {
|
||||
margin: 20px 0;
|
||||
display: grid;
|
||||
grid-template-columns: repeat(3, 1fr);
|
||||
grid-gap: 1rem; }
|
||||
.section-articles a {
|
||||
color: white;
|
||||
text-decoration: none; }
|
||||
.section-articles article {
|
||||
background: #3c3c5a;
|
||||
color: white;
|
||||
padding: 20px;
|
||||
border-radius: 5px;
|
||||
display: flex;
|
||||
flex-flow: column;
|
||||
max-width: 562px;
|
||||
height: max-content;
|
||||
transition: background .2s; }
|
||||
.section-articles article img {
|
||||
order: -1;
|
||||
max-width: calc(100% + 40px);
|
||||
border-radius: 5px;
|
||||
margin: -20px -20px 20px -20px;
|
||||
background: #505078;
|
||||
object-fit: cover;
|
||||
max-height: 170px; }
|
||||
.section-articles article h1 {
|
||||
margin-top: 0; }
|
||||
.section-articles article p {
|
||||
margin: 0; }
|
||||
.section-articles article .status {
|
||||
font-style: italic;
|
||||
color: #c8c8e6; }
|
||||
.section-articles article:hover {
|
||||
background: #464669; }
|
||||
|
||||
@media (max-width: 900px) {
|
||||
.section-articles {
|
||||
grid-template-columns: repeat(2, 1fr); } }
|
||||
|
||||
@media (max-width: 600px) {
|
||||
.section-articles {
|
||||
grid-template-columns: repeat(1, 1fr); } }
|
||||
|
||||
footer {
|
||||
background: #1e1e2d;
|
||||
color: #c8c8e6;
|
||||
margin-top: 100px;
|
||||
white-space: nowrap;
|
||||
overflow-x: auto; }
|
||||
footer .container {
|
||||
display: flex;
|
||||
align-items: center; }
|
||||
footer .container .website-subnav {
|
||||
margin-left: auto; }
|
||||
footer .container .website-subnav ul {
|
||||
display: flex;
|
||||
padding: 0; }
|
||||
footer .container .website-subnav li {
|
||||
list-style-type: none;
|
||||
padding: 10px 0 10px 30px; }
|
||||
footer .container .website-subnav a {
|
||||
color: #c8c8e6; }
|
||||
|
||||
footer::after {
|
||||
content: '';
|
||||
background: #1e1e2d;
|
||||
position: fixed;
|
||||
height: 10000px;
|
||||
width: 100vw;
|
||||
overflow: hidden; }
|
||||
|
||||
@media (max-width: 600px) {
|
||||
footer .container {
|
||||
max-width: none; }
|
||||
footer .container .website-version {
|
||||
order: 2;
|
||||
padding: 10px 20px; }
|
||||
footer .container .website-subnav li {
|
||||
padding: 10px 30px 10px 0; } }
|
|
@ -1 +0,0 @@
|
|||
{"Target":"scss/projects/list.css","MediaType":"text/css","Data":{}}
|
|
@ -1,111 +0,0 @@
|
|||
* {
|
||||
box-sizing: border-box; }
|
||||
|
||||
a {
|
||||
color: #ff8282;
|
||||
text-decoration: none; }
|
||||
|
||||
a:hover {
|
||||
text-decoration: underline; }
|
||||
|
||||
body {
|
||||
background: #28283c;
|
||||
color: #f0f0ff;
|
||||
margin: 0;
|
||||
font-family: Monaco, Lucida Console, monospace;
|
||||
display: grid; }
|
||||
|
||||
.container {
|
||||
width: 100%;
|
||||
max-width: 1140px;
|
||||
margin: 0 auto; }
|
||||
|
||||
nav {
|
||||
background: #3c3c5a; }
|
||||
nav .container {
|
||||
display: flex;
|
||||
align-items: center; }
|
||||
nav .container .website-name a {
|
||||
color: whitesmoke;
|
||||
text-decoration: none;
|
||||
background: #ff8282;
|
||||
padding: 5px 10px;
|
||||
border-radius: 20px;
|
||||
text-shadow: #ff6464 2px 2px; }
|
||||
nav .container .website-nav {
|
||||
margin-left: auto; }
|
||||
nav .container .website-nav ul {
|
||||
display: flex;
|
||||
padding: 0; }
|
||||
nav .container .website-nav li {
|
||||
list-style-type: none;
|
||||
padding: 10px;
|
||||
padding-left: 20px; }
|
||||
nav .container .website-nav a {
|
||||
color: whitesmoke;
|
||||
text-decoration: none; }
|
||||
|
||||
footer {
|
||||
background: #1e1e2d;
|
||||
color: #c8c8e6;
|
||||
margin-top: 100px; }
|
||||
footer .container {
|
||||
display: flex;
|
||||
align-items: center; }
|
||||
|
||||
.website-subnav {
|
||||
margin-left: auto; }
|
||||
.website-subnav ul {
|
||||
display: flex;
|
||||
padding: 0; }
|
||||
.website-subnav li {
|
||||
list-style-type: none;
|
||||
padding: 10px;
|
||||
padding-left: 20px; }
|
||||
.website-subnav a {
|
||||
color: #c8c8e6; }
|
||||
|
||||
header {
|
||||
text-align: center;
|
||||
margin: 100px 0; }
|
||||
header h1 {
|
||||
font-size: 2em; }
|
||||
|
||||
.section-articles {
|
||||
margin: 20px 0;
|
||||
display: grid;
|
||||
grid-template-columns: repeat(2, 1fr);
|
||||
grid-gap: 1rem; }
|
||||
.section-articles a {
|
||||
color: white;
|
||||
text-decoration: none; }
|
||||
.section-articles article {
|
||||
background: #3c3c5a;
|
||||
color: white;
|
||||
padding: 20px;
|
||||
border-radius: 5px;
|
||||
display: flex;
|
||||
flex-flow: column;
|
||||
height: max-content;
|
||||
transition: background .2s; }
|
||||
.section-articles article img {
|
||||
order: -1;
|
||||
max-width: calc(100% + 40px);
|
||||
border-radius: 5px;
|
||||
margin: -20px -20px 20px -20px;
|
||||
background: #505078;
|
||||
object-fit: cover;
|
||||
max-height: 250px; }
|
||||
.section-articles article h1 {
|
||||
margin-top: 0px; }
|
||||
.section-articles article a {
|
||||
color: white; }
|
||||
.section-articles article a:hover {
|
||||
text-decoration: underline; }
|
||||
.section-articles article .meta {
|
||||
margin: 0; }
|
||||
.section-articles article .author {
|
||||
font-style: italic;
|
||||
color: #c8c8e6; }
|
||||
.section-articles article:hover {
|
||||
background: #464669; }
|
|
@ -1 +0,0 @@
|
|||
{"Target":"scss/_default/list.css","MediaType":"text/css","Data":{}}
|
|
@ -1,145 +0,0 @@
|
|||
* {
|
||||
box-sizing: border-box; }
|
||||
|
||||
a {
|
||||
color: #ff8282;
|
||||
text-decoration: none; }
|
||||
|
||||
a:hover {
|
||||
text-decoration: underline; }
|
||||
|
||||
body {
|
||||
background: #28283c;
|
||||
color: #f0f0ff;
|
||||
margin: 0;
|
||||
font-family: Monaco, Lucida Console, monospace;
|
||||
display: grid; }
|
||||
|
||||
.container {
|
||||
width: 100%;
|
||||
max-width: 1140px;
|
||||
margin: 0 auto; }
|
||||
|
||||
nav {
|
||||
background: #3c3c5a; }
|
||||
nav .container {
|
||||
display: flex;
|
||||
align-items: center; }
|
||||
nav .container .website-name a {
|
||||
color: whitesmoke;
|
||||
text-decoration: none;
|
||||
background: #ff8282;
|
||||
padding: 5px 10px;
|
||||
border-radius: 20px;
|
||||
text-shadow: #ff6464 2px 2px; }
|
||||
nav .container .website-nav {
|
||||
margin-left: auto; }
|
||||
nav .container .website-nav ul {
|
||||
display: flex;
|
||||
padding: 0; }
|
||||
nav .container .website-nav li {
|
||||
list-style-type: none;
|
||||
padding: 10px;
|
||||
padding-left: 20px; }
|
||||
nav .container .website-nav a {
|
||||
color: whitesmoke;
|
||||
text-decoration: none; }
|
||||
|
||||
.section-article article {
|
||||
max-width: calc(100% / 3 * 2);
|
||||
margin: 80px auto; }
|
||||
.section-article article .meta {
|
||||
color: #b4b4dc; }
|
||||
.section-article article .title {
|
||||
font-size: 2em;
|
||||
margin-top: 20px; }
|
||||
.section-article article img {
|
||||
max-width: 100%;
|
||||
margin-bottom: 15px;
|
||||
border-radius: 5px; }
|
||||
.section-article article a {
|
||||
color: #ff8282;
|
||||
transition: background .2s, color .2s;
|
||||
margin: -5px -10px;
|
||||
padding: 5px 10px;
|
||||
border-radius: 5px; }
|
||||
.section-article article a:hover {
|
||||
background: #ff8282;
|
||||
color: #fff0f0;
|
||||
text-decoration: none; }
|
||||
.section-article article aside {
|
||||
margin-top: 80px; }
|
||||
.section-article article aside .tags {
|
||||
display: flex;
|
||||
list-style: none;
|
||||
margin-left: -10px;
|
||||
padding: 0; }
|
||||
.section-article article aside .tags li {
|
||||
background: #3c3c5a;
|
||||
padding: 5px 10px;
|
||||
border-radius: 5px;
|
||||
margin-left: 10px; }
|
||||
.section-article article aside .tags li a {
|
||||
color: #b4b4dc; }
|
||||
.section-article article aside .tags li a:hover {
|
||||
background: #464669; }
|
||||
|
||||
.section-articles {
|
||||
margin: 20px auto;
|
||||
display: grid;
|
||||
grid-template-columns: repeat(2, 1fr);
|
||||
grid-gap: 1rem;
|
||||
max-width: calc(100% / 3 * 2); }
|
||||
.section-articles a {
|
||||
color: white;
|
||||
text-decoration: none; }
|
||||
.section-articles article {
|
||||
background: #3c3c5a;
|
||||
color: white;
|
||||
padding: 20px;
|
||||
border-radius: 5px;
|
||||
display: flex;
|
||||
flex-flow: column;
|
||||
height: max-content;
|
||||
transition: background .2s; }
|
||||
.section-articles article img {
|
||||
order: -1;
|
||||
max-width: calc(100% + 40px);
|
||||
border-radius: 5px;
|
||||
margin: -20px -20px 20px -20px;
|
||||
background: #505078;
|
||||
object-fit: cover;
|
||||
max-height: 170px; }
|
||||
.section-articles article h1 {
|
||||
margin-top: 0px; }
|
||||
.section-articles article a {
|
||||
color: white; }
|
||||
.section-articles article a:hover {
|
||||
text-decoration: underline; }
|
||||
.section-articles article .meta {
|
||||
margin: 0; }
|
||||
.section-articles article .author {
|
||||
font-style: italic;
|
||||
color: #c8c8e6; }
|
||||
.section-articles article:hover {
|
||||
background: #464669; }
|
||||
|
||||
footer {
|
||||
background: #1e1e2d;
|
||||
color: #c8c8e6;
|
||||
margin-top: 100px; }
|
||||
footer .container {
|
||||
display: flex;
|
||||
align-items: center; }
|
||||
|
||||
.website-subnav {
|
||||
margin-left: auto; }
|
||||
.website-subnav ul {
|
||||
display: flex;
|
||||
padding: 0; }
|
||||
.website-subnav li {
|
||||
list-style-type: none;
|
||||
padding: 10px;
|
||||
padding-left: 20px; }
|
||||
.website-subnav a {
|
||||
color: #c8c8e6; }
|
|
@ -1 +0,0 @@
|
|||
{"Target":"scss/_default/single.css","MediaType":"text/css","Data":{}}
|
|
@ -1,145 +0,0 @@
|
|||
* {
|
||||
box-sizing: border-box; }
|
||||
|
||||
a {
|
||||
color: #ff8282;
|
||||
text-decoration: none; }
|
||||
|
||||
a:hover {
|
||||
text-decoration: underline; }
|
||||
|
||||
body {
|
||||
background: #28283c;
|
||||
color: #f0f0ff;
|
||||
margin: 0;
|
||||
font-family: Monaco, Lucida Console, monospace;
|
||||
display: grid; }
|
||||
|
||||
.container {
|
||||
width: 100%;
|
||||
max-width: 1140px;
|
||||
margin: 0 auto; }
|
||||
|
||||
nav {
|
||||
background: #3c3c5a; }
|
||||
nav .container {
|
||||
display: flex;
|
||||
align-items: center; }
|
||||
nav .container .website-name a {
|
||||
color: whitesmoke;
|
||||
text-decoration: none;
|
||||
background: #ff8282;
|
||||
padding: 5px 10px;
|
||||
border-radius: 20px;
|
||||
text-shadow: #ff6464 2px 2px; }
|
||||
nav .container .website-nav {
|
||||
margin-left: auto; }
|
||||
nav .container .website-nav ul {
|
||||
display: flex;
|
||||
padding: 0; }
|
||||
nav .container .website-nav li {
|
||||
list-style-type: none;
|
||||
padding: 10px;
|
||||
padding-left: 20px; }
|
||||
nav .container .website-nav a {
|
||||
color: whitesmoke;
|
||||
text-decoration: none; }
|
||||
|
||||
header {
|
||||
text-align: center;
|
||||
margin: 150px 0; }
|
||||
header h1 {
|
||||
font-size: 2em; }
|
||||
|
||||
.section-articles {
|
||||
margin: 20px 0;
|
||||
display: grid;
|
||||
grid-template-columns: repeat(2, 1fr);
|
||||
grid-gap: 1rem; }
|
||||
.section-articles a {
|
||||
color: white;
|
||||
text-decoration: none; }
|
||||
.section-articles article {
|
||||
background: #3c3c5a;
|
||||
color: white;
|
||||
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; }
|
||||
.section-articles article img {
|
||||
object-fit: cover;
|
||||
height: 180px;
|
||||
width: 120px;
|
||||
border-radius: 5px;
|
||||
border: 0px solid #28283c;
|
||||
grid-area: img;
|
||||
margin: -20px; }
|
||||
.section-articles article h1 {
|
||||
margin: 0px;
|
||||
grid-area: h1; }
|
||||
.section-articles article .meta {
|
||||
margin: 0;
|
||||
grid-area: p; }
|
||||
.section-articles article .author {
|
||||
font-style: italic;
|
||||
color: #c8c8e6; }
|
||||
.section-articles article:hover {
|
||||
background: #464669; }
|
||||
|
||||
.section-projects {
|
||||
margin: 20px 0;
|
||||
display: grid;
|
||||
grid-template-columns: repeat(3, 1fr);
|
||||
grid-gap: 1rem; }
|
||||
.section-projects a {
|
||||
color: white;
|
||||
text-decoration: none; }
|
||||
.section-projects article {
|
||||
background: #3c3c5a;
|
||||
color: white;
|
||||
padding: 20px;
|
||||
border-radius: 5px;
|
||||
display: flex;
|
||||
flex-flow: column;
|
||||
height: max-content;
|
||||
transition: background .2s; }
|
||||
.section-projects article img {
|
||||
order: -1;
|
||||
max-width: calc(100% + 40px);
|
||||
border-radius: 5px;
|
||||
margin: -20px -20px 20px -20px;
|
||||
background: #505078;
|
||||
object-fit: cover;
|
||||
max-height: 170px; }
|
||||
.section-projects article h1 {
|
||||
margin-top: 0; }
|
||||
.section-projects article .meta {
|
||||
margin: 0; }
|
||||
.section-projects article .status {
|
||||
font-style: italic;
|
||||
color: #c8c8e6; }
|
||||
.section-projects article:hover {
|
||||
background: #464669; }
|
||||
|
||||
footer {
|
||||
background: #1e1e2d;
|
||||
color: #c8c8e6;
|
||||
margin-top: 100px; }
|
||||
footer .container {
|
||||
display: flex;
|
||||
align-items: center; }
|
||||
|
||||
.website-subnav {
|
||||
margin-left: auto; }
|
||||
.website-subnav ul {
|
||||
display: flex;
|
||||
padding: 0; }
|
||||
.website-subnav li {
|
||||
list-style-type: none;
|
||||
padding: 10px;
|
||||
padding-left: 20px; }
|
||||
.website-subnav a {
|
||||
color: #c8c8e6; }
|
|
@ -1 +0,0 @@
|
|||
{"Target":"scss/index.css","MediaType":"text/css","Data":{}}
|
|
@ -1,108 +0,0 @@
|
|||
* {
|
||||
box-sizing: border-box; }
|
||||
|
||||
a {
|
||||
color: #ff8282;
|
||||
text-decoration: none; }
|
||||
|
||||
a:hover {
|
||||
text-decoration: underline; }
|
||||
|
||||
body {
|
||||
background: #28283c;
|
||||
color: #f0f0ff;
|
||||
margin: 0;
|
||||
font-family: Monaco, Lucida Console, monospace;
|
||||
display: grid; }
|
||||
|
||||
.container {
|
||||
width: 100%;
|
||||
max-width: 1140px;
|
||||
margin: 0 auto; }
|
||||
|
||||
nav {
|
||||
background: #3c3c5a; }
|
||||
nav .container {
|
||||
display: flex;
|
||||
align-items: center; }
|
||||
nav .container .website-name a {
|
||||
color: whitesmoke;
|
||||
text-decoration: none;
|
||||
background: #ff8282;
|
||||
padding: 5px 10px;
|
||||
border-radius: 20px;
|
||||
text-shadow: #ff6464 2px 2px; }
|
||||
nav .container .website-nav {
|
||||
margin-left: auto; }
|
||||
nav .container .website-nav ul {
|
||||
display: flex;
|
||||
padding: 0; }
|
||||
nav .container .website-nav li {
|
||||
list-style-type: none;
|
||||
padding: 10px;
|
||||
padding-left: 20px; }
|
||||
nav .container .website-nav a {
|
||||
color: whitesmoke;
|
||||
text-decoration: none; }
|
||||
|
||||
header {
|
||||
text-align: center;
|
||||
margin: 100px 0; }
|
||||
header h1 {
|
||||
font-size: 2em; }
|
||||
|
||||
.section-articles {
|
||||
margin: 20px 0;
|
||||
display: grid;
|
||||
grid-template-columns: repeat(3, 1fr);
|
||||
grid-gap: 1rem; }
|
||||
.section-articles a {
|
||||
color: white;
|
||||
text-decoration: none; }
|
||||
.section-articles article {
|
||||
background: #3c3c5a;
|
||||
color: white;
|
||||
padding: 20px;
|
||||
border-radius: 5px;
|
||||
display: flex;
|
||||
flex-flow: column;
|
||||
max-width: 562px;
|
||||
height: max-content;
|
||||
transition: background .2s; }
|
||||
.section-articles article img {
|
||||
order: -1;
|
||||
max-width: calc(100% + 40px);
|
||||
border-radius: 5px;
|
||||
margin: -20px -20px 20px -20px;
|
||||
background: #505078;
|
||||
object-fit: cover;
|
||||
max-height: 170px; }
|
||||
.section-articles article h1 {
|
||||
margin-top: 0; }
|
||||
.section-articles article p {
|
||||
margin: 0; }
|
||||
.section-articles article .status {
|
||||
font-style: italic;
|
||||
color: #c8c8e6; }
|
||||
.section-articles article:hover {
|
||||
background: #464669; }
|
||||
|
||||
footer {
|
||||
background: #1e1e2d;
|
||||
color: #c8c8e6;
|
||||
margin-top: 100px; }
|
||||
footer .container {
|
||||
display: flex;
|
||||
align-items: center; }
|
||||
|
||||
.website-subnav {
|
||||
margin-left: auto; }
|
||||
.website-subnav ul {
|
||||
display: flex;
|
||||
padding: 0; }
|
||||
.website-subnav li {
|
||||
list-style-type: none;
|
||||
padding: 10px;
|
||||
padding-left: 20px; }
|
||||
.website-subnav a {
|
||||
color: #c8c8e6; }
|
|
@ -1 +0,0 @@
|
|||
{"Target":"scss/projects/list.css","MediaType":"text/css","Data":{}}
|
Loading…
Reference in a new issue