|
|
|
|
@ -1,4 +1,5 @@
|
|
|
|
|
@use "sass:map";
|
|
|
|
|
|
|
|
|
|
$enable-rounded: true !default;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@ -11,27 +12,27 @@ $enable-rounded: true !default;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.web-card-background{
|
|
|
|
|
.web-card-background {
|
|
|
|
|
background-color: map-get($theme-colors, inactivecard);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.web-card-background:hover{
|
|
|
|
|
.web-card-background:hover {
|
|
|
|
|
background-color: map-get($theme-colors, activecard);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.web-card-background:hover .text-header{
|
|
|
|
|
.web-card-background:hover .text-header {
|
|
|
|
|
color: map-get($theme-colors, headertextcolorhover);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.web-card-background:hover .text-paragraph{
|
|
|
|
|
.web-card-background:hover .text-paragraph {
|
|
|
|
|
color: map-get($theme-colors, paragraphtextcolorhover);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.web-card-background:hover .web-card-image-background{
|
|
|
|
|
.web-card-background:hover .web-card-image-background {
|
|
|
|
|
background-color: map-get($theme-colors, webcardimagebackgroundhover);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.web-card-image-background{
|
|
|
|
|
.web-card-image-background {
|
|
|
|
|
background-color: map-get($theme-colors, webcardimagebackground);
|
|
|
|
|
border-radius: 50%;
|
|
|
|
|
}
|
|
|
|
|
@ -40,7 +41,7 @@ $enable-rounded: true !default;
|
|
|
|
|
color: map-get($theme-colors, headertextcolor);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.text-paragraph{
|
|
|
|
|
.text-paragraph {
|
|
|
|
|
color: map-get($theme-colors, paragraphtextcolor);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@ -48,11 +49,11 @@ $enable-rounded: true !default;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
html{
|
|
|
|
|
html {
|
|
|
|
|
height: 100%
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
body{
|
|
|
|
|
body {
|
|
|
|
|
height: 100%;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@ -73,4 +74,8 @@ body{
|
|
|
|
|
border-color: map-get($theme-colors, activeborderaccordion);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.form-control::-webkit-input-placeholder {
|
|
|
|
|
color: map-get($theme-colors, searchfont) !important;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|