12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- /*
- M-Care Plus Common CSS
- */
- @charset "UTF-8";
- @import "../publishing/fontello/fontello-codes.css";
- @import "../publishing/fontello/fontello.css";
- @font-face{
- font-family:"NSR";
- src:local("NanumSquareR"),
- url("../../fonts/publishing/NanumSquareR.otf") format('woff'),
- url("../../fonts/publishing/NanumSquareR.ttf") format('truetype');
- font-weight:normal;
- font-style:normal;
- }
- @font-face{
- font-family:"NSB";
- src:local("NanumSquareB"),
- url("../../fonts/publishing/NanumSquareB.otf") format('woff'),
- url("../../fonts/publishing/NanumSquareB.ttf") format('truetype');
- font-weight:bold;
- }
- /* ---- 기 본 공 통 영 역 { ---- */
- /* 목록 헤더 영역 */
- #divResultHeaderColumn1,#divResultHeaderColumn2,#divResultHeaderColumn3,#divResultHeaderColumn4,#divResultHeaderColumn5,#divResultHeaderColumn6,#divResultHeaderColumn7,#divResultHeaderColumn8 {
- padding : 0px;
- }
- /* 화면 구성 설정 */
- .set-pad-0{
- padding : 0px;
- }
- .control-disabled{
- pointer-events: none;
- background-color: white;
- opacity: 0.3;
- }
- [tooltip]:before {
- position : absolute;
- content : attr(tooltip);
- opacity : 0;
- }
- [tooltip]:hover:before {
- opacity : 1;
- }
- [tooltip]:not([tooltip-persistent]):before {
- pointer-events: none;
- }
- /* ---- 기 본 공 통 영 역 } ---- */
|