54 lines
742 B
SCSS
54 lines
742 B
SCSS
@charset "UTF-8";
|
|
|
|
@import url('https://fonts.googleapis.com/css2?family=Nanum+Gothic:wght@400;700&display=swap');
|
|
@import '../../d_shared/common.css';
|
|
|
|
html {
|
|
background: black;
|
|
max-height: 1000000px;
|
|
font-family: 'Nanum Gothic', sans-serif;
|
|
color: white;
|
|
}
|
|
|
|
//TODO: 삭제!!
|
|
table.tb_layout {
|
|
border-collapse: collapse;
|
|
padding: 0px;
|
|
font-size: 13px;
|
|
word-break: break-all;
|
|
}
|
|
|
|
html,
|
|
body {
|
|
font-size: 13px;
|
|
}
|
|
|
|
.tb_layout td,
|
|
.tb_layout th {
|
|
border: solid 1px gray;
|
|
padding: 0px;
|
|
word-break: break-all;
|
|
;
|
|
}
|
|
|
|
|
|
.float-left {
|
|
float: left;
|
|
}
|
|
|
|
.float-right {
|
|
float: right;
|
|
}
|
|
|
|
|
|
.a-right {
|
|
text-align: right;
|
|
}
|
|
|
|
.a-left {
|
|
text-align: left;
|
|
}
|
|
|
|
.a-center {
|
|
text-align: center;
|
|
} |