added privacy policy
This commit is contained in:
parent
c8698d8c80
commit
26cd9f0bea
16 changed files with 285 additions and 112 deletions
|
@ -3,10 +3,16 @@
|
|||
@import '../partials/footer';
|
||||
|
||||
header {
|
||||
align-items: center;
|
||||
background: rgb(60, 60, 90);
|
||||
border-radius: 5px;
|
||||
display: flex;
|
||||
height: 200px;
|
||||
margin: 40px 0;
|
||||
text-align: center;
|
||||
margin: 100px 0;
|
||||
h1 {
|
||||
font-size: 2em;
|
||||
margin: auto;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
margin: 80px auto;
|
||||
max-width: 720px;
|
||||
.meta {
|
||||
color: rgb(180, 180, 220);
|
||||
color: rgb(215, 215, 235);
|
||||
}
|
||||
.title {
|
||||
font-size: 2em;
|
||||
|
@ -19,32 +19,37 @@
|
|||
max-width: 100%;
|
||||
}
|
||||
a {
|
||||
background: rgb(60, 60, 90);
|
||||
border-radius: 5px;
|
||||
color: rgb(240, 240, 250);
|
||||
margin: -5px 0;
|
||||
padding: 5px 5px;
|
||||
transition: background .2s, color .2s;
|
||||
border-bottom: 1px solid;
|
||||
color: rgb(245, 245, 255);
|
||||
margin: -5px;
|
||||
padding: 5px;
|
||||
transition: border .2s, color .2s;
|
||||
&:hover {
|
||||
background: rgb(255, 130, 130);
|
||||
color: rgb(255, 255, 255);
|
||||
color: rgb(255, 130, 130);
|
||||
text-decoration: none;
|
||||
}
|
||||
}
|
||||
h2 {
|
||||
font-size: .6em;
|
||||
}
|
||||
aside {
|
||||
margin-top: 80px;
|
||||
.tags {
|
||||
display: flex;
|
||||
list-style: none;
|
||||
margin-left: -10px;
|
||||
margin-left: -15px;
|
||||
padding: 0;
|
||||
li {
|
||||
a {
|
||||
color: rgb(180, 180, 220);
|
||||
margin-left: 10px;
|
||||
background: rgb(60, 60, 90);
|
||||
border: 0;
|
||||
border-radius: 5px;
|
||||
color: rgb(215, 215, 225);
|
||||
margin-left: 15px;
|
||||
padding: 10px;
|
||||
&:hover {
|
||||
background: rgb(70, 70, 105);
|
||||
background: rgb(50, 50, 75);
|
||||
color: rgb(255, 255, 255);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -57,34 +62,54 @@
|
|||
display: grid;
|
||||
grid-template-columns: repeat(2, 1fr);
|
||||
grid-gap: 1rem;
|
||||
margin: 20px auto -50px auto;
|
||||
margin: 20px auto 0 auto;
|
||||
max-width: 720px;
|
||||
white-space: nowrap;
|
||||
&::after {
|
||||
background: rgb(50, 50, 75);
|
||||
content: '';
|
||||
height: 210px;
|
||||
height: 200px;
|
||||
left: 0;
|
||||
position: absolute;
|
||||
width: 100vw;
|
||||
z-index: -10;
|
||||
}
|
||||
article {
|
||||
border-radius: 5px;
|
||||
color: rgb(255, 255, 255);
|
||||
display: flex;
|
||||
flex-flow: column;
|
||||
height: max-content;
|
||||
margin: 20px 0;
|
||||
transition: background .2s;
|
||||
a {
|
||||
margin: 10px 0;
|
||||
border-bottom: 1px solid transparent;
|
||||
color: rgb(215, 215, 225);
|
||||
transition: border .2s, color .2s;
|
||||
&:hover {
|
||||
text-decoration: underline;
|
||||
border-bottom: 1px solid;
|
||||
color: rgb(255, 130, 130);
|
||||
text-decoration: none;
|
||||
}
|
||||
}
|
||||
}
|
||||
.next-article {
|
||||
margin-right: auto;
|
||||
}
|
||||
.previous-article {
|
||||
text-align: right;
|
||||
margin-left: auto;
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 400px) {
|
||||
.section-articles {
|
||||
grid-template-columns: repeat(1, 1fr);
|
||||
&::after {
|
||||
height: 250px;
|
||||
}
|
||||
.next-article {
|
||||
margin: 20px auto 0 auto;
|
||||
}
|
||||
.previous-article {
|
||||
margin: 0 auto;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue