82 lines
1.1 KiB
SCSS
Executable File
82 lines
1.1 KiB
SCSS
Executable File
@tailwind base;
|
|
@tailwind components;
|
|
@tailwind utilities;
|
|
|
|
@import 'variables.scss';
|
|
@import 'menu.scss';
|
|
@import 'login.scss';
|
|
@import 'inputs.scss';
|
|
@import 'texts.scss';
|
|
@import 'buttons.scss';
|
|
@import 'dashboard.scss';
|
|
@import 'trix.scss';
|
|
|
|
html{
|
|
font-family: "Fira Mono", serif;
|
|
background-color: $yellow;
|
|
}
|
|
|
|
body {
|
|
display: flex;
|
|
flex-wrap: nowrap;
|
|
}
|
|
|
|
a {
|
|
font-weight: bold;
|
|
font-size: large;
|
|
color: $grey-dark;
|
|
}
|
|
|
|
main{
|
|
width: 100%;
|
|
padding: 25px;
|
|
}
|
|
|
|
.container {
|
|
color: $grey-dark;
|
|
background-color: white;
|
|
display: block;
|
|
width: 100%;
|
|
height: 100%;
|
|
border-radius: 25px;
|
|
outline: 0px solid;
|
|
padding: 1rem;
|
|
}
|
|
|
|
.flex{
|
|
display: flex;
|
|
|
|
&--end {
|
|
justify-content: flex-end;
|
|
}
|
|
|
|
&.column {
|
|
flex-direction: column;
|
|
}
|
|
}
|
|
|
|
.inline{
|
|
display: inline-flex;
|
|
}
|
|
|
|
.center {
|
|
align-items: center;
|
|
}
|
|
|
|
|
|
.right{
|
|
float: right;
|
|
}
|
|
|
|
.circle{
|
|
border-radius: 30px;
|
|
outline: 2px solid $yellow;
|
|
height: 25px;
|
|
width: 25px;
|
|
background-color:$grey-dark;
|
|
|
|
}
|
|
|
|
.none{
|
|
display: none;
|
|
} |