123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284 |
- .menu {
- max-width: 1200px;
- width: 100%;
- margin: 1.5rem auto 0 auto;
- display: flex;
- -webkit-box-pack: center;
- justify-content: center;
- }
- .menu > div {
- width: 100px;
- word-break: keep-all;
- text-align: center;
- line-height: 1.1;
- font-weight: bold;
- font-size: 18px;
- }
- .menu > div:not(:first-child) {
- margin-left: 30px;
- }
- .menu > div.active {
- color: rgb(51, 102, 171);
- }
- .menu > div:hover{
- color: rgb(51, 102, 171);
- cursor: pointer;
- }
- .mobile-menu {
- display: none;
- padding: 0.6rem 1rem;
- border-top: 1px solid rgb(230, 230, 230);
- justify-content: space-around;
- width: 100%;
- height: 80px;
- }
- .mobile-menu > div > div {
- filter: grayscale(1);
- background-size: 35px 35px;
- width: 100%;
- height: 35px;
- background-position: center;
- background-repeat: no-repeat;
- }
- .mobile-menu > div {
- font-weight: bold;
- padding-top : 5px;
- font-size: 11px;
- }
- .mobile-menu > div.active > div {
- filter: grayscale(0);
- }
- .mobile-menu > div.active {
- color: rgb(51, 102, 171);
- }
- .mobile-menu > div:nth-child(1) > div {
- background-image: url("/images/icon/menu_icon5-2.png");
- }
- .mobile-menu > div:nth-child(2) > div {
- background-image: url("/images/icon/way.png");
- }
- .statWrap {
- width: 100%;
- height: calc(100% - 199.8px);
- display: flex;
- justify-content: center;
- overflow: auto;
- }
- .statWrap .admin-header {
- width: 200px;
- height: 50px;
- margin: 24px auto;
- color: white;
- text-align: center;
- font: bold 18px / 40px NanumGothic;
- background: url('/images/background/bg_title.png') 0px 0px / contain no-repeat transparent;
- }
- .statWrap .container {
- max-width: 1200px;
- width: 95%;
- position: relative;
- display: flex;
- flex-direction: column;
- min-height: 700px;
- }
- .statWrap .header {
- padding: 2rem 0;
- margin-bottom: 0;
- color: rgb(51, 102, 171);
- text-align: center;
- border-bottom: 1px solid rgb(33, 84, 153);
- font-size: 2rem;
- }
- .statWrap .content {
- margin: 24px 0px;
- padding: 30px 60px;
- transition: all 0.3s ease 0s;
- box-shadow: rgba(0, 0, 0, 0.15) 0px 3px 6px;
- height: calc(100% - 101px);
- }
- .statWrap .admin-content {
- width: 100%;
- height: calc(100% - 150px);
- min-height: 500px;
- padding: 30px 60px;
- transition: all 0.3s ease 0s;
- background-color: rgb(255, 255, 255);
- box-shadow: rgba(0, 0, 0, 0.15) 0px 3px 6px;
- }
- .statWrap .admin-content .title {
- display: flex;
- justify-content: right;
- align-items: center;
- gap: 10px;
- }
- .title input {
- color: rgb(58, 57, 57);
- font-size: 17px;
- line-height: 25px;
- width: 250px;
- text-align: center;
- height: 40px;
- padding: 8px 16px;
- border: 1px solid rgb(204, 234, 234);
- box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 3px;
- background: 0px 0px no-repeat rgb(255, 255, 255);
- }
- .title .button {
- display: inline-block;
- width: 100px;
- height: 40px;
- color: rgb(255, 255, 255);
- border: 0px;
- border-radius: 10px;
- box-shadow: rgba(0, 0, 0, 0.15) 0px 2px 4px;
- background-color: rgb(51, 102, 171);
- text-align: center;
- line-height: 40px;
- }
- .title .button:hover {
- cursor: pointer;
- filter: brightness(1.1);
- }
- .chart-box {
- width: 100%;
- height: calc(100% - 302px);
- }
- .chart-box #chart {
- width: 100%;
- height: 100%;
- }
- .list {
- width: 100%;
- height: 262px;
- }
- .list > div:nth-child(1) {
- width: 100%;
- height: 40px;
- border-bottom: 2px solid rgba(102, 102, 102, 0.3);
- color: rgb(51, 102, 171);
- display: flex;
- justify-content: space-around;
- align-items: center;
- font-weight: bold;
- }
- .list > div:nth-child(2) {
- width: 100%;
- height: calc(100% - 40px);
- overflow: auto;
- }
- .list > div:nth-child(2) > div {
- display: flex;
- align-items: center;
- }
- .list > div:nth-child(1) > div,
- .list > div:nth-child(2) > div > div {
- width: 50%;
- padding: 10px;
- text-align: center;
- }
- .list > div:nth-child(2) > div > div {
- color: #a1a1a1;
- font-weight: bold;
- }
- /*
- */
- @media (max-width: 920px) {
- .statWrap {
- height: calc(100% - 200.19px);
- }
- }
- @media (max-height: 765px) {
- .statWrap {
- height: calc(100% - 200.19px);
- }
- }
- @media (max-width: 720px) {
- .statWrap {
- height: calc(100% - 205.19px);
- }
- }
- @media (max-width: 547px) {
- .statWrap {
- height: calc(100% - 216.19px);
- }
- }
- @media (max-width: 420px) {
- .mobile-menu {
- display: flex;
- }
- .menu {
- display: none;
- }
- .statWrap {
- height: calc(100% - 149.19px);
- padding: 5px 0;
- }
- .statWrap .header {
- font-size: 1.2rem;
- padding: 1rem 0;
- }
- .statWrap .container {
- min-height: 0;
- }
- .statWrap .container.view {
- min-height: 450px;
- }
- .statWrap h2 {
- font-size: 14px;
- }
- .statWrap .content a {
- padding: 10px;
- font-size: 13px;
- }
- .statWrap .content a > div:nth-child(1) {
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- width: calc(100% - 135px);
- }
- .item-right{
- width : 122px;
- font-size: 12px;
- }
- .item-right > div:nth-child(2) {
- display: none;
- }
- .statWrap .content.view {
- padding: 0px 20px;
- }
- }
|