welsonjs/app/style.css

31 lines
592 B
CSS
Raw Normal View History

2020-07-21 09:20:03 +00:00
html, body {
2020-11-04 07:30:52 +00:00
padding: 0;
margin: 0;
2020-07-21 09:20:03 +00:00
width: 100%;
2020-11-04 07:30:52 +00:00
height: 90%;
2020-07-21 09:20:03 +00:00
font-size: 1em;
font-family: "맑은 고딕", "Malgun Gothic", "Segoe UI", Calibri, Arial, Sans-Serif;
}
input, textarea {
font-size: 1em;
font-family: "맑은 고딕", "Malgun Gothic", "Segoe UI", Calibri, Arial, Sans-Serif;
}
2020-07-21 10:04:10 +00:00
#app {
width: 100%;
height: 100%;
2020-08-13 08:38:08 +00:00
overflow: hidden;
2020-07-21 10:04:10 +00:00
}
2020-11-04 07:40:01 +00:00
#loading {
position: absolute;
left: 0;
right: 0;
width: 100%;
height: 100%;
overflow: hidden;
background: url(assets/img/loading.gif) no-repeat 50% 50%;
z-index: 99;
}