Header Color now accept hex value + Navigation Color Option added + Make font size smaller for mobile devices for landing page

This commit is contained in:
ahmadbilalkhalid 2020-01-22 23:18:05 +05:00
commit a5c4ad4a60
5 changed files with 41 additions and 15 deletions

View file

@ -1,7 +1,30 @@
:root {
font-size: 16px;
font-size: 14px;
}
h3 {
font-size: 1.5rem;
}
h2 {
font-size: 1.75rem;
}
.mb-5 {
margin-bottom: 1.5rem !important;
}
/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {
:root {
font-size: 16px;
}
.mb-5 {
margin-bottom: 3rem !important;
}
}
.blue-bg {
background-color: #40a9e3;
}