You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
126 lines
2.7 KiB
SCSS
126 lines
2.7 KiB
SCSS
@use "sass:map";
|
|
|
|
$enable-rounded: true !default;
|
|
|
|
|
|
@import "node_modules/bootstrap/scss/bootstrap";
|
|
@import "node_modules/bootstrap/scss/functions";
|
|
@import "node_modules/bootstrap/scss/variables";
|
|
@import "node_modules/bootstrap/scss/mixins";
|
|
|
|
.web-card {
|
|
cursor: pointer;
|
|
}
|
|
|
|
.web-card-background {
|
|
background-color: map-get($theme-colors, inactivecard);
|
|
}
|
|
|
|
.web-card-background:hover {
|
|
background-color: map-get($theme-colors, activecard);
|
|
}
|
|
|
|
.web-card-background:hover .text-header {
|
|
color: map-get($theme-colors, headertextcolorhover);
|
|
}
|
|
|
|
.web-card-background:hover .text-paragraph {
|
|
color: map-get($theme-colors, paragraphtextcolorhover);
|
|
}
|
|
|
|
.web-card-background:hover .web-card-image-background {
|
|
background-color: map-get($theme-colors, webcardimagebackgroundhover);
|
|
}
|
|
|
|
.web-card-image-background {
|
|
background-color: map-get($theme-colors, webcardimagebackground);
|
|
border-radius: 50%;
|
|
}
|
|
|
|
.text-header {
|
|
color: map-get($theme-colors, headertextcolor);
|
|
}
|
|
|
|
.text-paragraph {
|
|
color: map-get($theme-colors, paragraphtextcolor);
|
|
}
|
|
|
|
.no-overflow {
|
|
overflow: hidden;
|
|
}
|
|
|
|
html {
|
|
height: 100%
|
|
}
|
|
|
|
body {
|
|
height: 100%;
|
|
}
|
|
|
|
.category-header {
|
|
border: 1px solid;
|
|
border-radius: 5px;
|
|
cursor: pointer;
|
|
margin-bottom: 4px;
|
|
background-color: map-get($theme-colors, inactiveaccordion);
|
|
color: map-get($theme-colors, inactivetextaccordion);
|
|
border-color: map-get($theme-colors, inactiveborderaccordion);
|
|
}
|
|
|
|
.category-header.active {
|
|
margin-bottom: 25px;
|
|
background-color: map-get($theme-colors, activeaccordion);
|
|
color: map-get($theme-colors, activetextaccordion);
|
|
border-color: map-get($theme-colors, activeborderaccordion);
|
|
}
|
|
|
|
.form-control::-webkit-input-placeholder {
|
|
color: map-get($theme-colors, searchhint) !important;
|
|
}
|
|
|
|
.sb-example-1 .search {
|
|
width: 100%;
|
|
position: relative;
|
|
display: flex;
|
|
}
|
|
|
|
.sb-example-1 .searchTerm {
|
|
width: 100%;
|
|
border: 1px solid;
|
|
border-color: map-get($theme-colors, boxborder2);
|
|
border-right: none;
|
|
padding-left: 15px;
|
|
padding-right: 15px;
|
|
border-radius: 25px 0 0 25px;
|
|
stroke: map-get($theme-colors, searchicon);
|
|
background-color: map-get($theme-colors, info);
|
|
box-shadow: none;
|
|
}
|
|
|
|
.sb-example-1 .searchTerm:focus{
|
|
stroke: map-get($theme-colors, searchicon);
|
|
background-color: map-get($theme-colors, info);
|
|
box-shadow: none;
|
|
}
|
|
|
|
.sb-example-1 .searchbutton {
|
|
width: 40px;
|
|
height: 50px;
|
|
border: 1px solid;
|
|
border-color: map-get($theme-colors, boxborder2);
|
|
background-color: map-get($theme-colors, info);
|
|
text-align: center;
|
|
stroke: map-get($theme-colors, searchicon);
|
|
border-radius: 0 25px 25px 0;
|
|
cursor: pointer;
|
|
font-size: 15px;
|
|
box-shadow: none;
|
|
}
|
|
|
|
.sb-example-1 .searchButton i{
|
|
color: #0000ff;
|
|
background-color: #ff0000;
|
|
}
|
|
|
|
|