2018-11-24 14:10:43 +00:00
|
|
|
.flex {
|
|
|
|
display: flex;
|
|
|
|
}
|
|
|
|
|
|
|
|
.justify-start {
|
|
|
|
justify-content: flex-start;
|
|
|
|
}
|
|
|
|
|
|
|
|
.justify-end {
|
|
|
|
justify-content: flex-end;
|
|
|
|
}
|
|
|
|
|
|
|
|
.justify-center {
|
|
|
|
justify-content: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.justify-between {
|
|
|
|
justify-content: space-between;
|
|
|
|
}
|
|
|
|
|
|
|
|
.align-center {
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mx-auto {
|
|
|
|
margin: 0 auto;
|
|
|
|
}
|
|
|
|
|
2019-01-24 22:30:31 +00:00
|
|
|
.mr-auto {
|
|
|
|
margin-right: auto;
|
|
|
|
}
|
|
|
|
|
2018-11-25 12:30:25 +00:00
|
|
|
.hide {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2018-11-24 14:10:43 +00:00
|
|
|
@mixin fixed {
|
|
|
|
position: fixed;
|
|
|
|
top: 0;
|
|
|
|
bottom: 0;
|
2018-11-25 11:38:58 +00:00
|
|
|
overflow-x: hidden;
|
|
|
|
overflow-y: auto;
|
2018-11-24 14:10:43 +00:00
|
|
|
}
|
|
|
|
|
2018-11-25 12:30:25 +00:00
|
|
|
@mixin dark-links {
|
|
|
|
a {
|
2019-03-25 18:32:02 +00:00
|
|
|
color: $color-dark-link;
|
2018-11-25 12:30:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
a.active {
|
|
|
|
color: $color-link;
|
|
|
|
}
|
|
|
|
}
|