mirror of
https://github.com/ivabus/www
synced 2024-11-22 19:25:07 +03:00
Mobile typography start
This commit is contained in:
parent
7b8fe597a9
commit
359855fa16
2 changed files with 123 additions and 20 deletions
|
@ -125,21 +125,10 @@
|
|||
</div>
|
||||
<hr>
|
||||
<div class="container package-grid">
|
||||
<div class="vl">
|
||||
<style>
|
||||
.vl {
|
||||
border-left: 2px solid #949494;
|
||||
border-right: 2px solid #949494;
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
.package-col{
|
||||
}
|
||||
</style>
|
||||
|
||||
<!-- Start Package Grid -->
|
||||
|
||||
<div class="row package-row g-0">
|
||||
<div class="row package-row black-bg g-0">
|
||||
<div class="package-col col-lg-3 col-md-4 col-sm-12 col-12">
|
||||
{{- partial "package-thumbnail.html" . -}}
|
||||
</div>
|
||||
|
@ -154,7 +143,7 @@
|
|||
</div>
|
||||
</div>
|
||||
|
||||
<div class="row package-row g-0">
|
||||
<div class="row package-row black-bg g-0">
|
||||
<div class="col-lg-3 col-md-4 col-sm-12 col-12">
|
||||
{{- partial "package-thumbnail.html" . -}}
|
||||
</div>
|
||||
|
@ -169,7 +158,7 @@
|
|||
</div>
|
||||
</div>
|
||||
|
||||
<div class="row package-row g-0">
|
||||
<div class="row package-row black-bg g-0">
|
||||
<div class="col-lg-3 col-md-4 col-sm-12 col-12">
|
||||
{{- partial "package-thumbnail.html" . -}}
|
||||
</div>
|
||||
|
@ -184,7 +173,7 @@
|
|||
</div>
|
||||
</div>
|
||||
|
||||
<div class="row g-0">
|
||||
<div class="row black-bg g-0">
|
||||
<div class="col-lg-3 col-md-4 col-sm-12 col-12">
|
||||
{{- partial "package-thumbnail.html" . -}}
|
||||
</div>
|
||||
|
@ -198,7 +187,6 @@
|
|||
{{- partial "package-thumbnail.html" . -}}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
|
|
|
@ -13,7 +13,7 @@ body{
|
|||
padding:0px;
|
||||
}
|
||||
|
||||
@media only screen and (min-width: 1280px) {
|
||||
@media only screen and (min-width: 1200px) {
|
||||
|
||||
.container{
|
||||
padding: 75px 150px 75px 150px;
|
||||
|
@ -121,10 +121,10 @@ li{
|
|||
}
|
||||
|
||||
/* Breakpoint-Specific Typography */
|
||||
/*Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.*/
|
||||
|
||||
|
||||
@media only screen and (min-width: 1280px) {
|
||||
/* Extra-Large Screens*/
|
||||
@media only screen and (min-width: 1200px) {
|
||||
|
||||
h1{
|
||||
font-size: 13.25rem;
|
||||
|
@ -161,6 +161,121 @@ li{
|
|||
font-size: 20px;
|
||||
}
|
||||
|
||||
}
|
||||
/* Medium Screens*/
|
||||
@media only screen and (min-width: 768px) and (max-width: 1200px) {
|
||||
|
||||
h1{
|
||||
font-size: 10rem;
|
||||
line-height: 10rem;
|
||||
margin-top: -20px;
|
||||
margin-left: -15px;
|
||||
}
|
||||
|
||||
h2{
|
||||
font-size: 6rem;
|
||||
line-height: 7rem;
|
||||
margin-bottom: 37px;
|
||||
}
|
||||
|
||||
h3{
|
||||
font-size: 3.8rem;
|
||||
line-height: 80px;
|
||||
margin-bottom: 45px;
|
||||
margin-top: 25px;
|
||||
}
|
||||
|
||||
h4{
|
||||
font-size: 38px;
|
||||
line-height: 45px;
|
||||
}
|
||||
|
||||
.lead{
|
||||
font-size: 28px !important;
|
||||
line-height: 29px !important;
|
||||
margin-bottom: 40px;
|
||||
}
|
||||
|
||||
p{
|
||||
font-size: 20px;
|
||||
}
|
||||
|
||||
}
|
||||
/* Small Screens */
|
||||
@media only screen and (max-width: 576px) and (max-width: 768px){
|
||||
|
||||
h1{
|
||||
font-size: 10rem;
|
||||
line-height: 10rem;
|
||||
margin-top: -20px;
|
||||
margin-left: -15px;
|
||||
}
|
||||
|
||||
h2{
|
||||
font-size: 6rem;
|
||||
line-height: 7rem;
|
||||
margin-bottom: 37px;
|
||||
}
|
||||
|
||||
h3{
|
||||
font-size: 3.8rem;
|
||||
line-height: 80px;
|
||||
margin-bottom: 45px;
|
||||
margin-top: 25px;
|
||||
}
|
||||
|
||||
h4{
|
||||
font-size: 38px;
|
||||
line-height: 45px;
|
||||
}
|
||||
|
||||
.lead{
|
||||
font-size: 28px !important;
|
||||
line-height: 29px !important;
|
||||
margin-bottom: 40px;
|
||||
}
|
||||
|
||||
p{
|
||||
font-size: 20px;
|
||||
}
|
||||
|
||||
}
|
||||
/* Extra Small Screens */
|
||||
@media only screen and (max-width: 576px) {
|
||||
|
||||
h1{
|
||||
font-size: 8rem;
|
||||
line-height: 8rem;
|
||||
}
|
||||
|
||||
h2{
|
||||
font-size: 6rem;
|
||||
line-height: 7rem;
|
||||
margin-bottom: 37px;
|
||||
}
|
||||
|
||||
h3{
|
||||
font-size: 3.8rem;
|
||||
line-height: 80px;
|
||||
margin-bottom: 45px;
|
||||
margin-top: 25px;
|
||||
}
|
||||
|
||||
h4{
|
||||
font-size: 38px;
|
||||
line-height: 45px;
|
||||
}
|
||||
|
||||
.lead{
|
||||
font-size: 28px !important;
|
||||
line-height: 29px !important;
|
||||
margin-bottom: 40px;
|
||||
}
|
||||
|
||||
p{
|
||||
font-size: 20px;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
/* Spacers & Dividers */
|
||||
|
@ -173,7 +288,7 @@ hr{
|
|||
|
||||
/* Homepage */
|
||||
|
||||
@media only screen and (min-width: 1280px) {
|
||||
@media only screen and (min-width: 1200px) {
|
||||
|
||||
.hero-section{
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue