privatecoffee-website/assets/css/base.css
2023-03-09 16:18:31 +00:00

49 lines
1 KiB
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 bottom margin
Still working on a border style that I like */
.service {
margin-bottom: 10px;
/* border-radius: 5px;
border-width: 1px;
border-color: #000;
border-style: solid; */
}
/* Limit size of navbar logo and invert it */
.navbar-brand-img {
max-height: 50px;
filter: invert(50%);
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%
);
}