92 lines
1.0 KiB
SCSS
92 lines
1.0 KiB
SCSS
|
/*----------------------------------------*/
|
||
|
/* Template default CSS
|
||
|
/*----------------------------------------*/
|
||
|
|
||
|
// Google Font load
|
||
|
@import url('https://fonts.googleapis.com/css?family=Montserrat:400,400i,500,500i,600,600i,700,700i&display=swap');
|
||
|
|
||
|
html,
|
||
|
body {
|
||
|
height: 100%;
|
||
|
font-family: $font_1;
|
||
|
-webkit-font-smoothing: antialiased;
|
||
|
}
|
||
|
|
||
|
body {
|
||
|
padding-left: 90px;
|
||
|
@media #{ $xs_mobile} {
|
||
|
padding-left: 60px;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
h1,
|
||
|
h2,
|
||
|
h3,
|
||
|
h4,
|
||
|
h5,
|
||
|
h6 {
|
||
|
margin: 0;
|
||
|
color: $heading_color;
|
||
|
font-weight: 600;
|
||
|
}
|
||
|
|
||
|
h1 {
|
||
|
font-size: 70px;
|
||
|
}
|
||
|
|
||
|
h2 {
|
||
|
font-size: 36px;
|
||
|
}
|
||
|
|
||
|
h3 {
|
||
|
font-size: 30px;
|
||
|
}
|
||
|
|
||
|
h4 {
|
||
|
font-size: 24px;
|
||
|
}
|
||
|
|
||
|
h5 {
|
||
|
font-size: 18px;
|
||
|
}
|
||
|
|
||
|
h6 {
|
||
|
font-size: 16px;
|
||
|
}
|
||
|
|
||
|
p {
|
||
|
font-size: 15px;
|
||
|
color: $p_color;
|
||
|
line-height: 1.8;
|
||
|
}
|
||
|
|
||
|
img {
|
||
|
max-width: 100%;
|
||
|
}
|
||
|
|
||
|
input,
|
||
|
select,
|
||
|
button,
|
||
|
textarea {
|
||
|
&:focus {
|
||
|
outline: none;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
a:hover,
|
||
|
a:focus {
|
||
|
text-decoration: none;
|
||
|
outline: none;
|
||
|
}
|
||
|
|
||
|
ul,
|
||
|
ol {
|
||
|
padding: 0;
|
||
|
margin: 0;
|
||
|
}
|
||
|
|
||
|
@media (min-width: 1200px) {
|
||
|
.container {
|
||
|
max-width: 1200px;
|
||
|
}
|
||
|
}
|