Lae/resources/sass/app.scss

190 lines
2.9 KiB
SCSS
Raw Normal View History

2022-11-14 10:37:09 +00:00
// Fonts
2022-11-16 12:52:10 +00:00
// @import url("https://fonts.bunny.net/css?family=Nunito");
2022-11-14 10:37:09 +00:00
// Variables
@import "variables";
// Bootstrap
@import "bootstrap/scss/bootstrap";
2022-11-16 10:50:38 +00:00
2023-01-05 14:20:45 +00:00
.nav-link {
color: #000 !important;
}
2022-11-14 10:37:09 +00:00
2023-01-05 10:51:49 +00:00
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
2022-11-14 10:37:09 +00:00
h1,
h2,
h3,
h4,
h5,
h6 {
2023-01-05 10:51:49 +00:00
font-weight: 400;
2022-11-14 10:37:09 +00:00
}
2023-01-05 10:51:49 +00:00
.text-auto {
color: #333;
}
.text-reverse {
color: #fff;
}
.text-reverse:hover {
color: #fff;
}
.text-reverse:visited {
color: #fff;
}
.bg-reverse {
background-color: #333;
}
.lae-logo {
background-image: url('/assets/lae-dark.png');
background-size: 40px;
background-repeat: no-repeat;
width: 40px;
height: 25px;
/* position: relative;
top: -3px; */
}
.background-container {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-size: cover;
background-position: center;
z-index: -1;
}
td {
white-space: nowrap;
overflow: hidden;
word-break: keep-all;
}
.cursor-pointer {
cursor: pointer;
}
2022-11-14 10:37:09 +00:00
2023-01-05 10:51:49 +00:00
/*
.table-flash {
animation: flash 1s linear;
2022-11-14 10:37:09 +00:00
}
2023-01-05 10:51:49 +00:00
@keyframes flash {
from {
background-color: #f8f9fa20;
}
to {
background-color: none;
}
} */
#lottie {
background-color: transparent;
width: 100%;
height: 100%;
display: block;
overflow: hidden;
transform: translate3d(0, 0, 0);
text-align: center;
opacity: 1;
}
.img-revert {
filter: invert(0);
2022-11-14 10:37:09 +00:00
}
2022-11-16 10:50:38 +00:00
2023-01-05 10:51:49 +00:00
@media (prefers-color-scheme: dark) {
/* .background-container {
background: url('/assets/images/bg-dark.jpg');
filter: brightness(0.6);
} */
2023-01-05 14:20:45 +00:00
.nav-link {
color: unset !important;
}
2023-01-05 10:51:49 +00:00
.lae-logo {
background-image: url('/assets/lae-white.png');
}
.text-auto {
color: #fff;
}
.text-reverse {
color: #333;
}
.text-reverse:hover {
color: rgb(255, 255, 255);
}
.text-reverse:visited {
color: #333;
}
.bg-reverse {
background-color: #fff;
}
.text-auto:hover {
color: #fff !important;
}
/*.active {*/
/* color: #fff !important;*/
/*}*/
.v-md-editor {
background-color: #3b3b3b !important;
}
.v-md-editor__toolbar-item--active,
.v-md-editor__toolbar-item--active:hover {
background: #323232 !important;
}
.v-md-editor__toolbar {
border-bottom: 1px solid #606060 !important;
}
.v-md-editor__toolbar-divider::before {
border-left: 1px solid #606060 !important;
}
.v-md-editor--editable .v-md-editor__editor-wrapper {
border-right: 1px solid #606060 !important;
}
.v-md-textarea-editor pre,
.v-md-textarea-editor textarea {
color: #cacaca !important;
}
.img-revert {
filter: invert(1);
}
}
2022-11-16 10:50:38 +00:00
.placeholder {
/* --smooth-corners: 100.00;
mask-image: paint(smooth-corners);
-webkit-mask-image: paint(smooth-corners); */
border-radius: 8px;
}