mirror of
https://github.com/Karaka-Management/oms-OnlineResourceWatcher.git
synced 2026-01-24 13:48:42 +00:00
119 lines
1.6 KiB
CSS
Executable File
119 lines
1.6 KiB
CSS
Executable File
html, body {
|
|
height: 100%;
|
|
min-height: 100%;
|
|
margin: 0;
|
|
overflow-x: hidden;
|
|
overflow-y: hidden;
|
|
font-family: Open Sans, sans-serif;
|
|
font-size: 1.0rem;
|
|
}
|
|
|
|
main {
|
|
height: 100%;
|
|
width: 600%;
|
|
|
|
background: #263729;
|
|
transition: margin 700ms;
|
|
}
|
|
|
|
.logo {
|
|
float: right;
|
|
}
|
|
|
|
.page {
|
|
float: left;
|
|
background: #2f2f2f;
|
|
min-height: 100%;
|
|
width: 16.666%;
|
|
text-align: center;
|
|
height: 100%;
|
|
overflow-y: auto;
|
|
}
|
|
|
|
section {
|
|
background: #f0f0f0;
|
|
display: inline-block;
|
|
margin: 10px 0 10px 0;
|
|
width: 800px;
|
|
max-width: 90%;
|
|
text-align: left;
|
|
line-height: 1.4rem;
|
|
font-size: 1.0rem;
|
|
padding: 20px;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
button {
|
|
border: 1px solid #b7b7b7;
|
|
padding: 7px 15px 7px 15px;
|
|
cursor: pointer;
|
|
background: #dcdcdc;
|
|
}
|
|
|
|
button.next, button.install {
|
|
float: right;
|
|
}
|
|
|
|
button.prev {
|
|
float: left;
|
|
}
|
|
|
|
button:hover {
|
|
background: #f0f0f0;
|
|
}
|
|
|
|
section p:last-child {
|
|
margin-bottom: 0px;
|
|
}
|
|
|
|
blockquote {
|
|
background: #e0e0e0;
|
|
border: 1px solid #ccc;
|
|
padding: 20px;
|
|
margin: 0px;
|
|
font-size: 0.9rem;
|
|
}
|
|
|
|
blockquote>p {
|
|
margin-top: 0;
|
|
}
|
|
|
|
th {
|
|
padding: 10px;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
td {
|
|
padding: 5px 10px 5px 10px;
|
|
}
|
|
|
|
.OK {
|
|
color: green;
|
|
}
|
|
|
|
.FAILED {
|
|
color: red;
|
|
}
|
|
|
|
input, select {
|
|
padding: 5px 10px 5px 10px;
|
|
width: 100%;
|
|
margin: 0;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
input:invalid {
|
|
transition: all 0.5s;
|
|
border: 1px solid #a5302a;
|
|
background: #ff7d79;
|
|
}
|
|
|
|
ul, li {
|
|
padding: 0;
|
|
margin: 0;
|
|
}
|
|
|
|
li {
|
|
list-style: none;
|
|
padding: 5px 0 5px 0;
|
|
} |