/* * myevent - style.css * * Created by Janis Hutz 03/05/2023, Licensed under the GPL V3 License * https://janishutz.com, development@janishutz.com * * */ html, body { height: 100%; width: 100%; margin: 0; padding: 0; font-size: calc(15pt + 0.4vw); font-family: sans-serif; } body { background-color: rgb(133, 191, 245); } /* This is the title div with a screenshot of the admin portal */ .title-wrapper { /* TODO: Replace with image */ background-color: white; display: flex; text-align: center; flex-direction: column; align-items: center; justify-content: center; width: 90%; padding: 2%; margin: 3%; margin-bottom: 0%; border-radius: 50px 50px 0px 0px; } /* This is the page's main content. */ .content { width: 90%; padding: 2%; margin: 3%; background-color: rgba(142, 156, 237, 0.644); border-radius: 0px 0px 50px 50px; margin-top: 0; } .button { background-color: rgb(24, 43, 61); color: white; text-decoration: none; padding: 40px; padding-bottom: 20px; padding-top: 20px; border-radius: 30px; cursor: pointer; margin: 1.5%; } #nav { position: relative; z-index: 1; height: 25vh; } @media only screen and (min-width: 999px) { #nav { height: 15vh; } .content, .title-wrapper { width: 70%; padding: 5%; margin: 10%; margin-top: 0; } .title-wrapper { margin-top: 3%; margin-bottom: 0; } }