privatecoffee-website/assets/css/base.css
Kumi 83db0fac6c
Enhance (?) service box styling with border and padding
Changed the styling of the service boxes to include a solid black border, rounded corners, and padding for better visual separation and aesthetic appeal. This update gives the elements a more defined and polished look, improving the overall user interface.
2024-01-01 12:26:17 +01:00

45 lines
939 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;
}
/* Display a trans pride flag as background of the content area
Why? To trigger the people who'd ask, that's why. */
#content {
background: linear-gradient(
0,
rgba(91, 206, 250, 0.1) 20%,
rgba(245, 169, 184, 0.1) 20%,
40%,
#ffffff 40%,
60%,
rgba(245, 169, 184, 0.1) 60%,
80%,
rgba(91, 206, 250, 0.1) 80%
);
}