mirror of
https://github.com/chylex/Minecraft-Phantom-Panel.git
synced 2024-11-24 13:42:53 +01:00
48 lines
692 B
CSS
48 lines
692 B
CSS
@import url('../lib/bootstrap/bootstrap.min.css');
|
|
@import url('../lib/openiconic/css/open-iconic-bootstrap.min.css');
|
|
@import url('./blazor.css');
|
|
|
|
.body {
|
|
position: relative;
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.sidebar {
|
|
background-image: linear-gradient(180deg, #0f6477 200px, #1b3d59 1000px);
|
|
}
|
|
|
|
@media (min-width: 801px) {
|
|
.body {
|
|
flex-direction: row;
|
|
}
|
|
|
|
.sidebar {
|
|
position: sticky;
|
|
top: 0;
|
|
width: 250px;
|
|
height: 100vh;
|
|
}
|
|
}
|
|
|
|
main {
|
|
flex: 1;
|
|
padding: 1.1rem 1.5rem 0;
|
|
}
|
|
|
|
h1:focus {
|
|
outline: none;
|
|
}
|
|
|
|
code {
|
|
font-size: 0.925rem;
|
|
}
|
|
|
|
.table > :not(:first-child) {
|
|
border-top: 2px solid #a6a6a6;
|
|
}
|
|
|
|
.form-range {
|
|
height: 2.5rem;
|
|
}
|