Initial Release - v1.0.0

This commit is contained in:
Adi Chirilov
2020-08-21 11:54:03 +03:00
parent e3e8c2db6e
commit 8295e32fc2
238 changed files with 42591 additions and 1 deletions

View File

@ -0,0 +1,94 @@
.footer{
padding: 24px 0 24px 250px;
[class*="container-"] {
padding: 0;
}
.nav {
display: inline-block;
float: left;
margin-bottom: 0;
padding-left: 30px;
list-style: none;
}
.nav-item {
display: inline-block;
&:first-child a {
padding-left: 0;
}
}
.nav-link {
color: $white;
padding: 0 $padding-base-vertical;
font-size: $font-size-sm;
text-transform: uppercase;
text-decoration: none;
&:hover {
text-decoration: none;
}
}
.copyright {
font-size: $font-size-sm;
line-height: 1.8;
color: $white;
}
&:after {
display: table;
clear: both;
content: " ";
}
}
@media screen and (max-width: 991px) {
.footer {
padding-left: 0px;
.copyright {
text-align: right;
margin-right: 15px;
}
}
}
@media screen and (min-width: 992px) {
.footer {
.copyright {
float: right;
padding-right: 30px;
}
}
}
@media screen and (max-width: 768px) {
.footer {
nav {
display: block;
margin-bottom: 5px;
float: none;
}
}
}
@media screen and (max-width: 576px) {
.footer {
text-align: center;
.copyright {
text-align: center;
}
.nav{
float: none;
padding-left: 0;
}
}
}