initial commit
This commit is contained in:
commit
ab7f027048
86 changed files with 4742 additions and 0 deletions
60
assets/scss/_default/list.scss
Normal file
60
assets/scss/_default/list.scss
Normal file
|
@ -0,0 +1,60 @@
|
|||
@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);
|
||||
}
|
||||
}
|
85
assets/scss/_default/single.scss
Normal file
85
assets/scss/_default/single.scss
Normal file
|
@ -0,0 +1,85 @@
|
|||
@import '../partials/main';
|
||||
@import '../partials/nav';
|
||||
|
||||
.section-article {
|
||||
article {
|
||||
max-width: calc(100% / 3 * 2);
|
||||
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;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.section-articles {
|
||||
margin: 20px auto;
|
||||
display: grid;
|
||||
grid-template-columns: repeat(2, 1fr);
|
||||
grid-gap: 1rem;
|
||||
max-width: calc(100% / 3 * 2);
|
||||
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: 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);
|
||||
}
|
||||
}
|
||||
|
||||
@import '../partials/footer';
|
Loading…
Add table
Add a link
Reference in a new issue