Added some basic styles

This commit is contained in:
Johanna Dorothea Reichmann 2019-03-04 15:30:10 +01:00
parent 0c6c387a14
commit 7f2957a4b8
No known key found for this signature in database
GPG Key ID: 03624C433676E465
1 changed files with 39 additions and 0 deletions

39
main.css Normal file
View File

@ -0,0 +1,39 @@
html, body {
width: 100%;
background-color: #222222;
color: #FFFFFF;
}
.event_container {
width: 50%;
padding: 20px;
margin: 10px auto;
border-radius: 20px;
background-color: #333333;
}
.event_container p {
margin: 0;
padding: 0;
}
.event_container .title {
font-size: x-large;
float: left;
}
.event_container .date {
font-size: x-large;
float: right;
}
.event_container .description {
clear: both;
}
.event_container .countdown {
font-size: 300%;
font-weight: bold;
text-align: center;
margin: 5px 0px;
color: #ff33cc;
}