More positioning and variables defined in scss.
This commit is contained in:
@@ -18,6 +18,10 @@ body {
|
|||||||
margin: 0;
|
margin: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
a {
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
|
||||||
.title {
|
.title {
|
||||||
text-align: center;
|
text-align: center;
|
||||||
width: fit-content;
|
width: fit-content;
|
||||||
@@ -173,6 +177,8 @@ textarea {
|
|||||||
border-bottom: 1px solid $link-color;
|
border-bottom: 1px solid $link-color;
|
||||||
font-size: 1rem;
|
font-size: 1rem;
|
||||||
margin-left: 15px;
|
margin-left: 15px;
|
||||||
|
text-decoration: none;
|
||||||
|
color: $matte-text-color;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -1,23 +1,30 @@
|
|||||||
.flex {
|
.flex {
|
||||||
display: flex;
|
display: flex;
|
||||||
|
|
||||||
& .column {
|
&.column {
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
}
|
}
|
||||||
|
|
||||||
& .row {
|
&.row {
|
||||||
flex-direction: row;
|
flex-direction: row;
|
||||||
}
|
}
|
||||||
|
|
||||||
& .wrap {
|
&.wrap {
|
||||||
flex-wrap: wrap;
|
flex-wrap: wrap;
|
||||||
}
|
}
|
||||||
|
|
||||||
&.justify-center {
|
&.justify-center {
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
}
|
}
|
||||||
|
&.justify-space-between {
|
||||||
|
justify-content: space-between;
|
||||||
|
}
|
||||||
|
|
||||||
&.align-center {
|
&.align-center {
|
||||||
align-items: center;
|
align-items: center;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.inline-block {
|
||||||
|
display: inline-block;
|
||||||
|
}
|
||||||
@@ -17,3 +17,5 @@ $red: #ef5878;
|
|||||||
$dark-red: #ec3b61;
|
$dark-red: #ec3b61;
|
||||||
|
|
||||||
$link-color: #ff5fff;
|
$link-color: #ff5fff;
|
||||||
|
|
||||||
|
$matte-text-color: #333333;
|
||||||
Reference in New Issue
Block a user