Style improvements for mobile

This commit is contained in:
vjrj 2018-01-19 11:04:14 +01:00
parent c79f8b5f8b
commit cd16f45d8e
28 changed files with 345 additions and 120 deletions

View file

@ -48,3 +48,5 @@ $success: $todos-palette2;
$info: $todos-palette3;
$warning: $todos-palette4;
$danger: #d9534f;
$light: #818182;

View file

@ -1,3 +1,6 @@
@import './mixins';
@import './colors';
a, a:hover {
color: $todos-palette5;
}
@ -9,3 +12,13 @@ a, a:hover {
h4.page-header {
line-height: 2em;
}
@include breakpoint(mobile) {
h4.page-header {
line-height: 1.3em;
}
}
.page-header {
margin-top: 25px;
}

View file

@ -7,6 +7,9 @@
@media (min-width: 768px) { @content; }
} @else if $point == handheld-large {
@media (min-width: 480px) { @content; }
} @else if $point == mobile {
// vjrj
@media (max-width: 480px) { @content; }
} @else {
@media (min-width: $point) { @content; }
}

View file

@ -1,3 +1,5 @@
@import './mixins';
/*!
* Start Bootstrap - New Age v4.0.0-beta.2 (https://startbootstrap.com/template-overviews/new-age)
* Copyright 2013-2017 Start Bootstrap
@ -61,6 +63,15 @@ div.section.crowd h2 {
div.section.crowd h2 {
font-size: 70px; } }
@include breakpoint(mobile) {
div.section.crowd p {
padding-left: 10px;
padding-right: 10px;
}
div.section.crowd h2 {
font-size: 35px; } }
div.section.platf .div.section-heading {
margin-bottom: 100px; }
div.section.platf .div.section-heading h2 {