| 1 |
@import "variables.scss"; |
| 2 |
|
| 3 |
.wtotem_container { |
| 4 |
max-width: 1020px; |
| 5 |
margin: 0 auto; |
| 6 |
} |
| 7 |
|
| 8 |
.wtotem_title-info { |
| 9 |
&__title { |
| 10 |
font-size: 14px; |
| 11 |
text-transform: uppercase; |
| 12 |
} |
| 13 |
|
| 14 |
&__info { |
| 15 |
background: url("../img/info-gray.svg") no-repeat center center / cover; |
| 16 |
display: inline-block; |
| 17 |
vertical-align: middle; |
| 18 |
width: 17px; |
| 19 |
height: 17px; |
| 20 |
margin-top: -2px; |
| 21 |
} |
| 22 |
} |
| 23 |
|
| 24 |
.title { |
| 25 |
//h2 |
| 26 |
font-size: 24px; |
| 27 |
font-weight: 700; |
| 28 |
} |
| 29 |
|
| 30 |
.section-header-mb { |
| 31 |
margin-bottom: 25px; |
| 32 |
} |
| 33 |
|
| 34 |
.arrow-right { |
| 35 |
color: $c-blue; |
| 36 |
cursor: pointer; |
| 37 |
display: flex; |
| 38 |
align-items: center; |
| 39 |
&:after { |
| 40 |
content: ""; |
| 41 |
border: solid $c-blue; |
| 42 |
border-width: 0 1px 1px 0; |
| 43 |
display: inline-block; |
| 44 |
padding: 3px; |
| 45 |
transform: rotate(-45deg); |
| 46 |
-webkit-transform: rotate(-45deg); |
| 47 |
margin-left: 10px; |
| 48 |
} |
| 49 |
} |
| 50 |
|
| 51 |
.wtotem_print { |
| 52 |
display: flex; |
| 53 |
align-items: center; |
| 54 |
cursor: pointer; |
| 55 |
&__img { |
| 56 |
display: block; |
| 57 |
width: 17px; |
| 58 |
height: 17px; |
| 59 |
margin-right: 10px; |
| 60 |
background: url("../img/print.svg") no-repeat center center / cover; |
| 61 |
} |
| 62 |
|
| 63 |
&__label { |
| 64 |
color: #86939e; |
| 65 |
} |
| 66 |
} |
| 67 |
|
| 68 |
.card { |
| 69 |
box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.05); |
| 70 |
border-radius: 4px; |
| 71 |
background: #fff; |
| 72 |
} |
| 73 |
|
| 74 |
/* 576-768px sm Small */ |
| 75 |
@media screen and (max-width: 768px) { |
| 76 |
.section-header-mb { |
| 77 |
margin-bottom: 20px; |
| 78 |
} |
| 79 |
|
| 80 |
.arrow-right { |
| 81 |
&:after { |
| 82 |
margin-left: 5px; |
| 83 |
} |
| 84 |
} |
| 85 |
} |
| 86 |
|