Home page and news page are finished
This commit is contained in:
58
resources/assets/sass/components/_box.scss
vendored
Normal file
58
resources/assets/sass/components/_box.scss
vendored
Normal file
@@ -0,0 +1,58 @@
|
||||
.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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user