34 lines
642 B
SCSS
34 lines
642 B
SCSS
@import '~@ucap/lg-scss/mixins';
|
|
.index-page-call-info {
|
|
width: 100%;
|
|
height: 100%;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
.ico-page-call {
|
|
width: 166px;
|
|
height: 142px;
|
|
margin-top: -80px;
|
|
}
|
|
.call-index-copy {
|
|
font-size: 1.429em;
|
|
color: #666;
|
|
padding: 10px 20px;
|
|
border-top: 1px solid #ccc;
|
|
border-bottom: 1px solid #ccc;
|
|
margin: 50px 0 0;
|
|
}
|
|
@include screen(xs) {
|
|
.ico-page-call {
|
|
width: 120px;
|
|
height: auto;
|
|
margin-top: -40px;
|
|
}
|
|
.call-index-copy {
|
|
font-size: 1.2em;
|
|
margin: 20px 0 0;
|
|
}
|
|
}
|
|
}
|