mirror of
https://github.com/janishutz/libreevent.git
synced 2025-11-25 13:24:24 +00:00
initial setup of website
This commit is contained in:
28
website/css/home.css
Normal file
28
website/css/home.css
Normal file
@@ -0,0 +1,28 @@
|
||||
/*
|
||||
* myevent - home.css
|
||||
*
|
||||
* Created by Janis Hutz 03/05/2023, Licensed under the GPL V3 License
|
||||
* https://janishutz.com, development@janishutz.com
|
||||
*
|
||||
*
|
||||
*/
|
||||
|
||||
/*
|
||||
This is the feature overview on the main page
|
||||
*/
|
||||
.feature-overview {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
flex-wrap: wrap;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.feature {
|
||||
display: inline-flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
flex-direction: column;
|
||||
width: 40%;
|
||||
padding: 2%;
|
||||
}
|
||||
@@ -0,0 +1,65 @@
|
||||
/*
|
||||
* 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%;
|
||||
}
|
||||
Reference in New Issue
Block a user