103 lines
1.5 KiB
SCSS
103 lines
1.5 KiB
SCSS
$mat-card-header-size: 40px !default;
|
|
|
|
.my-mat-card-avatar {
|
|
height: $mat-card-header-size;
|
|
width: $mat-card-header-size;
|
|
border-radius: 50%;
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
.progress-bar {
|
|
top: 80px;
|
|
left: 0;
|
|
width: 100%;
|
|
position: fixed;
|
|
z-index: 4;
|
|
}
|
|
|
|
.fixed-navbar {
|
|
position: fixed;
|
|
z-index: 1000;
|
|
height: 80px;
|
|
|
|
display: flex;
|
|
background: #ffffff 0% 0% no-repeat padding-box;
|
|
box-shadow: 0px 0px 6px #00000029;
|
|
opacity: 1;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
}
|
|
|
|
.logo {
|
|
width: 98px;
|
|
height: 37px;
|
|
margin-top: 15px;
|
|
margin-left: 5px;
|
|
}
|
|
|
|
.faq-title {
|
|
text-align: left;
|
|
font: Bold 15px/18px "Roboto";
|
|
letter-spacing: 0px;
|
|
color: #000000;
|
|
opacity: 1;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.faq-title:hover {
|
|
color: #23bcba;
|
|
}
|
|
|
|
.lang {
|
|
opacity: 0.8;
|
|
}
|
|
|
|
.hamburger {
|
|
display: inline-block;
|
|
cursor: pointer;
|
|
padding: 0.4rem 1.5rem 0rem;
|
|
}
|
|
|
|
.icon-bar1,
|
|
.icon-bar2,
|
|
.icon-bar3 {
|
|
width: 18px;
|
|
height: 2px;
|
|
background-color: #333;
|
|
margin: 3px 0;
|
|
transition: 0.4s;
|
|
}
|
|
|
|
.change .icon-bar1 {
|
|
-webkit-transform: rotate(-45deg) translate(-3px, 3px);
|
|
transform: rotate(-45deg) translate(-3px, 3px);
|
|
}
|
|
|
|
.change .icon-bar2 {
|
|
opacity: 0;
|
|
}
|
|
|
|
.change .icon-bar3 {
|
|
-webkit-transform: rotate(45deg) translate(-4px, -4px);
|
|
transform: rotate(45deg) translate(-4px, -4px);
|
|
}
|
|
|
|
::ng-deep.lang-parent {
|
|
width: fit-content !important;
|
|
min-width: auto !important;
|
|
}
|
|
|
|
.mat-dialog-container {
|
|
display: block;
|
|
padding: 24px;
|
|
border-radius: 4px;
|
|
box-sizing: border-box;
|
|
overflow: auto;
|
|
outline: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
min-height: inherit;
|
|
max-height: inherit;
|
|
}
|