82 lines
No EOL
1.3 KiB
CSS
82 lines
No EOL
1.3 KiB
CSS
.flex-column {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.flex-row {
|
|
display: flex;
|
|
flex-direction: row;
|
|
}
|
|
|
|
.menu {
|
|
flex-basis: 15%;
|
|
align-items: center;
|
|
background-color: transparent;
|
|
background: #191818;
|
|
color: #565d64;
|
|
flex: 1;
|
|
flex-basis: auto;
|
|
}
|
|
|
|
.menu-header {
|
|
font-size: 30px;
|
|
padding-top: 20px;
|
|
padding-left: 10px;
|
|
padding-right: 10px;
|
|
display: block;
|
|
}
|
|
|
|
.menu-item {
|
|
font-size: 20px;
|
|
margin-top: 10px;
|
|
padding-top: 5px;
|
|
padding-left: 10px;
|
|
padding-right: 10px;
|
|
padding-bottom: 5px;
|
|
color: #999;
|
|
display: block;
|
|
text-decoration: none;
|
|
}
|
|
|
|
.menu-item:hover {
|
|
background-color: #232222;
|
|
}
|
|
|
|
.content {
|
|
flex-basis: 80%;
|
|
padding-left: 5%;
|
|
padding-right: 5%;
|
|
}
|
|
|
|
.content-header {
|
|
margin: 0;
|
|
color: #333;
|
|
text-align: center;
|
|
padding: 2.5em 2em 0;
|
|
border-bottom: 1px solid #eee;
|
|
}
|
|
.content-header h1 {
|
|
margin: 0.2em 0;
|
|
font-size: 3em;
|
|
font-weight: 300;
|
|
}
|
|
.content-header h2 {
|
|
font-weight: 300;
|
|
color: #ccc;
|
|
padding: 0;
|
|
margin-top: 0;
|
|
}
|
|
|
|
.stream-div {
|
|
align-items: center;
|
|
}
|
|
|
|
.debug-img-div {
|
|
flex-basis: 30%;
|
|
align-self: stretch;
|
|
|
|
}
|
|
|
|
.debug-img {
|
|
max-width: 100%;
|
|
} |