replaced more values with variables

This commit is contained in:
Vrifox 2020-11-03 20:33:16 +01:00
parent 1c0aebd738
commit 9d082d0458
7 changed files with 57 additions and 57 deletions

View file

@ -5,7 +5,7 @@
.section.header {
align-items: center;
background: rgb(70, 70, 105);
background: $bg70;
display: flex;
height: 150px;
margin: 0 0 40px 0;
@ -24,14 +24,14 @@
grid-template-columns: repeat(2, 1fr);
margin: 20px 0;
a {
color: rgb(255, 255, 255);
color: $white-light;
text-decoration: none;
}
article {
background: rgb(60, 60, 90);
border: 1px solid rgb(60, 60, 90);
background: $bg60;
border: 1px solid $bg60;
border-radius: 5px;
color: rgb(255, 255, 255);
color: $white-light;
display: flex;
flex-flow: column;
height: max-content;
@ -39,10 +39,10 @@
padding: 20px;
transition: background .2s;
&:hover {
background: rgb(70, 70, 105);
background: $bg70;
}
img {
background: rgb(80, 80, 120);
background: $bg80;
border-radius: 5px 5px 0px 0px;
margin: -20px -20px 15px -20px;
max-height: 250px;
@ -60,7 +60,7 @@
margin: 0;
}
.status {
color: rgb(215, 215, 245);
color: $white-dark;
font-style: italic;
}
}