2021-06-25 13:55:49 +00:00
|
|
|
@import "vars.scss";
|
|
|
|
@import "node_modules/bootstrap/scss/bootstrap";
|
|
|
|
|
|
|
|
#app {
|
|
|
|
font-family: ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,segoe ui,Roboto,helvetica neue,Arial,noto sans,sans-serif,apple color emoji,segoe ui emoji,segoe ui symbol,noto color emoji;
|
|
|
|
}
|
|
|
|
|
|
|
|
.shadow-box {
|
|
|
|
overflow: hidden;
|
|
|
|
box-shadow: 0 15px 70px rgba(0, 0, 0, .1);
|
|
|
|
padding: 10px;
|
|
|
|
border-radius: 10px;
|
|
|
|
|
|
|
|
&.big-padding {
|
|
|
|
padding: 20px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.btn {
|
|
|
|
padding-left: 20px;
|
|
|
|
padding-right: 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.btn-primary {
|
|
|
|
color: white;
|
|
|
|
|
|
|
|
&:hover, &:active, &:focus, &.active {
|
|
|
|
color: white;
|
|
|
|
background-color: $highlight;
|
|
|
|
border-color: $highlight;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-06-29 08:06:20 +00:00
|
|
|
.modal-content {
|
|
|
|
border-radius: 1rem;
|
|
|
|
backdrop-filter: blur(3px);
|
|
|
|
}
|
2021-06-25 19:03:06 +00:00
|
|
|
|