add CSS variable for spacing + double spacing

This commit is contained in:
imohkay 2021-10-14 13:01:28 +05:30
parent 6eebf2f555
commit 797902e90a
4 changed files with 24 additions and 21 deletions

28
app/static/css/partials/_film.scss Normal file → Executable file
View file

@ -1,7 +1,7 @@
.films { .films {
margin: 8px; margin: var(--spacing-2);
box-sizing: border-box; box-sizing: border-box;
a { a {
@ -9,7 +9,7 @@
text-decoration: none; text-decoration: none;
} }
.film { .film {
margin-bottom: 16px; margin-bottom: var(--spacing-2);
h1 { h1 {
font-weight: bold; font-weight: bold;
font-size: 20px; font-size: 20px;
@ -17,9 +17,9 @@
} }
@media screen and (max-width: 799px) { @media screen and (max-width: 799px) {
.film { .film {
margin-bottom: 16px; margin-bottom: var(--spacing-2);
h2 { h2 {
margin-bottom: 8px; margin-bottom: var(--spacing);
} }
} }
} }
@ -30,7 +30,7 @@ main > .film {
max-width: 1080px; max-width: 1080px;
margin: auto; margin: auto;
.info { .info {
margin: 8px; margin: var(--spacing) var(--spacing-2);
margin-bottom: 32px; margin-bottom: 32px;
text-overflow: ellipsis; text-overflow: ellipsis;
overflow: hidden; overflow: hidden;
@ -43,12 +43,12 @@ main > .film {
margin: 24px 0; margin: 24px 0;
} }
.details { .details {
margin-top: 16px; margin-top: var(--spacing-2);
} }
.bio { .bio {
margin-top: 16px; margin-top: var(--spacing-2);
div { div {
margin-top: 8px; margin-top: var(--spacing);
} }
} }
} }
@ -57,14 +57,14 @@ main > .film {
} }
.play { .play {
text-align: center; text-align: center;
margin: 8px; margin: var(--spacing);
margin-top: 16px; margin-top: var(--spacing-2);
margin-bottom: 16px; margin-bottom: var(--spacing-2);
.texts { .texts {
padding-top: 16px; padding-top: var(--spacing-2);
.text { .text {
padding-bottom: 16px; padding-bottom: var(--spacing-2);
} }
} }
} }
@ -72,7 +72,7 @@ main > .film {
h1 { h1 {
span { span {
display: block; display: block;
margin-bottom: 8px; margin-bottom: var(--spacing);
} }
} }
} }

View file

@ -3,6 +3,9 @@
--bg-color-2: #0099ff; --bg-color-2: #0099ff;
--bg-color-3: #ffff00; --bg-color-3: #ffff00;
--bg-color-4: #ff3399; --bg-color-4: #ff3399;
--spacing: 8px;
--spacing-2: calc(var(--spacing) * 2);
} }
@keyframes background_animation { @keyframes background_animation {

8
app/static/css/partials/_menu.scss Normal file → Executable file
View file

@ -3,8 +3,8 @@
background-color: #333; background-color: #333;
position: relative; position: relative;
height: 72px; height: 72px;
padding-left: 16px; padding-left: var(--spacing-2);
padding-top: 16px; padding-top: var(--spacing-2);
@media screen and (max-width: 799px) { @media screen and (max-width: 799px) {
padding-left: 0; padding-left: 0;
padding-right: 0; padding-right: 0;
@ -13,12 +13,12 @@
nav { nav {
display: block; display: block;
text-align: right; text-align: right;
margin-right: 16px; margin-right: var(--spacing-2);
@media screen and (max-width: 799px) { @media screen and (max-width: 799px) {
text-align: center; text-align: center;
width: 100%; width: 100%;
margin-right: 0; margin-right: 0;
margin-top: 16px; margin-top: var(--spacing-2);
} }
} }

View file

@ -41,7 +41,7 @@ main > .texts {
} }
.text { .text {
margin: 8px; margin: var(--spacing);
h1 { h1 {
font-weight: bold; font-weight: bold;
font-size: 20px; font-size: 20px;
@ -49,9 +49,9 @@ main > .texts {
} }
@media screen and (max-width: 799px) { @media screen and (max-width: 799px) {
.text { .text {
margin-bottom: 16px; margin-bottom: var(--spacing-2);
h2 { h2 {
margin-bottom: 8px; margin-bottom: var(--spacing);
} }
} }
} }