switch to managing CSS and JS as assets
All checks were successful
Website build and deploy / build (push) Successful in 1m11s
All checks were successful
Website build and deploy / build (push) Successful in 1m11s
This commit is contained in:
199
themes/hugo-sustain/assets/scss/default.scss
Executable file
199
themes/hugo-sustain/assets/scss/default.scss
Executable file
@@ -0,0 +1,199 @@
|
||||
/* Main page with stikky-footer */
|
||||
html, body {
|
||||
height: 100%;
|
||||
background-color: #fff;
|
||||
font-family: 'Source Sans Pro', sans-serif;
|
||||
/* The html and body elements cannot have any padding or margin. */
|
||||
border-top: 3px solid #27A822;
|
||||
}
|
||||
|
||||
/* Wrapper for page content to push down footer */
|
||||
#wrap {
|
||||
padding-bottom: 50px;
|
||||
min-height: 100%;
|
||||
height: auto;
|
||||
/* Negative indent footer by its height */
|
||||
margin: 0 auto -65px;
|
||||
/* Pad bottom by footer height */
|
||||
/*padding: 0 0 60px;*/
|
||||
}
|
||||
|
||||
/* Navbar */
|
||||
.navbar-static-top {
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
.navbar-default {
|
||||
background-color: #ffffff;
|
||||
border-color: #ffffff;
|
||||
}
|
||||
.navbar-default .navbar-brand {
|
||||
color: #6b6b6b;
|
||||
}
|
||||
.navbar-default .navbar-brand:hover, .navbar-default .navbar-brand:focus {
|
||||
color: #6b6b6b;
|
||||
}
|
||||
.navbar-default .navbar-text {
|
||||
color: #6b6b6b;
|
||||
}
|
||||
.navbar-default .navbar-nav > li > a {
|
||||
color: #6b6b6b;
|
||||
}
|
||||
.navbar-default .navbar-nav > li > a:hover, .navbar-default .navbar-nav > li > a:focus {
|
||||
color: #6b6b6b;
|
||||
}
|
||||
.navbar-default .navbar-nav > .active > a, .navbar-default .navbar-nav > .active > a:hover, .navbar-default .navbar-nav > .active > a:focus {
|
||||
color: #6b6b6b;
|
||||
background-color: #ffffff;
|
||||
}
|
||||
.navbar-default .navbar-nav > .open > a, .navbar-default .navbar-nav > .open > a:hover, .navbar-default .navbar-nav > .open > a:focus {
|
||||
color: #6b6b6b;
|
||||
background-color: #ffffff;
|
||||
}
|
||||
.navbar-default .navbar-toggle {
|
||||
border-color: #ffffff;
|
||||
}
|
||||
.navbar-default .navbar-toggle:hover, .navbar-default .navbar-toggle:focus {
|
||||
background-color: #ffffff;
|
||||
}
|
||||
.navbar-default .navbar-toggle .icon-bar {
|
||||
background-color: #6b6b6b;
|
||||
}
|
||||
.navbar-default .navbar-collapse,
|
||||
.navbar-default .navbar-form {
|
||||
border-color: #6b6b6b;
|
||||
}
|
||||
.navbar-default .navbar-link {
|
||||
color: #6b6b6b;
|
||||
}
|
||||
.navbar-default .navbar-link:hover {
|
||||
color: #6b6b6b;
|
||||
}
|
||||
@media (max-width: 767px) {
|
||||
.navbar-default .navbar-nav .open .dropdown-menu > li > a {
|
||||
color: #6b6b6b;
|
||||
}
|
||||
.navbar-default .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus {
|
||||
color: #6b6b6b;
|
||||
}
|
||||
.navbar-default .navbar-nav .open .dropdown-menu > .active > a, .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus {
|
||||
color: #6b6b6b;
|
||||
background-color: #ffffff;
|
||||
}
|
||||
}
|
||||
|
||||
/* Custom page CSS */
|
||||
.container {
|
||||
width: auto;
|
||||
max-width: 800px;
|
||||
text-align: center;
|
||||
}
|
||||
.container .text-muted {
|
||||
margin: 20px 0;
|
||||
}
|
||||
.container a {
|
||||
color: #27A822;
|
||||
}
|
||||
.container a:hover {
|
||||
color: #267723;
|
||||
}
|
||||
.container p img, .img-responsive {
|
||||
display: block;
|
||||
height: auto;
|
||||
margin: 2rem auto;
|
||||
max-width: 100%;
|
||||
}
|
||||
.panel-default h4 {
|
||||
text-align: left;
|
||||
line-height: 24px;
|
||||
font-size: 22px;
|
||||
}
|
||||
.panel-default h5 {
|
||||
text-align: left;
|
||||
line-height: 30px;
|
||||
font-size: 18px;
|
||||
}
|
||||
.panel-default h6 {
|
||||
font-size: 15px;
|
||||
}
|
||||
.panel-default h4 a, h5 a {
|
||||
color: #27A822;
|
||||
}
|
||||
.panel-default h4 a:hover, h5 a:hover {
|
||||
color: #267723;
|
||||
}
|
||||
.panel{
|
||||
border-style: none;
|
||||
}
|
||||
.panel-body {
|
||||
padding-top: -10px;
|
||||
text-align: left;
|
||||
}
|
||||
.social-links {
|
||||
display: block;
|
||||
margin: 0 auto;
|
||||
margin-top: 40px;
|
||||
padding: 0px;
|
||||
width: 100%;
|
||||
text-align: center;
|
||||
animation: fade 1s ease 1s both;
|
||||
}
|
||||
.social-links li {
|
||||
display: inline-block;
|
||||
padding: 5px;
|
||||
padding-top: 0;
|
||||
text-align: center;
|
||||
}
|
||||
.social-links li a {
|
||||
font-size: 20px;
|
||||
color: #000;
|
||||
padding: 10px;
|
||||
padding-bottom: 4px;
|
||||
transition: all .4s ease;
|
||||
}
|
||||
.social-links li a:hover {
|
||||
color: #000;
|
||||
}
|
||||
.avatar {
|
||||
padding-top: 5%;
|
||||
}
|
||||
.blog-post{
|
||||
padding-top: 15px;
|
||||
}
|
||||
.blog-title{
|
||||
padding-top: 2px;
|
||||
}
|
||||
.label {
|
||||
display: inline-block;
|
||||
margin-bottom: 5px;
|
||||
}
|
||||
.related-posts h4 {
|
||||
text-align: center;
|
||||
}
|
||||
.page-not-found {
|
||||
padding-top: 20%;
|
||||
}
|
||||
.disqus {
|
||||
padding-bottom: 15px;
|
||||
}
|
||||
.blogpost{
|
||||
text-align: left;
|
||||
line-height: 30px;
|
||||
font-size: 18px;
|
||||
}
|
||||
|
||||
/* Footer */
|
||||
.footer {
|
||||
text-decoration: none !important;
|
||||
}
|
||||
.text-muted {
|
||||
color: #6b6b6b;
|
||||
}
|
||||
div.footer{
|
||||
border-bottom: 5px solid #27A822;;
|
||||
}
|
||||
/* Set the fixed height of the footer here */
|
||||
/*.footer {
|
||||
height: 50px;
|
||||
padding-bottom: 15px;
|
||||
|
||||
}*/
|
||||
Reference in New Issue
Block a user