styles-bootstrap.scss
885 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
@import "node_modules/bootstrap/scss/functions";
@import "node_modules/bootstrap/scss/variables";
@import "node_modules/bootstrap/scss/mixins";
$primary: #aa006b;
$secondary: #00acd8;
$info: #f4b223;
$light: #e6e7e9;
$dark: #61666c;
$theme-colors: (
primary: $primary,
secondary: $secondary,
info: $info,
light: $light,
dark: $dark
);
$border-radius: 1.5rem;
$border-radius-lg: 2.5rem;
$border-radius-sm: 0.5rem;
.custom-modal {
max-width: 90% !important;
& > .modal-content {
background-color: $primary !important;
color: white;
border: none !important;
border-radius: $border-radius !important;
box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}
}
.carousel-control {
visibility: hidden !important;
}
.carousel,
.carousel-inner,
.carousel-item,
.item {
height: 100% !important;
}
@import "node_modules/bootstrap/scss/bootstrap";