UltimateZoneBuilder/Help/index.css
2020-10-11 05:50:15 +02:00

68 lines
1.7 KiB
CSS

/***************************************************************************/
/* reset css styling */
body, header, footer, section, h1, h2, h3, h4, h5, p, ul, ol, li, menu, menuitem, iframe { margin: 0; border: none; padding: 0; }
h1, h2, h3, h4, h5 { font-family: inherit; font-weight: inherit; font-weight: inherit; text-decoration: inherit; font-style: inherit; font-size: inherit; line-height: inherit; }
/***************************************************************************/
/* base page style */
body { background: white; font: 12px/16px "Segoe UI", "Tahoma", sans-serif; color: black; }
a, a:hover, a:visited { color: #157f8d; text-decoration: none; }
a:hover { color: #0b434a; }
/***************************************************************************/
/* controls */
.vbox { display: flex; flex-direction: column; overflow: hidden; }
.hbox { display: flex; flex-direction: row; }
.view { position: relative; flex: 0 0 auto; }
.expanding { flex: 1 1 0; }
.modallayer { position: fixed; left: 0; top: 0; width: 100vw; height: 100vh; }
body { width: 100vw; height: 100vh; }
.sidepanel {
width: 300px;
background: rgb(240, 240, 240);
border-right: 1px solid rgb(200,200,200);
}
.searchbox {
margin: 10px 10px 5px 10px;
padding: 2px 10px;
border: 1px solid #dddddd;
background: white;
line-height: 25px;
}
.searchbox:focus {
outline: none;
border-color: rgb(150,150,255);
}
.listview {
overflow-y: scroll;
padding: 5px 0;
}
.listviewitem {
}
.listviewitem-text {
padding: 5px 15px;
cursor: pointer;
}
.listviewitem.selected > .listviewitem-text {
font-weight: bold;
}
.listviewitem-text:hover {
background: rgb(200,200,255);
}
.content {
border-left: 1px solid rgb(255,255,255);
}