59 lines
982 B
SCSS
Vendored
59 lines
982 B
SCSS
Vendored
.box_header {
|
|
span {
|
|
font-family: Nunito, serif;
|
|
font-size: 20px;
|
|
font-weight: bold;
|
|
color: #0f259d;
|
|
border-bottom: 3px solid #0f259d;
|
|
display: inline-block;
|
|
text-transform: uppercase;
|
|
height: 30px;
|
|
}
|
|
border-bottom: 1px solid #efefef;
|
|
}
|
|
.box {
|
|
display: inline-block;
|
|
width: auto;
|
|
padding: 30px 23px 30px 30px;
|
|
border-radius: 3px;
|
|
box-shadow: 0 0 15px 0 rgba(35, 31, 32, 0.1);
|
|
background-color: #fff;
|
|
margin-bottom: 50px;
|
|
|
|
&.full-width {
|
|
width: CALC(100% - 60px);
|
|
}
|
|
}
|
|
.tabs {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
.box_header {
|
|
span {
|
|
color: #999;
|
|
border-bottom: none;
|
|
cursor: pointer;
|
|
}
|
|
|
|
&.small span {
|
|
font-size: 13px;
|
|
}
|
|
|
|
&.medium span {
|
|
font-size: 18px;
|
|
}
|
|
|
|
&.active, &:hover {
|
|
span {
|
|
color: #0f259d;
|
|
border-bottom: 3px solid #0f259d;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
.tab_content {
|
|
display: none;
|
|
&.active {
|
|
display: block;
|
|
}
|
|
}
|