173 lines
2.6 KiB
CSS
173 lines
2.6 KiB
CSS
@charset "utf-8";
|
|
|
|
@import url(font.css);
|
|
|
|
|
|
html body {
|
|
font-family: "Nanum Gothic", sans-serif;
|
|
margin: 0 0 0 0 !important;
|
|
padding: 0 0 0 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
background: #e0e0e0;
|
|
}
|
|
|
|
ul {
|
|
margin: 0 0 0 0;
|
|
}
|
|
|
|
li {
|
|
padding: 5px 0 10px 0;
|
|
}
|
|
|
|
input {
|
|
font-size: 13pt;
|
|
padding: 3px 3px 3px 3px;
|
|
width: 40%;
|
|
min-width: 200px;
|
|
color: #666666;
|
|
background: #eaeaea;
|
|
border: solid 1px #bababa;
|
|
}
|
|
|
|
|
|
input:focus {
|
|
outline: none;
|
|
background: #eaeaea;
|
|
color: #111111;
|
|
border: solid 1px #232323;
|
|
}
|
|
|
|
button {
|
|
font-size: 13pt;
|
|
padding: 3px 3px 3px 3px;
|
|
margin: 10px 3% 10px 3%;
|
|
width: 30%;
|
|
min-width: 200px;
|
|
color: #666666;
|
|
background: #dfdfdf;
|
|
border: solid 1px #bababa;
|
|
}
|
|
.enabled-button {
|
|
color: #666666;
|
|
border: solid 1px #bababa;
|
|
}
|
|
|
|
.disabled-button {
|
|
color: #bebebe !important;
|
|
border: solid 1px #dcdcdc !important;;
|
|
}
|
|
|
|
button:hover {
|
|
cursor: pointer;
|
|
}
|
|
|
|
button:focus {
|
|
color: #cccccc;
|
|
background: #444444;
|
|
outline: none;
|
|
}
|
|
|
|
|
|
.label {
|
|
color: #444444;
|
|
font-size: 16pt;
|
|
font-weight: 100;
|
|
|
|
margin: 0 0 3px 0;
|
|
}
|
|
|
|
.title {
|
|
font-size: 25pt;
|
|
color: #ababab;
|
|
}
|
|
|
|
|
|
.label-description {
|
|
color: #606060;
|
|
font-size: 10pt;
|
|
margin: 0 0 5px 0;
|
|
}
|
|
|
|
.space {
|
|
width: 100%;
|
|
height: 5px;
|
|
}
|
|
.space2 {
|
|
width: 100%;
|
|
height: 15px;
|
|
}
|
|
.space3 {
|
|
width: 100%;
|
|
height: 25px;
|
|
}
|
|
.space4 {
|
|
width: 100%;
|
|
height: 50px;color: #666666;
|
|
}
|
|
|
|
.container {
|
|
margin: auto;
|
|
max-width: 720px;
|
|
width: 100%;
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
.path-view {
|
|
font-size: 16px;
|
|
width: 90%;
|
|
min-height: 22px;
|
|
color: #666666;
|
|
padding: 6px 3px 6px 6px;
|
|
background: #e8e8e8;
|
|
overflow-x: auto;
|
|
word-break:break-all;
|
|
}
|
|
|
|
.form-box {
|
|
padding: 15px 25px 15px 25px;
|
|
background: #f0f0f0;
|
|
}
|
|
|
|
.title-line {
|
|
width: 100%;
|
|
height: 1px;
|
|
background: #cbcbcb;
|
|
margin: 5px 0 5px 0;
|
|
}
|
|
|
|
|
|
.alert-input {
|
|
color: #ee7777;
|
|
height: 15px;
|
|
font-size: 10pt;
|
|
font-weight: bold;
|
|
margin: 4px 0 0 0;
|
|
}
|
|
|
|
.dlg {
|
|
width: 100%;
|
|
height: 100%;
|
|
margin: 0 0 0 0;
|
|
position: fixed;
|
|
z-index: 10000;
|
|
}
|
|
.dlg-outer {
|
|
display: table;
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
.dlg-inner {
|
|
display: table-cell;
|
|
vertical-align: middle;
|
|
text-align: center;
|
|
}
|
|
.dlg-centered {
|
|
position: relative;
|
|
display: inline-block;
|
|
|
|
width: 50%;
|
|
padding: 1em;
|
|
color: white;
|
|
} |