lure-web/src/app.scss

68 lines
1.4 KiB
SCSS
Raw Normal View History

2022-12-20 19:54:09 +00:00
/* Write your global styles here, in SCSS syntax. Variables and mixins from the src/variables.scss file are available here without importing */ /* Import only what you need from Bulma */
@import 'bulma/sass/utilities/_all';
@import 'bulma/sass/base/_all';
@import 'bulma/sass/elements/_all';
@import 'bulma/sass/form/_all';
@import 'bulma/sass/components/_all';
@import 'bulma/sass/grid/_all';
@import 'bulma/sass/helpers/_all';
@import 'bulma/sass/layout/_all';
@import './darkly/overrides.scss';
.input::placeholder {
color: darken($grey-light, 10) !important;
opacity: 1;
}
.input::-webkit-input-placeholder {
color: darken($grey-light, 10) !important;
opacity: 1;
}
.input::-moz-placeholder {
color: darken($grey-light, 10) !important;
opacity: 1;
}
.input::-ms-input-placeholder {
color: darken($grey-light, 10) !important;
opacity: 1;
}
pre {
background-color: transparent;
2022-12-21 21:26:39 +00:00
}
.terminal-player {
max-width: 735px;
max-height: 450px;
}
.sc-carousel__carousel-container {
--sc-arrow-size: 3px;
}
button.sc-carousel-arrow__circle {
width: 30px !important;
height: 30px !important;
2022-12-26 01:10:35 +00:00
}
2022-12-26 03:29:30 +00:00
body {
2022-12-26 01:10:35 +00:00
margin: 0;
}
2022-12-26 03:29:30 +00:00
#page-container {
display: flex;
flex-direction: column;
min-height: 100vh;
}
#page-container > * {
width: 100%
2023-08-10 02:14:07 +00:00
}
.hljs {
background: $grey-darker !important;
border-radius: 15px;
2022-12-20 19:54:09 +00:00
}