|
1234567891011121314151617181920212223242526 |
- /*
- # @name: custom.css
- # @version: 0.1
- # @creation_date: 2021-10-25
- # @license: The MIT License <https://opensource.org/licenses/MIT>
- # @author: Simon Bowie <ad7588@coventry.ac.uk>
- # @purpose: Custom CSS to override Bootstrap 5 defaults
- # @acknowledgements:
- # Bootstrap 5.1.3: https://getbootstrap.com/
- */
-
- body {
- font-family: 'Lato', sans-serif !important;
- min-height: 400px;
- clear: both;
- }
-
- main > .container {
- padding: 60px 15px 0;
- }
-
- .carousel-control-next,
- .carousel-control-prev,
- .carousel-indicators {
- filter: invert(100%);
- }
|