privatecoffee-website/assets/css/base.css

34 lines
695 B
CSS
Raw Normal View History

2023-03-09 16:18:31 +00:00
/* 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 */
2023-03-09 16:18:31 +00:00
.service {
2024-04-14 09:49:48 +00:00
border: 2px #b6fff4 solid;
border-radius: 10px;
border-spacing: 10px;
padding: 30px;
box-sizing: border-box;
2024-04-14 09:49:48 +00:00
box-shadow: inset 0 0 10px #ffb6c1;
2023-03-09 16:18:31 +00:00
}
2023-11-05 09:36:47 +00:00
/* Limit size of navbar logo */
2023-03-09 16:18:31 +00:00
.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;
}
.bg-coffee {
2024-04-14 09:49:48 +00:00
background-color: #ffb6c1;
}