Files
lucent-laravel/front/sass/app.scss
T

177 lines
3.4 KiB
SCSS
Raw Normal View History

2023-10-02 23:10:49 +03:00
// Include any default variable overrides here (though functions won't be available)
/* SCSS HEX */
$green-crayola: #0dab76ff;
$green-pigment: #139a43ff;
$lincoln-green: #0b5d1eff;
$forest-green-traditional: #053b06ff;
$black: #000000ff;
2024-08-14 22:04:34 +03:00
$dark: #000000ff;
$white: #ffffff;
$light: #eee;
$danger: red;
2023-10-02 23:10:49 +03:00
/* SCSS Gradient */
$gradient-top: linear-gradient(
0deg,
#0dab76ff,
#139a43ff,
#0b5d1eff,
#053b06ff,
#000000ff
);
$gradient-right: linear-gradient(
90deg,
#0dab76ff,
#139a43ff,
#0b5d1eff,
#053b06ff,
#000000ff
);
$gradient-bottom: linear-gradient(
180deg,
#0dab76ff,
#139a43ff,
#0b5d1eff,
#053b06ff,
#000000ff
);
$gradient-left: linear-gradient(
270deg,
#0dab76ff,
#139a43ff,
#0b5d1eff,
#053b06ff,
#000000ff
);
$gradient-top-right: linear-gradient(
45deg,
#0dab76ff,
#139a43ff,
#0b5d1eff,
#053b06ff,
#000000ff
);
$gradient-bottom-right: linear-gradient(
135deg,
#0dab76ff,
#139a43ff,
#0b5d1eff,
#053b06ff,
#000000ff
);
$gradient-top-left: linear-gradient(
225deg,
#0dab76ff,
#139a43ff,
#0b5d1eff,
#053b06ff,
#000000ff
);
$gradient-bottom-left: linear-gradient(
315deg,
#0dab76ff,
#139a43ff,
#0b5d1eff,
#053b06ff,
#000000ff
);
$gradient-radial: radial-gradient(
#0dab76ff,
#139a43ff,
#0b5d1eff,
#053b06ff,
#000000ff
);
2024-08-14 22:04:34 +03:00
$primary: #5b86be;
$secondary: #d9cca1;
$success: #80c671;
$background: #f4f6fa;
2023-10-02 23:10:49 +03:00
$table-striped-bg-factor: 0.03;
2023-10-14 20:26:57 +03:00
$dropdown-bg: rgb(206, 223, 210);
2024-08-14 22:04:34 +03:00
$border-color: #000;
$text: #04060b;
$accent: #80c671;
2023-10-02 23:10:49 +03:00
2024-08-14 22:04:34 +03:00
//https://www.realtimecolors.com/?colors=04060b-f4f6fa-5b86be-d9cca1-80c671&fonts=Anek Telugu-Anek Telugu
$themes: (
light: (
text: #04060b,
background: #f4f6fa,
primary: #5b86be,
secondary: #d9cca1,
accent: #80c671,
),
dark: (
text: #f4f6fb,
background: #05070a,
primary: #416ca4,
secondary: #5e5126,
accent: #488e39,
),
);
//@import "../node_modules/bootstrap/scss/bootstrap";
@import "./reset";
@import "./helpers";
@import "./notice";
@import "./auth";
@import "./typography";
2023-10-02 23:10:49 +03:00
@import "./sidebar";
2024-08-14 22:04:34 +03:00
@import "./form";
2023-10-02 23:10:49 +03:00
@import "./table";
@import "./avatar";
@import "./codemirror";
2024-08-14 22:04:34 +03:00
@import "./layout";
2023-10-02 23:10:49 +03:00
@import "./wrappers";
@import "./card";
@import "./files";
@import "./revisions";
2024-08-14 22:04:34 +03:00
:root{
--linearPrimarySecondary: linear-gradient(#5b86be, #d9cca1);
--linearPrimaryAccent: linear-gradient(#5b86be, #80c671);
--linearSecondaryAccent: linear-gradient(#d9cca1, #80c671);
--radialPrimarySecondary: radial-gradient(#5b86be, #d9cca1);
--radialPrimaryAccent: radial-gradient(#5b86be, #80c671);
--radialSecondaryAccent: radial-gradient(#d9cca1, #80c671);
--border-color: $border-color;
--main-font: Open Sans, Arial, Helvetica, sans-serif;
--main-font-color: #444;
--input-bg: rgb(245,245,249);
}
2023-10-02 23:10:49 +03:00
body {
2024-08-14 22:04:34 +03:00
background-color: $background;
2023-10-02 23:10:49 +03:00
}
.btn-spinner .spinner-border {
display: none;
}
.btn-spinner.spinner-on .spinner-border {
display: inline-block;
}
.cursor-pointer {
cursor: pointer;
}
.editor-field {
padding: 22px 44px;
margin: 6px 0;
border-color: transparent;
}
.dropdown-menu {
2024-08-14 22:04:34 +03:00
border: 0;
2023-10-02 23:10:49 +03:00
border-radius: 15px;
2024-08-14 22:04:34 +03:00
box-shadow: 0 0 4px #ccc;
2023-10-02 23:10:49 +03:00
padding: 30px 15px;
}