55 lines
1014 B
CSS
55 lines
1014 B
CSS
|
|
|
||
|
|
.centerDiv{
|
||
|
|
max-height: fit-content;
|
||
|
|
}
|
||
|
|
|
||
|
|
/*스크롤기능 있지만 안보이게*/
|
||
|
|
body::-webkit-scrollbar {
|
||
|
|
display: none;
|
||
|
|
}
|
||
|
|
|
||
|
|
/*사이드바 카테고리 트리*/
|
||
|
|
.btn-toggle:hover, .btn-toggle:focus {
|
||
|
|
color: rgba(0, 0, 0, .85);
|
||
|
|
background-color: #d2f4ea;
|
||
|
|
}
|
||
|
|
.btn-toggle::before {
|
||
|
|
width: 1.25em;
|
||
|
|
line-height: 0;
|
||
|
|
content: url("/img/bootstrap-icons-1.7.1/caret-right-fill.svg");
|
||
|
|
transition: transform .35s ease;
|
||
|
|
transform-origin: 0.5em 50%;
|
||
|
|
}
|
||
|
|
.btn-toggle[aria-expanded="true"]::before {
|
||
|
|
content: url("/img/bootstrap-icons-1.7.1/caret-down-fill.svg");
|
||
|
|
/*왜 안돌까?*/
|
||
|
|
/*transform: rotate(90deg);*/
|
||
|
|
}
|
||
|
|
|
||
|
|
#fadeDiv{
|
||
|
|
width: 100%;
|
||
|
|
height: 100%;
|
||
|
|
position: absolute;
|
||
|
|
top: 0;
|
||
|
|
left: 0;
|
||
|
|
background-color: #00000050;
|
||
|
|
z-index: 1090;
|
||
|
|
}
|
||
|
|
|
||
|
|
#fadeDiv > div{
|
||
|
|
position: absolute;
|
||
|
|
left: 50%;
|
||
|
|
top: 50%;
|
||
|
|
transform: translate(-50%, -50%);
|
||
|
|
background-color: #ffffff;
|
||
|
|
}
|
||
|
|
|
||
|
|
#list-group-line{
|
||
|
|
padding-bottom: 52vh;
|
||
|
|
}
|
||
|
|
|
||
|
|
/*@media (max-width:1199px)*/
|
||
|
|
/* .sidebar {*/
|
||
|
|
/* left: -300px;*/
|
||
|
|
/* }*/
|