mirror of
https://github.com/SpikeHD/MojoFrontend.git
synced 2024-11-16 15:31:11 +00:00
71 lines
937 B
CSS
71 lines
937 B
CSS
html {
|
|
margin: 0;
|
|
padding: 0;
|
|
height: 100vh;
|
|
overflow: hidden;
|
|
}
|
|
|
|
body {
|
|
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
iframe {
|
|
border: none;
|
|
}
|
|
|
|
#logo {
|
|
height: 20px;
|
|
}
|
|
|
|
#main {
|
|
background-color: #fff;
|
|
color: #000;
|
|
font-size: 12px;
|
|
padding: 5px;
|
|
text-align: center;
|
|
width: 100%;
|
|
height: 100%;
|
|
overflow: hidden;
|
|
}
|
|
|
|
#right {
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: space-between;
|
|
height: 100vh;
|
|
}
|
|
|
|
#titleBar {
|
|
font-size: 3em;
|
|
padding: 20px;
|
|
text-align: left;
|
|
font-weight: bold;
|
|
}
|
|
|
|
#sidebar {
|
|
display: flex;
|
|
flex-direction: column;
|
|
height: 100%;
|
|
width: 200px;
|
|
background-color: #eee;
|
|
}
|
|
|
|
.sidebarItem {
|
|
font-size: 1.4em;
|
|
padding: 20px;
|
|
border-bottom: 1px solid #ccc;
|
|
|
|
transition: background 0.2s ease-in-out;
|
|
}
|
|
|
|
.sidebarItem:hover {
|
|
background: #ccc;
|
|
cursor: pointer;
|
|
}
|
|
|
|
#content {
|
|
height: 100%;
|
|
width: 100%;
|
|
} |