Launch prep
This commit is contained in:
221
static/style.css
221
static/style.css
@ -1,84 +1,137 @@
|
||||
body {
|
||||
background-color: black;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
nav ul {
|
||||
list-style-type: none;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
width: 200px;
|
||||
background-color: #333;
|
||||
position: fixed;
|
||||
top: 0;
|
||||
left: 0;
|
||||
height: 100%;
|
||||
overflow-y: auto;
|
||||
}
|
||||
|
||||
nav li {
|
||||
border-top: none;
|
||||
}
|
||||
|
||||
nav li.start a {
|
||||
border-top: 3px solid white;
|
||||
}
|
||||
|
||||
nav li a {
|
||||
display: block;
|
||||
color: white;
|
||||
padding: 12px 16px;
|
||||
text-decoration: none;
|
||||
margin-top: 5px;
|
||||
}
|
||||
|
||||
nav li a:hover {
|
||||
background-color: red;
|
||||
}
|
||||
|
||||
.cs1 {
|
||||
margin-left: 220px;
|
||||
padding: 20px;
|
||||
}
|
||||
|
||||
.cs {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
flex-direction: column;
|
||||
margin-left: 220px;
|
||||
padding: 20px;
|
||||
}
|
||||
|
||||
|
||||
.container {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
/* Reihen */
|
||||
.row {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
.box {
|
||||
width: 200px;
|
||||
height: 200px;
|
||||
border: 2px solid red;
|
||||
margin: 5px;
|
||||
}
|
||||
|
||||
|
||||
.cs1 h1 {
|
||||
color: white;
|
||||
}
|
||||
|
||||
.notification-icon {
|
||||
position: fixed;
|
||||
top: 10px;
|
||||
right: 10px;
|
||||
width:50px;
|
||||
|
||||
}
|
||||
:root {
|
||||
--numBoxes: 2;
|
||||
--numRows: 2;
|
||||
}
|
||||
|
||||
body {
|
||||
background-color: black;
|
||||
font-family: "Asap", "Calibri", "Arial", sans-serif;
|
||||
font-size: 150%;
|
||||
margin: 0;
|
||||
color: white;
|
||||
}
|
||||
|
||||
nav ul {
|
||||
list-style-type: none;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
width: 200px;
|
||||
background-color: #333;
|
||||
position: fixed;
|
||||
top: 0;
|
||||
left: 0;
|
||||
height: 100%;
|
||||
overflow-y: auto;
|
||||
}
|
||||
|
||||
nav li {
|
||||
border-top: none;
|
||||
}
|
||||
|
||||
nav li.top {
|
||||
border-style: solid;
|
||||
border-radius: 5px;
|
||||
border-color: white;
|
||||
margin: 10px;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
nav a.top:hover {
|
||||
background: transparent;
|
||||
}
|
||||
|
||||
nav li.start a {
|
||||
border-top: 3px solid white;
|
||||
margin-top: 20px;
|
||||
padding-top: 30px;
|
||||
}
|
||||
|
||||
nav a.top.selected {
|
||||
color: red;
|
||||
}
|
||||
|
||||
nav li.top.selected {
|
||||
border-color: red;
|
||||
}
|
||||
|
||||
nav li a.selected {
|
||||
background-color: black;
|
||||
color: white;
|
||||
}
|
||||
|
||||
nav li a {
|
||||
display: block;
|
||||
color: white;
|
||||
padding: 12px 16px;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
nav li a:hover {
|
||||
background-color: red;
|
||||
}
|
||||
|
||||
nav li .bottom {
|
||||
position: absolute;
|
||||
bottom: 0;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.cs1 {
|
||||
margin-left: 220px;
|
||||
padding: 20px;
|
||||
}
|
||||
|
||||
.cs {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
flex-direction: column;
|
||||
padding: 20px;
|
||||
}
|
||||
|
||||
.container {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
/* Reihen */
|
||||
.row {
|
||||
display: flex;
|
||||
justify-content: space-evenly;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
.box {
|
||||
width: calc(100% / var(--numBoxes));
|
||||
height: 300px;
|
||||
border: 5px solid red;
|
||||
margin: 5px;
|
||||
border-radius: 10px;
|
||||
}
|
||||
|
||||
.cs1 h1 {
|
||||
margin-left: 0;
|
||||
}
|
||||
|
||||
.notification-icon {
|
||||
position: fixed;
|
||||
top: 10px;
|
||||
right: 10px;
|
||||
width: 50px;
|
||||
}
|
||||
|
||||
input {
|
||||
width: 150px;
|
||||
height: 50px;
|
||||
}
|
||||
|
||||
input[type=url], input[type=email], input[type=password] {
|
||||
width: 500px;
|
||||
}
|
||||
|
||||
select {
|
||||
width: 200px;
|
||||
height: 50px;
|
||||
}
|
||||
|
||||
/*# sourceMappingURL=style.css.map */
|
||||
|
||||
Reference in New Issue
Block a user