privatecoffee-website/assets/css/base.css

29 lines
585 B
CSS

/* This file was developed as part of the Private.coffee project
It is licensed under the MIT license
See https://private.coffee for more information */
/* Make sure links in the footer are white */
footer a {
color: #fff;
}
/* Give service boxes a border */
.service {
border: 1px black solid;
border-radius: 10px;
border-spacing: 10px;
padding: 10px;
}
/* Limit size of navbar logo */
.navbar-brand-img {
max-height: 50px;
margin-right: 10px;
}
/* Add a top/bottom padding to the content section */
#content {
padding-top: 20px;
padding-bottom: 20px;
}