mirror of
https://github.com/janishutz/libreevent.git
synced 2025-11-25 13:24:24 +00:00
65 lines
1.1 KiB
CSS
65 lines
1.1 KiB
CSS
/*
|
|
* 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;
|
|
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(255, 255, 255, 0.644);
|
|
border-radius: 0px 0px 50px 50px;
|
|
margin-top: 0%;
|
|
}
|
|
|
|
.button {
|
|
background-color: rgb(24, 43, 61);
|
|
color: white;
|
|
text-decoration: none;
|
|
padding: 5%;
|
|
padding-bottom: 3%;
|
|
padding-top: 3%;
|
|
border-radius: 30px;
|
|
cursor: pointer;
|
|
margin: 1.5%;
|
|
} |