MojoFrontend/styles/console.css
2022-05-03 03:15:30 -07:00

73 lines
980 B
CSS

html {
margin: 0;
padding: 0;
height: 100vh;
user-select: none;
overflow: hidden;
}
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
margin: 0;
padding: 0;
}
iframe {
border: none;
margin: 20px;
}
#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-color 0.1s ease-in-out;
}
.sidebarItem:hover {
background: #ccc;
cursor: pointer;
}
#content {
height: 100%;
width: 100%;
}