| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- /* Font Declaration */
- @font-face {
- font-family: 'NunitoReg';
- src: url('/static/fonts/nunito/Nunito-Regular.ttf');
- }
- h1, h3, a, p {
- font-family: 'NunitoReg';
- }
- h1 {
- margin: 20px 0 20px 0;
- }
- /* Major */
- body {
- padding-bottom: 50px;
- }
- /* Navbar */
- nav.navbar {
- background-color: #ff3333;
- max-width: 50%;
- position: relative;
- margin: auto;
- border-radius: 0 0 25px 25px;
- }
- .navbar-brand {
- filter: invert(100%) sepia(3%) saturate(0%) hue-rotate(271deg) brightness(104%) contrast(101%);
- width: 50px;
- }
- nav a, .navbar-text, .navbar-toggler-icon {
- color: white;
- }
- .navbar-text {
- font-weight: bolder;
- font-size: large;
- padding-right: 20px;
- }
- /* Images */
- img {
- max-width: 250px;
- max-height: 250px;
- margin: 20px 0 20px 0;
- }
- /* Input */
- .btn {
- background-color: #ff3333;
- border-color: #ff3333;
- }
- input {
- max-width: 200px;
- }
- /* Backgrounds */
- .matchbook-bg {
- /*background-color: #ffb3b3;*/
- background-color: white;
- width: 500px;
- border-radius: 25%;
- }
|