8800-simulator/css/style.css

89 lines
1.6 KiB
CSS
Raw Normal View History

body {
background-color: #f0f0f0;
2020-03-07 05:15:35 -05:00
font-family: "Lucida Console","Courier New",Courier,monospace;
font-size: 14px;
}
body, div, img {
border: 0;
margin: 0;
padding: 0;
}
header {
width: 100%;
overflow: hidden;
}
#header-bar {
background-color: #333;
color: #eee;
display: flex;
flex-direction: row;
flex-wrap: nowrap;
justify-content: center;
2020-03-08 05:35:58 -04:00
line-height: 2em;
padding: 5px 20px 5px 20px;
}
#subheader-bar {
background-color: #aaa;
color: #eee;
display: flex;
flex-direction: row;
flex-wrap: nowrap;
justify-content: center;
2020-03-08 05:35:58 -04:00
line-height: 1.5em;
padding: 5px 20px 5px 20px;
}
nav {
background-color: #ddd;
border-bottom: 1px #ccc solid;
2020-03-07 05:15:35 -05:00
color: #222;
display: flex;
flex-direction: row;
flex-wrap: nowrap;
justify-content: space-between;
2020-03-08 05:35:58 -04:00
line-height: 1.5em;
padding: 5px 20px 5px 20px;
}
.nav-item {
2020-03-08 05:35:58 -04:00
background-color: #eee;
border-left: 1px solid #fff;
border-right: 1px solid #ccc;
cursor: pointer;
2020-03-08 05:35:58 -04:00
flex-grow: 1;
padding: 3px 10px 3px 10px;
text-align: center;
user-select: none;
2020-03-07 23:50:04 -05:00
-moz-user-select: none;
-ms-user-select: none;
-webkit-user-select: none;
}
2020-03-08 05:35:58 -04:00
nav .selected {
background-color: #ccc;
cursor: auto;
font-weight: bold;
}
main {
margin: 8px;
}
2020-03-07 23:50:04 -05:00
#panel {
user-select: none;
-moz-user-select: none;
-ms-user-select: none;
-webkit-user-select: none;
}
footer {
2020-03-08 05:39:04 -04:00
border-top: #ccc 1px solid;
font-size: 11px;
2020-03-08 05:39:04 -04:00
margin: 20px 8px 0 8px;
text-align: center;
}