Kumi
911152fe1b
Revamped the appearance of service boxes by introducing a new border color, increased padding, and an inset shadow, aligning them with a new coffee-themed color scheme. Modified the styling of navigation and footer elements to use the new `.bg-coffee` class, ensuring consistency across the UI. These changes improve the overall aesthetic coherence of the interface and enhance user visual experience.
34 lines
No EOL
695 B
CSS
34 lines
No EOL
695 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 #6F4E37 solid;
|
|
border-radius: 10px;
|
|
border-spacing: 10px;
|
|
padding: 30px;
|
|
box-sizing: border-box;
|
|
box-shadow: inset 0 0 10px #6F4E37;
|
|
}
|
|
|
|
/* 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;
|
|
}
|
|
|
|
.bg-coffee {
|
|
background-color: #6F4E37;
|
|
} |