box-list추가
@38949eb03f2870a805950e4dbb5e5c57631d2868
--- html/onSejong/index.html
+++ html/onSejong/index.html
... | ... | @@ -453,7 +453,7 @@ |
| 453 | 453 |
<li>[뷰어]공동문서편집 |
| 454 | 454 |
<ul> |
| 455 | 455 |
<li class="before">공동문서편집</li> |
| 456 |
- <li class="working">[팝업]그룹설정,manager/class/pop_groupSet.html</li> |
|
| 456 |
+ <li>[팝업]그룹설정,manager/class/pop_groupSet.html</li> |
|
| 457 | 457 |
<li class="before">[팝업]글쓰기</li> |
| 458 | 458 |
</ul> |
| 459 | 459 |
</li> |
--- html/onSejong/manager/class/pop_groupSet.html
+++ html/onSejong/manager/class/pop_groupSet.html
... | ... | @@ -45,28 +45,21 @@ |
| 45 | 45 |
<h1>그룹설정</h1> |
| 46 | 46 |
</div> |
| 47 | 47 |
<div class="pop-body"> |
| 48 |
- <fieldset> |
|
| 49 |
- <legend>설정 설정</legend> |
|
| 50 |
- <div class=""> |
|
| 51 |
- <div class=""> |
|
| 52 |
- <input type="text" placeholder="1 그룹" title="그룹 이름을 입력하세요." class="percent-width8 margin-right-md"> |
|
| 48 |
+ <ul class="bullet-none"> |
|
| 49 |
+ <li> |
|
| 50 |
+ <div class="flex-box"> |
|
| 51 |
+ <input type="text" placeholder="1 그룹" title="그룹명을 입력하세요." class="flex1"> |
|
| 53 | 52 |
<button type="button" class="btn sm circle danger ico-delete">삭제</button> |
| 54 | 53 |
</div> |
| 55 |
- <div class="margin-top-sm"> |
|
| 56 |
- <input type="text" placeholder="2 그룹" title="그룹 이름을 입력하세요." class="percent-width8 margin-right-md"> |
|
| 54 |
+ </li> |
|
| 55 |
+ <li> |
|
| 56 |
+ <div class="flex-box"> |
|
| 57 |
+ <input type="text" placeholder="1 그룹" title="그룹명을 입력하세요." class="flex1"> |
|
| 57 | 58 |
<button type="button" class="btn sm circle danger ico-delete">삭제</button> |
| 58 | 59 |
</div> |
| 59 |
- <div class="margin-top-sm"> |
|
| 60 |
- <input type="text" placeholder="3 그룹" title="그룹 이름을 입력하세요." class="percent-width8 margin-right-md"> |
|
| 61 |
- <button type="button" class="btn sm circle danger ico-delete">삭제</button> |
|
| 62 |
- </div> |
|
| 63 |
- <div class="margin-top-sm"> |
|
| 64 |
- <input type="text" placeholder="4 그룹" title="그룹 이름을 입력하세요." class="percent-width8 margin-right-md"> |
|
| 65 |
- <button type="button" class="btn sm circle danger ico-delete">삭제</button> |
|
| 66 |
- </div> |
|
| 67 |
- </div> |
|
| 68 |
- <button type="button" class="btn primary ico-plus margin-top-md">그룹 추가</button> |
|
| 69 |
- </fieldset> |
|
| 60 |
+ </li> |
|
| 61 |
+ </ul> |
|
| 62 |
+ <button type="button" class="btn primary ico-plus margin-top-md">그룹 추가</button> |
|
| 70 | 63 |
</div> |
| 71 | 64 |
<div class="pop-footer"> |
| 72 | 65 |
<div class="pop-btn-cont"> |
--- resources/front/site/SITE_00000/css/common/component/_list.scss
+++ resources/front/site/SITE_00000/css/common/component/_list.scss
... | ... | @@ -845,6 +845,45 @@ |
| 845 | 845 |
} |
| 846 | 846 |
|
| 847 | 847 |
} |
| 848 |
+.box-list {
|
|
| 849 |
+ display: grid; |
|
| 850 |
+ grid-template-columns: repeat(3, 1fr); |
|
| 851 |
+ gap:$spacing-2xlg; |
|
| 852 |
+ >li:has(.lnk-full), |
|
| 853 |
+ > li > a:not(.lnk-full) {
|
|
| 854 |
+ display: flex; |
|
| 855 |
+ padding: $spacing-lg; |
|
| 856 |
+ flex-direction: column; |
|
| 857 |
+ gap: $spacing-md; |
|
| 858 |
+ height:100%; |
|
| 859 |
+ border-radius: $spacing-xlg; |
|
| 860 |
+ box-shadow: $shadow-md; |
|
| 861 |
+ transform: scale(1); |
|
| 862 |
+ border:.1rem solid transparent; |
|
| 863 |
+ transition: transform .2s; |
|
| 864 |
+ &:hover {
|
|
| 865 |
+ box-shadow: $shadow-md; |
|
| 866 |
+ transform: scale(1.05); |
|
| 867 |
+ border:.1rem solid $spot; |
|
| 868 |
+ h3 {
|
|
| 869 |
+ color:$spot; |
|
| 870 |
+ } |
|
| 871 |
+ } |
|
| 872 |
+ } |
|
| 873 |
+ h3 {
|
|
| 874 |
+ @include typo('tit-md');
|
|
| 875 |
+ @include ellipsis(2); |
|
| 876 |
+ } |
|
| 877 |
+ .txt-area {
|
|
| 878 |
+ @include ellipsis(3); |
|
| 879 |
+ max-height:4.2em; |
|
| 880 |
+ } |
|
| 881 |
+} |
|
| 882 |
+@include responsive(tabletSm) {
|
|
| 883 |
+ .box-list {
|
|
| 884 |
+ grid-template-columns: repeat(2, 1fr); |
|
| 885 |
+ } |
|
| 886 |
+} |
|
| 848 | 887 |
@include responsive(mobile) {
|
| 849 | 888 |
.checkradio-custom-row-area:has(.item-type-checkradio) {
|
| 850 | 889 |
display: none; |
... | ... | @@ -980,4 +1019,13 @@ |
| 980 | 1019 |
justify-content: flex-start; |
| 981 | 1020 |
} |
| 982 | 1021 |
} |
| 1022 |
+ .box-list {
|
|
| 1023 |
+ grid-template-columns: initial; |
|
| 1024 |
+ gap:$spacing-xsm; |
|
| 1025 |
+ a {
|
|
| 1026 |
+ padding:$spacing-lg $spacing-md; |
|
| 1027 |
+ gap:$spacing-xsm; |
|
| 1028 |
+ border-radius: $radius-md; |
|
| 1029 |
+ } |
|
| 1030 |
+ } |
|
| 983 | 1031 |
}(파일 끝에 줄바꿈 문자 없음) |
--- resources/front/site/SITE_00000/css/custom/page/_hwa.scss
+++ resources/front/site/SITE_00000/css/custom/page/_hwa.scss
... | ... | @@ -1,2836 +1,0 @@ |
| 1 |
-// /* sub */ |
|
| 2 |
-// .aside-area {
|
|
| 3 |
-// $asideW: 12rem; |
|
| 4 |
-// position: sticky; |
|
| 5 |
-// top: calc(var(--header-height) + 2rem); |
|
| 6 |
-// right:0; |
|
| 7 |
-// z-index:0; |
|
| 8 |
-// height:0; |
|
| 9 |
-// display: flex; |
|
| 10 |
-// width: calc(100% + $asideW + 4rem); |
|
| 11 |
-// justify-content: flex-end; |
|
| 12 |
-// z-index: 3; |
|
| 13 |
-// @at-root .CONTENTS-WRAPPER:has(.aside-area) {
|
|
| 14 |
-// position: relative; |
|
| 15 |
-// // z-index: 0; |
|
| 16 |
-// } |
|
| 17 |
-// .aside-list {
|
|
| 18 |
-// margin-left:$asideW; |
|
| 19 |
-// width: $asideW; |
|
| 20 |
-// background-color: $color-background-brand-secondary; |
|
| 21 |
-// position: relative; |
|
| 22 |
-// } |
|
| 23 |
-// .export-area.is-active {
|
|
| 24 |
-// .popup-export {
|
|
| 25 |
-// display: grid; |
|
| 26 |
-// } |
|
| 27 |
-// .btn-export-toggle {
|
|
| 28 |
-// box-shadow: 1rem 1rem 3rem rgba(#0087FF, 0.3); |
|
| 29 |
-// } |
|
| 30 |
-// } |
|
| 31 |
-// .popup-export {
|
|
| 32 |
-// $exportGap: 2.4rem; |
|
| 33 |
-// //display: grid; |
|
| 34 |
-// display: none; |
|
| 35 |
-// grid-template-rows:6.4rem auto 6.4rem; |
|
| 36 |
-// top:0; |
|
| 37 |
-// left:-2rem; |
|
| 38 |
-// transform: translateX(-100%); |
|
| 39 |
-// position: absolute; |
|
| 40 |
-// background-color: $color-background-default-primary; |
|
| 41 |
-// border: $stroke-secondary; |
|
| 42 |
-// border-radius: $radius-md; |
|
| 43 |
-// width: 40rem; |
|
| 44 |
-// height: 64rem; |
|
| 45 |
-// max-height: calc(100vh - (var(--header-height) + 4rem)); |
|
| 46 |
-// box-shadow: $shadow-sm; |
|
| 47 |
-// @keyframes export {
|
|
| 48 |
-// 0% {
|
|
| 49 |
-// opacity: .5; |
|
| 50 |
-// margin-left: 10%; |
|
| 51 |
-// } |
|
| 52 |
-// 100% {
|
|
| 53 |
-// opacity: 1; |
|
| 54 |
-// margin-left: 0; |
|
| 55 |
-// } |
|
| 56 |
-// } |
|
| 57 |
-// animation: export .5s forwards; |
|
| 58 |
-// .pop-header {
|
|
| 59 |
-// padding:0 $exportGap; |
|
| 60 |
-// h1 {
|
|
| 61 |
-// display: flex; |
|
| 62 |
-// align-items: center; |
|
| 63 |
-// height:100%; |
|
| 64 |
-// @include typo('tit-md');
|
|
| 65 |
-// } |
|
| 66 |
-// } |
|
| 67 |
-// .pop-body {
|
|
| 68 |
-// grid-template-rows: auto; |
|
| 69 |
-// overflow-y: auto; |
|
| 70 |
-// padding:0 $exportGap $exportGap; |
|
| 71 |
-// } |
|
| 72 |
-// .pop-footer {
|
|
| 73 |
-// display: flex; |
|
| 74 |
-// button {
|
|
| 75 |
-// display: flex; |
|
| 76 |
-// height:100%; |
|
| 77 |
-// justify-content: center; |
|
| 78 |
-// align-items: center; |
|
| 79 |
-// flex:1; |
|
| 80 |
-// background-color: $color-background-brand-secondary-inverse; |
|
| 81 |
-// color:$color-white; |
|
| 82 |
-// font-weight: 700; |
|
| 83 |
-// border-radius: 0 0 $radius-md $radius-md; |
|
| 84 |
-// font-size: var(--fs-lg); |
|
| 85 |
-// &:hover {
|
|
| 86 |
-// background-color: $color-background-brand-secondary-inverse; |
|
| 87 |
-// } |
|
| 88 |
-// strong {
|
|
| 89 |
-// color: $color-font-brand-accent; |
|
| 90 |
-// } |
|
| 91 |
-// &:disabled {
|
|
| 92 |
-// cursor: default; |
|
| 93 |
-// background-color: $color-font-default-tertiary; |
|
| 94 |
-// opacity: 1; |
|
| 95 |
-// pointer-events: none; |
|
| 96 |
-// } |
|
| 97 |
-// } |
|
| 98 |
-// } |
|
| 99 |
-// } |
|
| 100 |
-// .export-list {
|
|
| 101 |
-// display: grid; |
|
| 102 |
-// gap: $spacing-2xsm; |
|
| 103 |
-// li {
|
|
| 104 |
-// display: flex; |
|
| 105 |
-// position: relative; |
|
| 106 |
-// border: $stroke-secondary; |
|
| 107 |
-// border-radius: $radius-sm; |
|
| 108 |
-// padding:.8rem 1.6rem; |
|
| 109 |
-// min-height:8rem; |
|
| 110 |
-// align-items: center; |
|
| 111 |
-// min-width: 0; |
|
| 112 |
-// gap:$spacing-xsm; |
|
| 113 |
-// &:hover {
|
|
| 114 |
-// border-color: $color-stroke-default-secondary; |
|
| 115 |
-// box-shadow: $shadow-sm; |
|
| 116 |
-// .export-fnc {
|
|
| 117 |
-// display: block; |
|
| 118 |
-// } |
|
| 119 |
-// } |
|
| 120 |
-// } |
|
| 121 |
-// .txt-area {
|
|
| 122 |
-// display: flex; |
|
| 123 |
-// flex-direction: column; |
|
| 124 |
-// gap:$spacing-xsm; |
|
| 125 |
-// overflow: hidden; |
|
| 126 |
-// flex:1; |
|
| 127 |
-// .editor-cont {
|
|
| 128 |
-// @include ellipsis(1); |
|
| 129 |
-// @include editor-cont; |
|
| 130 |
-// } |
|
| 131 |
-// } |
|
| 132 |
-// .img-area {
|
|
| 133 |
-// width: 9rem; |
|
| 134 |
-// figure {
|
|
| 135 |
-// display:block; |
|
| 136 |
-// @include img-size; |
|
| 137 |
-// border-radius: $radius-xsm; |
|
| 138 |
-// border: $stroke-secondary; |
|
| 139 |
-// background-color: $color-background-default-tertiary; |
|
| 140 |
-// overflow: hidden; |
|
| 141 |
-// img {
|
|
| 142 |
-// object-fit: cover; |
|
| 143 |
-// width: 100%; |
|
| 144 |
-// height:100%; |
|
| 145 |
-// } |
|
| 146 |
-// } |
|
| 147 |
-// } |
|
| 148 |
-// .export-fnc {
|
|
| 149 |
-// display: none; |
|
| 150 |
-// position: absolute; |
|
| 151 |
-// right:-1.6rem; |
|
| 152 |
-// top:50%; |
|
| 153 |
-// transform: translateY(-50%); |
|
| 154 |
-// z-index: 2; |
|
| 155 |
-// } |
|
| 156 |
-// } |
|
| 157 |
-// .btn-export-toggle {
|
|
| 158 |
-// display:flex; |
|
| 159 |
-// flex-direction: column; |
|
| 160 |
-// justify-content: center; |
|
| 161 |
-// align-items: center; |
|
| 162 |
-// gap:$spacing-xsm; |
|
| 163 |
-// width: $asideW; |
|
| 164 |
-// height: $asideW; |
|
| 165 |
-// background-color: $color-background-brand-primary-inverse; |
|
| 166 |
-// border-radius: $radius-lg; |
|
| 167 |
-// color:$color-white; |
|
| 168 |
-// font-size:var(--fs-lg); |
|
| 169 |
-// font-weight: 700; |
|
| 170 |
-// &:before {
|
|
| 171 |
-// content:" "; |
|
| 172 |
-// width: 4rem; |
|
| 173 |
-// height:4rem; |
|
| 174 |
-// background: url($url-img + 'common/ico-img/ico-img-folders.svg'); |
|
| 175 |
-// background-size: contain; |
|
| 176 |
-// } |
|
| 177 |
-// &:hover {
|
|
| 178 |
-// box-shadow: 1rem 1rem 3rem rgba(#0087FF, 0.3); |
|
| 179 |
-// } |
|
| 180 |
-// } |
|
| 181 |
-// } |
|
| 182 |
-// .copy-area {
|
|
| 183 |
-// display: flex; |
|
| 184 |
-// flex-direction: column; |
|
| 185 |
-// flex-wrap: wrap; |
|
| 186 |
-// gap: 0.4rem; |
|
| 187 |
-// box-sizing: border-box; |
|
| 188 |
- |
|
| 189 |
-// &:has(.img-area) {
|
|
| 190 |
-// width:12rem; |
|
| 191 |
-// } |
|
| 192 |
-// .img-area {
|
|
| 193 |
-// img {
|
|
| 194 |
-// display: block; |
|
| 195 |
-// max-width: 100%; |
|
| 196 |
-// } |
|
| 197 |
-// } |
|
| 198 |
-// .txt-area {
|
|
| 199 |
-// @include typo('label-sm');
|
|
| 200 |
-// } |
|
| 201 |
-// @at-root .checkradio input:disabled ~ label .copy-area {
|
|
| 202 |
-// .img-area {
|
|
| 203 |
-// opacity: .2; |
|
| 204 |
-// } |
|
| 205 |
-// } |
|
| 206 |
-// } |
|
| 207 |
- |
|
| 208 |
-// .class-write-nav {
|
|
| 209 |
-// display: grid; |
|
| 210 |
-// grid-template-columns: repeat(4, 1fr); |
|
| 211 |
-// gap:$spacing-xsm; |
|
| 212 |
-// > li {
|
|
| 213 |
-// position: relative; |
|
| 214 |
- |
|
| 215 |
-// input {
|
|
| 216 |
-// width: 100%; |
|
| 217 |
-// padding-right:8rem; |
|
| 218 |
-// padding-left: 1.6rem; |
|
| 219 |
-// cursor: pointer; |
|
| 220 |
-// } |
|
| 221 |
-// .nav-fnc {
|
|
| 222 |
-// position: absolute; |
|
| 223 |
-// right:1.6rem; |
|
| 224 |
-// top:50%; |
|
| 225 |
-// transform: translateY(-50%); |
|
| 226 |
-// display: flex; |
|
| 227 |
-// gap: $spacing-xsm; |
|
| 228 |
-// } |
|
| 229 |
-// &.is-active {
|
|
| 230 |
-// input {
|
|
| 231 |
-// background-color: $spot; |
|
| 232 |
-// color:$color-white; |
|
| 233 |
-// &::placeholder {
|
|
| 234 |
-// color: $color-font-default-tertiary; |
|
| 235 |
-// } |
|
| 236 |
-// } |
|
| 237 |
-// .ico-edit {
|
|
| 238 |
-// &::before {
|
|
| 239 |
-// background-image: url(pathIcon(map-get($icons, 'ico-edit'), $color-white)); |
|
| 240 |
-// } |
|
| 241 |
-// } |
|
| 242 |
-// .ico-delete {
|
|
| 243 |
-// &::before {
|
|
| 244 |
-// background-image: url(pathIcon(map-get($icons, 'ico-delete'), $color-white)); |
|
| 245 |
-// } |
|
| 246 |
-// } |
|
| 247 |
-// } |
|
| 248 |
-// } |
|
| 249 |
-// } |
|
| 250 |
-// .class-write-result {
|
|
| 251 |
-// $sgap:2.4rem; |
|
| 252 |
-// &::after {
|
|
| 253 |
-// content: " "; |
|
| 254 |
-// display:block; |
|
| 255 |
-// margin:$spacing-lg auto 0; |
|
| 256 |
-// width: 4rem; |
|
| 257 |
-// height: 4rem; |
|
| 258 |
-// background:url($url-img + 'common/ico-img/ico-img-arrow-blue.svg') center center / cover no-repeat; |
|
| 259 |
-// } |
|
| 260 |
-// &.is-close {
|
|
| 261 |
-// &::after {
|
|
| 262 |
-// display: none; |
|
| 263 |
-// } |
|
| 264 |
-// } |
|
| 265 |
-// .tabs-nav-lg {
|
|
| 266 |
-// margin-bottom: -0.2rem; |
|
| 267 |
-// } |
|
| 268 |
-// .search-cont-area {
|
|
| 269 |
-// > *:last-child {
|
|
| 270 |
-// border-radius: 0 0 $radius-md $radius-md; |
|
| 271 |
-// } |
|
| 272 |
-// } |
|
| 273 |
-// .search-cont, |
|
| 274 |
-// .search-etc {
|
|
| 275 |
-// border:0.2rem solid $spot; |
|
| 276 |
-// } |
|
| 277 |
-// .tabs-normal {
|
|
| 278 |
-// .search-cont {
|
|
| 279 |
-// display: none; |
|
| 280 |
-// } |
|
| 281 |
-// } |
|
| 282 |
-// .search-cont {
|
|
| 283 |
-// display: flex; |
|
| 284 |
-// flex-direction: column; |
|
| 285 |
-// height: 84rem; |
|
| 286 |
-// overflow:hidden; |
|
| 287 |
-// padding:$sgap; |
|
| 288 |
-// &.is-active {
|
|
| 289 |
-// display: flex; |
|
| 290 |
-// } |
|
| 291 |
-// .cont-header, |
|
| 292 |
-// .cont-footer {
|
|
| 293 |
-// flex:none; |
|
| 294 |
-// > * {
|
|
| 295 |
-// margin:0; |
|
| 296 |
-// } |
|
| 297 |
-// } |
|
| 298 |
-// .cont-header {
|
|
| 299 |
-// padding-bottom: $sgap; |
|
| 300 |
-// } |
|
| 301 |
-// .cont-body {
|
|
| 302 |
-// position: relative; |
|
| 303 |
-// flex:1; |
|
| 304 |
-// overflow-y: auto; |
|
| 305 |
-// } |
|
| 306 |
-// .cont-footer {
|
|
| 307 |
-// padding-top: $sgap; |
|
| 308 |
-// } |
|
| 309 |
-// } |
|
| 310 |
- |
|
| 311 |
-// .search-etc {
|
|
| 312 |
-// border-top: none; |
|
| 313 |
-// display: grid; |
|
| 314 |
-// grid-template-columns: 16rem auto; |
|
| 315 |
-// overflow: hidden; |
|
| 316 |
-// align-items: stretch; |
|
| 317 |
-// > * {
|
|
| 318 |
-// padding:$sgap; |
|
| 319 |
-// } |
|
| 320 |
-// > cite {
|
|
| 321 |
-// display: flex; |
|
| 322 |
-// align-items: center; |
|
| 323 |
-// background-color: $color-background-info-primary; |
|
| 324 |
-// @include typo('tit-sm');
|
|
| 325 |
-// } |
|
| 326 |
-// } |
|
| 327 |
-// } |
|
| 328 |
-// .popup-guide-classwrite {
|
|
| 329 |
-// position: absolute; |
|
| 330 |
-// top: 0; |
|
| 331 |
-// left: 0; |
|
| 332 |
-// right: 0; |
|
| 333 |
-// bottom: 0; |
|
| 334 |
-// background-color: rgba($color-black, 0.8); |
|
| 335 |
-// backdrop-filter: saturate(200%) blur(2rem); |
|
| 336 |
-// border-radius: $radius-md; |
|
| 337 |
-// z-index: 3; |
|
| 338 |
-// .ico-close {
|
|
| 339 |
-// position: absolute; |
|
| 340 |
-// top: 1.6rem; |
|
| 341 |
-// right: 1.6rem; |
|
| 342 |
-// left: auto; |
|
| 343 |
-// } |
|
| 344 |
-// .pop-body {
|
|
| 345 |
-// img {
|
|
| 346 |
-// display: block; |
|
| 347 |
-// width: 100%; |
|
| 348 |
-// } |
|
| 349 |
-// } |
|
| 350 |
-// .pop-fnc {
|
|
| 351 |
-// position: absolute; |
|
| 352 |
-// bottom: 2rem; |
|
| 353 |
-// left: 2rem; |
|
| 354 |
-// } |
|
| 355 |
-// &.is-active {
|
|
| 356 |
-// .pop-fnc {
|
|
| 357 |
-// display: none; |
|
| 358 |
-// } |
|
| 359 |
-// } |
|
| 360 |
-// .checkradio input[type=checkbox] ~ label {
|
|
| 361 |
-// color: $color-font-default-quaternary; |
|
| 362 |
-// } |
|
| 363 |
-// .checkradio input[type=checkbox]:checked ~ label {
|
|
| 364 |
-// color: $color-white; |
|
| 365 |
-// } |
|
| 366 |
-// .checkradio input[type=checkbox] ~ label:before, |
|
| 367 |
-// .checkradio input[type=radio] ~ label:before {
|
|
| 368 |
-// border-color: $color-font-default-tertiary; |
|
| 369 |
-// background: none; |
|
| 370 |
-// } |
|
| 371 |
-// .checkradio input[type=checkbox]:checked ~ label:before, |
|
| 372 |
-// .checkradio input[type=checkbox]:checked ~ label:after {
|
|
| 373 |
-// border-color: $color-white; |
|
| 374 |
-// } |
|
| 375 |
-// } |
|
| 376 |
- |
|
| 377 |
-// /* AI문항: 성취코드 */ |
|
| 378 |
-// .achievecode {
|
|
| 379 |
-// display: flex; |
|
| 380 |
-// flex-direction: column; |
|
| 381 |
-// gap: 0.8rem; |
|
| 382 |
-// max-height: 60rem; |
|
| 383 |
-// overflow-y: auto; |
|
| 384 |
-// .tit-area {
|
|
| 385 |
-// margin-bottom: 0.8rem; |
|
| 386 |
-// } |
|
| 387 |
-// > * {
|
|
| 388 |
-// margin: 0; |
|
| 389 |
-// } |
|
| 390 |
-// .btn-cont {
|
|
| 391 |
-// margin: 1.6rem 0 0; |
|
| 392 |
-// } |
|
| 393 |
-// .bg-border-box {
|
|
| 394 |
-// flex:none; |
|
| 395 |
-// } |
|
| 396 |
-// .box-body {
|
|
| 397 |
-// overflow: hidden; |
|
| 398 |
-// flex:none; |
|
| 399 |
-// } |
|
| 400 |
-// } |
|
| 401 |
-// .achievecode-list {
|
|
| 402 |
-// display: flex; |
|
| 403 |
-// gap: $spacing-xsm; |
|
| 404 |
-// overflow-x: auto; |
|
| 405 |
-// > li {
|
|
| 406 |
-// flex: 1; |
|
| 407 |
-// padding: 1.6rem; |
|
| 408 |
-// border: $stroke-secondary; |
|
| 409 |
-// border-radius: $radius-sm; |
|
| 410 |
-// background-color: $color-background-default-primary; |
|
| 411 |
-// overflow: hidden; |
|
| 412 |
-// min-width: 24rem; |
|
| 413 |
-// box-sizing: border-box; |
|
| 414 |
-// &.is-active {
|
|
| 415 |
-// border-width: 0.1rem; |
|
| 416 |
-// border-color: #a0a0a0; |
|
| 417 |
-// // background-color: rgba($spot, 0.03); |
|
| 418 |
-// } |
|
| 419 |
-// } |
|
| 420 |
-// p {
|
|
| 421 |
-// display: block; |
|
| 422 |
-// font-size: 1.5rem; |
|
| 423 |
-// margin-bottom: $spacing-xsm; |
|
| 424 |
-// } |
|
| 425 |
-// .checkradio {
|
|
| 426 |
-// overflow: hidden; |
|
| 427 |
-// .txt-area {
|
|
| 428 |
-// display: flex; |
|
| 429 |
-// gap: $spacing-2xsm; |
|
| 430 |
-// } |
|
| 431 |
-// strong {
|
|
| 432 |
-// display: flex; |
|
| 433 |
-// align-items: center; |
|
| 434 |
-// justify-content: center; |
|
| 435 |
-// width: 4rem; |
|
| 436 |
-// flex-basis: 4rem; |
|
| 437 |
-// margin-top: -1.6rem; |
|
| 438 |
-// margin-bottom: -1.6rem; |
|
| 439 |
-// margin-left: -1.6rem; |
|
| 440 |
-// align-self: stretch; |
|
| 441 |
-// } |
|
| 442 |
-// span {
|
|
| 443 |
-// flex: 1; |
|
| 444 |
-// } |
|
| 445 |
-// .font-color-red {
|
|
| 446 |
-// background-color: rgba($color-red50, 0.05); |
|
| 447 |
-// } |
|
| 448 |
-// .font-color-blue {
|
|
| 449 |
-// background-color: rgba($color-blue50, 0.05); |
|
| 450 |
-// } |
|
| 451 |
-// .font-color-green {
|
|
| 452 |
-// background-color: rgba($color-green50, 0.05); |
|
| 453 |
-// } |
|
| 454 |
-// } |
|
| 455 |
-// } |
|
| 456 |
-// .achievecode-add-area {
|
|
| 457 |
-// display: flex; |
|
| 458 |
-// flex-direction: column; |
|
| 459 |
-// max-height: 70rem; |
|
| 460 |
-// flex-wrap: nowrap; |
|
| 461 |
-// gap: 0.8rem; |
|
| 462 |
-// .top-area {
|
|
| 463 |
-// display: flex; |
|
| 464 |
-// flex-direction: column; |
|
| 465 |
-// gap: 0.8rem; |
|
| 466 |
-// } |
|
| 467 |
-// } |
|
| 468 |
-// .achievecode-add-item {
|
|
| 469 |
-// $padding: 2.4rem; |
|
| 470 |
-// display: flex; |
|
| 471 |
-// flex: none; |
|
| 472 |
-// gap: 2.4rem; |
|
| 473 |
-// background-color: $color-background-default-primary; |
|
| 474 |
-// border: $stroke-secondary; |
|
| 475 |
-// border-radius: $radius-md; |
|
| 476 |
-// padding: $padding; |
|
| 477 |
-// overflow: hidden; |
|
| 478 |
-// box-sizing: border-box; |
|
| 479 |
-// .info-list {
|
|
| 480 |
-// flex: 1; |
|
| 481 |
-// margin-bottom: 0; |
|
| 482 |
-// } |
|
| 483 |
-// .btn-full-h {
|
|
| 484 |
-// align-self: stretch; |
|
| 485 |
-// background-color: $color-background-default-secondary; |
|
| 486 |
-// margin: -$padding; |
|
| 487 |
-// box-sizing: border-box; |
|
| 488 |
-// flex-basis: 8rem; |
|
| 489 |
-// width: 8rem; |
|
| 490 |
-// border-left: $stroke-secondary; |
|
| 491 |
-// } |
|
| 492 |
-// } |
|
| 493 |
-// .contents-sch-area {
|
|
| 494 |
-// display: flex; |
|
| 495 |
-// flex-direction: column; |
|
| 496 |
-// gap: 1.6rem; |
|
| 497 |
-// margin: 0 0 1.2rem !important; |
|
| 498 |
- |
|
| 499 |
-// .contents-sch-top-area {
|
|
| 500 |
-// display: flex; |
|
| 501 |
-// gap: 1.6rem; |
|
| 502 |
-// height: 48rem; |
|
| 503 |
-// box-sizing: border-box; |
|
| 504 |
-// overflow: hidden; |
|
| 505 |
-// } |
|
| 506 |
-// .contents-sch-etc-area {
|
|
| 507 |
-// display: flex; |
|
| 508 |
-// flex-direction: column; |
|
| 509 |
-// flex-basis: 32rem; |
|
| 510 |
-// height: 100%; |
|
| 511 |
-// box-sizing: border-box; |
|
| 512 |
-// .tit-area {
|
|
| 513 |
-// flex: none; |
|
| 514 |
-// margin-bottom: 1.6rem; |
|
| 515 |
-// } |
|
| 516 |
-// .sch-etc-cont {
|
|
| 517 |
-// flex: 1; |
|
| 518 |
-// overflow-y: auto; |
|
| 519 |
-// } |
|
| 520 |
-// } |
|
| 521 |
-// .contents-sch {
|
|
| 522 |
-// display: flex; |
|
| 523 |
-// flex-direction: column; |
|
| 524 |
-// gap: 0.8rem; |
|
| 525 |
-// flex: 1; |
|
| 526 |
-// margin: 0; |
|
| 527 |
-// overflow: hidden; |
|
| 528 |
-// } |
|
| 529 |
-// .sch-result-cont {
|
|
| 530 |
-// // flex:1; |
|
| 531 |
-// // max-height: 41.2rem; |
|
| 532 |
-// overflow-y: auto; |
|
| 533 |
-// overflow-x: hidden; |
|
| 534 |
-// } |
|
| 535 |
-// } |
|
| 536 |
-// .contents-add-area {
|
|
| 537 |
-// min-height: 40rem; |
|
| 538 |
-// height: 40rem; |
|
| 539 |
-// overflow-y: auto; |
|
| 540 |
-// } |
|
| 541 |
- |
|
| 542 |
-// // inform |
|
| 543 |
-// @keyframes inform-on {
|
|
| 544 |
-// 0% {
|
|
| 545 |
-// border: 0.1rem solid $color-stroke-default-tertiary; |
|
| 546 |
-// } |
|
| 547 |
-// 100% {
|
|
| 548 |
-// border: 0.1rem solid $color-stroke-brand-primary; |
|
| 549 |
-// } |
|
| 550 |
-// } |
|
| 551 |
- |
|
| 552 |
-// .inform-list {
|
|
| 553 |
-// li {
|
|
| 554 |
-// position: relative; |
|
| 555 |
-// display: flex; |
|
| 556 |
-// align-items: center; |
|
| 557 |
-// gap: 2.4rem; |
|
| 558 |
-// padding: 2.4rem; |
|
| 559 |
-// border: $stroke-secondary; |
|
| 560 |
-// border-radius: $radius-md; |
|
| 561 |
-// background: $color-background-default-secondary; |
|
| 562 |
-// .img-area {
|
|
| 563 |
-// i {
|
|
| 564 |
-// display: block; |
|
| 565 |
-// width: 3.2rem; |
|
| 566 |
-// height: 3.2rem; |
|
| 567 |
-// background-size: cover; |
|
| 568 |
-// background-repeat: no-repeat; |
|
| 569 |
-// background-position: 0 0; |
|
| 570 |
-// } |
|
| 571 |
-// .ico-confirm {
|
|
| 572 |
-// background-image: url($url-img + 'common/common/img_confirm.svg'); |
|
| 573 |
-// } |
|
| 574 |
-// .ico-warning {
|
|
| 575 |
-// background-image: url($url-img + 'common/common/img_warning.svg'); |
|
| 576 |
-// } |
|
| 577 |
-// } |
|
| 578 |
-// .txt-area {
|
|
| 579 |
-// word-break: keep-all; |
|
| 580 |
-// .profile-area {
|
|
| 581 |
-// gap: 0.8rem; |
|
| 582 |
-// margin-bottom: 0.4rem; |
|
| 583 |
-// .img-area {
|
|
| 584 |
-// width: 2.4rem; |
|
| 585 |
-// height: 2.4rem; |
|
| 586 |
-// } |
|
| 587 |
-// .txt-area {
|
|
| 588 |
-// cite {
|
|
| 589 |
-// font-size: 1.2rem; |
|
| 590 |
-// } |
|
| 591 |
-// } |
|
| 592 |
-// } |
|
| 593 |
-// h3 {
|
|
| 594 |
-// font-size: 1.6rem; |
|
| 595 |
-// font-weight: 400; |
|
| 596 |
-// } |
|
| 597 |
-// p {
|
|
| 598 |
-// color: $color-font-default-tertiary; |
|
| 599 |
-// margin-top: 0.2rem; |
|
| 600 |
-// } |
|
| 601 |
-// span {
|
|
| 602 |
-// display: block; |
|
| 603 |
-// font-size: 1.2rem; |
|
| 604 |
-// color: $color-font-default-tertiary; |
|
| 605 |
-// margin-top: 0.6rem; |
|
| 606 |
-// } |
|
| 607 |
-// } |
|
| 608 |
-// &.on {
|
|
| 609 |
-// background: $color-white; |
|
| 610 |
-// animation: inform-on 0.5s 2 ease-out; |
|
| 611 |
-// } |
|
| 612 |
-// &.on::after {
|
|
| 613 |
-// content: ""; |
|
| 614 |
-// position: absolute; |
|
| 615 |
-// top: 1.6rem; |
|
| 616 |
-// right: 1.6rem; |
|
| 617 |
-// display: block; |
|
| 618 |
-// background-color: $color-background-brand-secondary-inverse; |
|
| 619 |
-// width: 0.4rem; |
|
| 620 |
-// height: 0.4rem; |
|
| 621 |
-// border-radius: $radius-md; |
|
| 622 |
-// } |
|
| 623 |
-// & ~ li {
|
|
| 624 |
-// margin-top: 0.8rem; |
|
| 625 |
-// } |
|
| 626 |
-// } |
|
| 627 |
-// } |
|
| 628 |
-// .test-write-area {
|
|
| 629 |
-// display: flex; |
|
| 630 |
-// flex-direction: column; |
|
| 631 |
-// gap: 1.6rem; |
|
| 632 |
-// > .tit-area, |
|
| 633 |
-// .sch-box {
|
|
| 634 |
-// margin-bottom: 0; |
|
| 635 |
-// } |
|
| 636 |
-// .sch-box {
|
|
| 637 |
-// flex-basis: 30rem; |
|
| 638 |
-// } |
|
| 639 |
-// .test-cont {
|
|
| 640 |
-// display: flex; |
|
| 641 |
-// > .l-area, |
|
| 642 |
-// > .r-area {
|
|
| 643 |
-// flex: 1; |
|
| 644 |
-// min-width: 0; |
|
| 645 |
-// } |
|
| 646 |
-// > .c-area {
|
|
| 647 |
-// display: flex; |
|
| 648 |
-// flex-direction: column; |
|
| 649 |
-// justify-content: center; |
|
| 650 |
-// align-items: center; |
|
| 651 |
-// flex-basis: 5.6rem; |
|
| 652 |
-// gap: 0.8rem; |
|
| 653 |
-// } |
|
| 654 |
-// .scroll-area {
|
|
| 655 |
-// display: flex; |
|
| 656 |
-// flex-direction: column; |
|
| 657 |
-// height:100%; |
|
| 658 |
-// flex: 1; |
|
| 659 |
-// overflow: hidden; |
|
| 660 |
-// .scroll {
|
|
| 661 |
-// flex:1; |
|
| 662 |
-// overflow-y: auto; |
|
| 663 |
-// } |
|
| 664 |
-// } |
|
| 665 |
-// .bg-border-box {
|
|
| 666 |
-// height: 64rem; |
|
| 667 |
-// overflow: hidden; |
|
| 668 |
-// .box-body {
|
|
| 669 |
-// display: flex; |
|
| 670 |
-// flex-direction: column; |
|
| 671 |
-// flex: 1; |
|
| 672 |
-// overflow: hidden; |
|
| 673 |
-// } |
|
| 674 |
-// .tabs-cont {
|
|
| 675 |
-// height:100%; |
|
| 676 |
-// overflow: hidden; |
|
| 677 |
-// } |
|
| 678 |
-// .box-footer{
|
|
| 679 |
-// display: flex; |
|
| 680 |
-// align-items: center; |
|
| 681 |
-// gap:$spacing-xsm; |
|
| 682 |
-// justify-content: flex-end; |
|
| 683 |
-// } |
|
| 684 |
-// .total-txt {
|
|
| 685 |
-// font-size: 1.6rem; |
|
| 686 |
-// } |
|
| 687 |
-// } |
|
| 688 |
-// .tabs-cont {
|
|
| 689 |
-// .fnc-area, |
|
| 690 |
-// .tit-area {
|
|
| 691 |
-// margin-bottom: 0.8rem; |
|
| 692 |
-// } |
|
| 693 |
-// } |
|
| 694 |
-// } |
|
| 695 |
-// } |
|
| 696 |
-// .quiz-add-list {
|
|
| 697 |
- |
|
| 698 |
-// } |
|
| 699 |
-// .test-achievecode-add-area {
|
|
| 700 |
-// display: flex; |
|
| 701 |
-// flex-direction: column; |
|
| 702 |
-// gap: 0.8rem; |
|
| 703 |
-// .top-area {
|
|
| 704 |
-// display: flex; |
|
| 705 |
-// flex-direction: column; |
|
| 706 |
-// gap: 0.8rem; |
|
| 707 |
-// } |
|
| 708 |
-// } |
|
| 709 |
-// .folder-list {
|
|
| 710 |
-// display: grid; |
|
| 711 |
-// grid-template-columns: repeat(3, 1fr); |
|
| 712 |
-// gap: 1.6rem; |
|
| 713 |
-// font-size: 1.6rem; |
|
| 714 |
-// li {
|
|
| 715 |
-// position: relative; |
|
| 716 |
-// display: flex; |
|
| 717 |
-// padding: 1.6rem; |
|
| 718 |
-// align-items: center; |
|
| 719 |
-// border: $stroke-secondary; |
|
| 720 |
-// height: 16rem; |
|
| 721 |
-// box-sizing: border-box; |
|
| 722 |
-// border-radius: $radius-md; |
|
| 723 |
-// background-color: $color-background-default-primary; |
|
| 724 |
-// gap: 1.6rem; |
|
| 725 |
-// &:hover {
|
|
| 726 |
-// .folder-fnc-r {
|
|
| 727 |
-// display: block; |
|
| 728 |
-// } |
|
| 729 |
-// } |
|
| 730 |
-// &.default {
|
|
| 731 |
-// // background-color:rgba($color: $color-primary50, $alpha: .03); |
|
| 732 |
-// } |
|
| 733 |
-// } |
|
| 734 |
-// &.col1 {
|
|
| 735 |
-// grid-template-columns: repeat(1, 1fr); |
|
| 736 |
-// } |
|
| 737 |
-// &.col4 {
|
|
| 738 |
-// grid-template-columns: repeat(4, 1fr); |
|
| 739 |
-// } |
|
| 740 |
-// &.sm {
|
|
| 741 |
-// li {
|
|
| 742 |
-// height:12rem; |
|
| 743 |
-// } |
|
| 744 |
-// } |
|
| 745 |
-// .num {
|
|
| 746 |
-// flex: none; |
|
| 747 |
-// display: flex; |
|
| 748 |
-// align-items: center; |
|
| 749 |
-// justify-content: center; |
|
| 750 |
-// width: 5.6rem; |
|
| 751 |
-// height: 5.6rem; |
|
| 752 |
-// background-color: $color-background-brand-primary; |
|
| 753 |
-// font-size: 2.4rem; |
|
| 754 |
-// font-weight: 700; |
|
| 755 |
-// color: $spot; |
|
| 756 |
-// border-radius: $radius-md; |
|
| 757 |
-// } |
|
| 758 |
-// p {
|
|
| 759 |
-// font-weight: 700; |
|
| 760 |
-// color: $color-font-default-primary; |
|
| 761 |
-// } |
|
| 762 |
-// .folder-fnc-l, |
|
| 763 |
-// .folder-fnc-r {
|
|
| 764 |
-// position: absolute; |
|
| 765 |
-// top: 0.8rem; |
|
| 766 |
-// z-index: 1; |
|
| 767 |
-// } |
|
| 768 |
-// .folder-fnc-l {
|
|
| 769 |
-// left: 0.8rem; |
|
| 770 |
-// } |
|
| 771 |
-// .folder-fnc-r {
|
|
| 772 |
-// display: block; |
|
| 773 |
-// right: 0.8rem; |
|
| 774 |
-// } |
|
| 775 |
-// .add {
|
|
| 776 |
-// border-style: dashed; |
|
| 777 |
-// border-width: 0.2rem; |
|
| 778 |
-// flex-direction: column; |
|
| 779 |
-// justify-content: center; |
|
| 780 |
-// font-size: 1.4rem; |
|
| 781 |
-// color: $color-font-default-tertiary; |
|
| 782 |
-// gap: $spacing-xsm; |
|
| 783 |
-// &::before {
|
|
| 784 |
-// content: " "; |
|
| 785 |
-// @include ico($size-icon-md, plus); |
|
| 786 |
-// background-color: $color-font-default-tertiary; |
|
| 787 |
-// } |
|
| 788 |
-// } |
|
| 789 |
-// .etc-fnc-area {
|
|
| 790 |
-// li {
|
|
| 791 |
-// padding: initial; |
|
| 792 |
-// height: auto; |
|
| 793 |
-// border-radius: initial; |
|
| 794 |
-// border: initial; |
|
| 795 |
-// } |
|
| 796 |
-// } |
|
| 797 |
-// } |
|
| 798 |
-// .folder-block-list {
|
|
| 799 |
-// @extend .folder-list; |
|
| 800 |
-// display: flex; |
|
| 801 |
-// flex-direction: column; |
|
| 802 |
-// // grid-template-columns:none; |
|
| 803 |
-// // grid-template-rows:min-content; |
|
| 804 |
-// gap: 0.8rem; |
|
| 805 |
-// > li {
|
|
| 806 |
-// // height: initial; |
|
| 807 |
-// height:8rem; |
|
| 808 |
-// } |
|
| 809 |
-// .num {
|
|
| 810 |
-// flex: none; |
|
| 811 |
-// display: flex; |
|
| 812 |
-// align-items: center; |
|
| 813 |
-// justify-content: center; |
|
| 814 |
-// width: 4rem; |
|
| 815 |
-// height: 4rem; |
|
| 816 |
-// background-color: $color-background-brand-primary; |
|
| 817 |
-// font-size: 1.6rem; |
|
| 818 |
-// font-weight: 700; |
|
| 819 |
-// color: $spot; |
|
| 820 |
-// border-radius: $radius-sm; |
|
| 821 |
-// } |
|
| 822 |
-// p {
|
|
| 823 |
-// @include ellipsis(2); |
|
| 824 |
-// } |
|
| 825 |
-// } |
|
| 826 |
- |
|
| 827 |
-// .star {
|
|
| 828 |
-// position: relative; |
|
| 829 |
-// display: inline-block; |
|
| 830 |
-// width: 8rem; |
|
| 831 |
-// height: 1.6rem; |
|
| 832 |
-// background: url($url-img + 'common/common/btn_star.svg') top left repeat-x; |
|
| 833 |
-// background-size: auto 3.2rem; |
|
| 834 |
-// vertical-align: middle; |
|
| 835 |
-// span {
|
|
| 836 |
-// position: absolute; |
|
| 837 |
-// top: 0; |
|
| 838 |
-// left: 0; |
|
| 839 |
-// bottom: 0; |
|
| 840 |
-// text-indent: -99999px; |
|
| 841 |
-// background: url($url-img + 'common/common/btn_star.svg') 0 -1.6rem repeat-x; |
|
| 842 |
-// background-size: auto 3.2rem; |
|
| 843 |
-// } |
|
| 844 |
-// } |
|
| 845 |
-// .star-check {
|
|
| 846 |
-// button {
|
|
| 847 |
-// $size: 3.2rem; |
|
| 848 |
-// width: $size; |
|
| 849 |
-// height: $size; |
|
| 850 |
-// background: url($url-img + 'common/common/btn_star.svg') no-repeat; |
|
| 851 |
-// background-size: auto 6.4rem; |
|
| 852 |
-// background-position: top left; |
|
| 853 |
-// background-repeat: no-repeat; |
|
| 854 |
-// overflow: hidden; |
|
| 855 |
-// &.is-active, |
|
| 856 |
-// &.is-hover {
|
|
| 857 |
-// background-position: 0 -3.2rem; |
|
| 858 |
-// } |
|
| 859 |
-// } |
|
| 860 |
-// } |
|
| 861 |
-// .star-check-list {
|
|
| 862 |
-// display: flex; |
|
| 863 |
-// flex-direction: column; |
|
| 864 |
-// gap: 0.8rem; |
|
| 865 |
-// li {
|
|
| 866 |
-// display: flex; |
|
| 867 |
-// flex-direction: column; |
|
| 868 |
-// gap: 0.8rem; |
|
| 869 |
-// background-color: $color-background-default-secondary; |
|
| 870 |
-// border-radius: $radius-md; |
|
| 871 |
-// padding: 1.6rem 2.4rem; |
|
| 872 |
-// text-align: left; |
|
| 873 |
-// } |
|
| 874 |
-// .txt-area {
|
|
| 875 |
-// p {
|
|
| 876 |
-// font-size: 1.5rem; |
|
| 877 |
-// } |
|
| 878 |
-// } |
|
| 879 |
-// .star-check {
|
|
| 880 |
-// text-align: center; |
|
| 881 |
-// } |
|
| 882 |
-// } |
|
| 883 |
-// .step-list {
|
|
| 884 |
-// li {
|
|
| 885 |
-// visibility: hidden; |
|
| 886 |
-// // filter: blur(0.5rem); |
|
| 887 |
-// // opacity: 0.8; |
|
| 888 |
-// // .star-check {
|
|
| 889 |
-// // position: relative; |
|
| 890 |
-// // &::after {
|
|
| 891 |
-// // content: " "; |
|
| 892 |
-// // position: absolute; |
|
| 893 |
-// // top: 0; |
|
| 894 |
-// // left: 0; |
|
| 895 |
-// // right: 0; |
|
| 896 |
-// // bottom: 0; |
|
| 897 |
-// // background-color: transparent; |
|
| 898 |
-// // } |
|
| 899 |
-// // } |
|
| 900 |
-// &.is-active {
|
|
| 901 |
-// visibility: visible; |
|
| 902 |
-// animation: opacity 1s forwards; |
|
| 903 |
-// // opacity: 1; |
|
| 904 |
-// // filter: blur(0); |
|
| 905 |
-// // .star-check {
|
|
| 906 |
-// // &::after {
|
|
| 907 |
-// // display: none; |
|
| 908 |
-// // } |
|
| 909 |
-// // } |
|
| 910 |
-// } |
|
| 911 |
-// } |
|
| 912 |
-// } |
|
| 913 |
-// .step-end {
|
|
| 914 |
-// display: none; |
|
| 915 |
-// animation: opacityUp 0.5s forwards; |
|
| 916 |
-// } |
|
| 917 |
-// .mark-area {
|
|
| 918 |
-// display: flex; |
|
| 919 |
-// gap: $spacing-lg; |
|
| 920 |
- |
|
| 921 |
-// .sticky-cont {
|
|
| 922 |
-// position: relative; |
|
| 923 |
-// box-sizing: border-box; |
|
| 924 |
-// width: 24rem; |
|
| 925 |
-// flex: none; |
|
| 926 |
-// // .sticky {
|
|
| 927 |
-// // position: sticky; |
|
| 928 |
-// // top: calc(var(--gnb-fnc-height) + 2rem); |
|
| 929 |
-// // } |
|
| 930 |
-// } |
|
| 931 |
-// .sticky {
|
|
| 932 |
-// display: flex; |
|
| 933 |
-// flex-direction: column; |
|
| 934 |
-// justify-content: space-between; |
|
| 935 |
-// background-color: $color-background-default-tertiary; |
|
| 936 |
-// border-radius: $radius-md; |
|
| 937 |
-// border: $stroke-secondary; |
|
| 938 |
-// padding: 2.4rem 1.6rem; |
|
| 939 |
-// height: calc(100vh - (var(--header-height) + 4.8rem)); |
|
| 940 |
-// gap: 1.6rem; |
|
| 941 |
-// top: calc(var(--header-height) + 2.4rem); |
|
| 942 |
-// } |
|
| 943 |
-// // .scroll-y {
|
|
| 944 |
-// // flex: 1; |
|
| 945 |
-// // overflow-y: auto; |
|
| 946 |
-// // } |
|
| 947 |
-// .btn-flex-cont {
|
|
| 948 |
-// margin: 0; |
|
| 949 |
-// } |
|
| 950 |
-// } |
|
| 951 |
-// .img-sch-area {
|
|
| 952 |
-// .sch-area {
|
|
| 953 |
-// position: sticky; |
|
| 954 |
-// display: flex; |
|
| 955 |
-// gap: 0.8rem; |
|
| 956 |
-// top: -2rem; |
|
| 957 |
-// z-index: 2; |
|
| 958 |
-// background-color: $color-background-default-secondary; |
|
| 959 |
-// padding: 2rem; |
|
| 960 |
-// border: $stroke-secondary; |
|
| 961 |
-// border-radius: $radius-md; |
|
| 962 |
-// overflow: hidden; |
|
| 963 |
-// .sch {
|
|
| 964 |
-// flex: 1; |
|
| 965 |
-// } |
|
| 966 |
-// } |
|
| 967 |
-// .img-sch-result {
|
|
| 968 |
-// padding: 4.8rem; |
|
| 969 |
-// background-color: $color-background-default-secondary; |
|
| 970 |
-// border-radius: $radius-md; |
|
| 971 |
-// } |
|
| 972 |
-// .img-sch-list {
|
|
| 973 |
-// $gap: 1.6rem; |
|
| 974 |
-// display: flex; |
|
| 975 |
-// flex-wrap: wrap; |
|
| 976 |
-// gap: $spacing-md; |
|
| 977 |
- |
|
| 978 |
-// li {
|
|
| 979 |
-// position: relative; |
|
| 980 |
-// width: calc((100% - $gap * 5 ) / 6); |
|
| 981 |
-// &:hover {
|
|
| 982 |
-// z-index: 1; |
|
| 983 |
-// figure {
|
|
| 984 |
-// transform: scale(1.8); |
|
| 985 |
-// } |
|
| 986 |
-// } |
|
| 987 |
-// } |
|
| 988 |
-// figure {
|
|
| 989 |
-// position: relative; |
|
| 990 |
-// height: 0; |
|
| 991 |
-// padding-top: 100%; |
|
| 992 |
-// background-color: $color-background-default-secondary; |
|
| 993 |
-// border: $stroke-secondary; |
|
| 994 |
-// border-radius: $radius-md; |
|
| 995 |
-// img {
|
|
| 996 |
-// object-fit: cover; |
|
| 997 |
-// position: absolute; |
|
| 998 |
-// display: block; |
|
| 999 |
-// top: 50%; |
|
| 1000 |
-// left: 50%; |
|
| 1001 |
-// transform: translate(-50%, -50%); |
|
| 1002 |
-// max-width: 100%; |
|
| 1003 |
-// max-height: 100%; |
|
| 1004 |
-// } |
|
| 1005 |
-// } |
|
| 1006 |
-// } |
|
| 1007 |
-// } |
|
| 1008 |
- |
|
| 1009 |
-// /* .test-list */ |
|
| 1010 |
-// .test-list {
|
|
| 1011 |
-// display: flex; |
|
| 1012 |
-// flex-wrap: wrap; |
|
| 1013 |
-// gap: $spacing-md; |
|
| 1014 |
-// li {
|
|
| 1015 |
-// flex-basis: calc((100% - 0.8rem) / 2); |
|
| 1016 |
-// display: flex; |
|
| 1017 |
-// flex-direction: column; |
|
| 1018 |
-// gap: 2.4rem; |
|
| 1019 |
-// justify-content: center; |
|
| 1020 |
-// .cont {
|
|
| 1021 |
-// display: flex; |
|
| 1022 |
-// align-items: center; |
|
| 1023 |
-// gap: 2.4rem; |
|
| 1024 |
-// } |
|
| 1025 |
-// position: relative; |
|
| 1026 |
-// padding: 2.4rem 3.2rem; |
|
| 1027 |
-// box-sizing: border-box; |
|
| 1028 |
-// border-radius: 0.8rem; |
|
| 1029 |
-// border: $stroke-secondary; |
|
| 1030 |
-// min-width: 0; |
|
| 1031 |
-// .btn-flex-cont {
|
|
| 1032 |
-// margin: 0; |
|
| 1033 |
-// } |
|
| 1034 |
-// .txt-area {
|
|
| 1035 |
-// flex: 1; |
|
| 1036 |
-// .label-area {
|
|
| 1037 |
-// margin-bottom: 1.2rem; |
|
| 1038 |
-// } |
|
| 1039 |
-// h3 {
|
|
| 1040 |
-// font-size: 1.8rem; |
|
| 1041 |
-// font-weight: 500; |
|
| 1042 |
-// word-break: keep-all; |
|
| 1043 |
-// @include ellipsis(2, 1.25); |
|
| 1044 |
-// } |
|
| 1045 |
-// small {
|
|
| 1046 |
-// display: block; |
|
| 1047 |
-// font-size: 1.2rem; |
|
| 1048 |
-// margin-top: 0.4rem; |
|
| 1049 |
-// } |
|
| 1050 |
-// .profile-area {
|
|
| 1051 |
-// margin-top: 1.6rem; |
|
| 1052 |
-// gap: 0.8rem; |
|
| 1053 |
-// .img-area {
|
|
| 1054 |
-// width: 2.4rem; |
|
| 1055 |
-// height: 2.4rem; |
|
| 1056 |
-// } |
|
| 1057 |
-// .txt-area {
|
|
| 1058 |
-// cite {
|
|
| 1059 |
-// font-size: 1.2rem; |
|
| 1060 |
-// color: $color-font-default-tertiary; |
|
| 1061 |
-// } |
|
| 1062 |
-// } |
|
| 1063 |
-// } |
|
| 1064 |
-// } |
|
| 1065 |
-// .score {
|
|
| 1066 |
-// color: $color-font-default-tertiary; |
|
| 1067 |
-// background-color: $color-background-default-secondary; |
|
| 1068 |
-// width: 10rem; |
|
| 1069 |
-// height: 10rem; |
|
| 1070 |
-// line-height: 10rem; |
|
| 1071 |
-// text-align: center; |
|
| 1072 |
-// border-radius: 1.6rem; |
|
| 1073 |
-// em {
|
|
| 1074 |
-// font-size: 2.4rem; |
|
| 1075 |
-// font-weight: 700; |
|
| 1076 |
-// color: $color-font-default-tertiary; |
|
| 1077 |
-// } |
|
| 1078 |
-// } |
|
| 1079 |
-// } |
|
| 1080 |
-// &.col3 {
|
|
| 1081 |
-// li {
|
|
| 1082 |
-// flex-basis: calc((100% - ($spacing-md * 2)) / 3); |
|
| 1083 |
-// } |
|
| 1084 |
-// } |
|
| 1085 |
-// .etc-fnc-area {
|
|
| 1086 |
-// position: absolute; |
|
| 1087 |
-// right: $spacing-md; |
|
| 1088 |
-// top: $spacing-md; |
|
| 1089 |
-// li {
|
|
| 1090 |
-// padding: initial; |
|
| 1091 |
-// border-radius: initial; |
|
| 1092 |
-// border: initial; |
|
| 1093 |
-// } |
|
| 1094 |
-// } |
|
| 1095 |
-// } |
|
| 1096 |
- |
|
| 1097 |
-// .q-option-list {
|
|
| 1098 |
-// display: flex; |
|
| 1099 |
-// flex-direction: column; |
|
| 1100 |
-// gap:$spacing-xsm; |
|
| 1101 |
-// } |
|
| 1102 |
- |
|
| 1103 |
-// /* .summary */ |
|
| 1104 |
-// dl.summary {
|
|
| 1105 |
-// display: flex; |
|
| 1106 |
-// background-color: $color-background-default-secondary; |
|
| 1107 |
-// padding: 1.6rem 2.4rem; |
|
| 1108 |
-// border-radius: $radius-md; |
|
| 1109 |
-// margin-bottom: 1.6rem; |
|
| 1110 |
-// word-break: keep-all; |
|
| 1111 |
-// align-items: center; |
|
| 1112 |
-// dt {
|
|
| 1113 |
-// font-weight: 700; |
|
| 1114 |
-// margin-right: 1.6rem; |
|
| 1115 |
-// } |
|
| 1116 |
-// dd {
|
|
| 1117 |
-// margin-right: 4rem; |
|
| 1118 |
-// display: flex; |
|
| 1119 |
-// align-items: center; |
|
| 1120 |
-// gap: $spacing-2xsm; |
|
| 1121 |
-// &:last-child {
|
|
| 1122 |
-// margin-right: 0; |
|
| 1123 |
-// } |
|
| 1124 |
-// } |
|
| 1125 |
-// } |
|
| 1126 |
- |
|
| 1127 |
-// .test-add-list {
|
|
| 1128 |
-// display: flex; |
|
| 1129 |
-// flex-direction: column; |
|
| 1130 |
-// gap:$spacing-xsm; |
|
| 1131 |
-// > li {
|
|
| 1132 |
-// position: relative; |
|
| 1133 |
-// display: flex; |
|
| 1134 |
-// flex-direction: column; |
|
| 1135 |
-// align-items: flex-start; |
|
| 1136 |
-// justify-content: flex-start; |
|
| 1137 |
-// gap: $spacing-md; |
|
| 1138 |
-// margin-bottom: 0; |
|
| 1139 |
-// background-color: #fff; |
|
| 1140 |
-// border: $stroke-secondary; |
|
| 1141 |
-// padding: 1.6rem; |
|
| 1142 |
-// border-radius: $radius-sm; |
|
| 1143 |
- |
|
| 1144 |
-// .item {
|
|
| 1145 |
-// position: relative; |
|
| 1146 |
-// display: flex; |
|
| 1147 |
-// gap: $spacing-2xsm $spacing-xsm; |
|
| 1148 |
-// align-items: center; |
|
| 1149 |
-// margin-bottom: 0; |
|
| 1150 |
-// background-color: #fff; |
|
| 1151 |
-// width: 100%; |
|
| 1152 |
-// & ~ .item {
|
|
| 1153 |
-// border-top:$stroke-secondary; |
|
| 1154 |
-// padding-top:1.6rem; |
|
| 1155 |
-// } |
|
| 1156 |
-// } |
|
| 1157 |
-// .txt-area {
|
|
| 1158 |
-// display: flex; |
|
| 1159 |
-// flex-direction: column; |
|
| 1160 |
-// gap:$spacing-xsm; |
|
| 1161 |
-// flex:1; |
|
| 1162 |
-// } |
|
| 1163 |
-// .editor-cont {
|
|
| 1164 |
-// @include editor-cont; |
|
| 1165 |
-// } |
|
| 1166 |
-// .box-fnc {
|
|
| 1167 |
-// display: flex; |
|
| 1168 |
-// gap:$spacing-xsm; |
|
| 1169 |
-// align-items: center; |
|
| 1170 |
-// } |
|
| 1171 |
-// &:has(.add-fnc) {
|
|
| 1172 |
-// display: flex; |
|
| 1173 |
-// flex-direction: column; |
|
| 1174 |
-// padding-right:8rem; |
|
| 1175 |
-// .add-fnc {
|
|
| 1176 |
-// position: absolute; |
|
| 1177 |
-// display: flex; |
|
| 1178 |
-// flex-direction: column; |
|
| 1179 |
-// align-items: center; |
|
| 1180 |
-// gap: $spacing-2xsm; |
|
| 1181 |
-// width:8rem; |
|
| 1182 |
-// right:0; |
|
| 1183 |
-// top:50%; |
|
| 1184 |
-// transform: translateY(-50%); |
|
| 1185 |
-// } |
|
| 1186 |
-// } |
|
| 1187 |
-// &:has(> .checkradio) {
|
|
| 1188 |
-// padding-left:40px; |
|
| 1189 |
-// & > .checkradio {
|
|
| 1190 |
-// position: absolute; |
|
| 1191 |
-// top:50%; |
|
| 1192 |
-// left:1.2rem; |
|
| 1193 |
-// transform: translateY(-50%); |
|
| 1194 |
-// } |
|
| 1195 |
-// } |
|
| 1196 |
-// &:has(.ico-move) {
|
|
| 1197 |
-// padding-left:32px; |
|
| 1198 |
-// } |
|
| 1199 |
-// } |
|
| 1200 |
-// .ico-move {
|
|
| 1201 |
-// position: absolute; |
|
| 1202 |
-// left:0; |
|
| 1203 |
-// top:50%; |
|
| 1204 |
-// transform: translateY(-50%); |
|
| 1205 |
-// } |
|
| 1206 |
-// .ico-sm-close {
|
|
| 1207 |
-// position: absolute; |
|
| 1208 |
-// right:-0.8rem; |
|
| 1209 |
-// top:-0.8rem; |
|
| 1210 |
-// } |
|
| 1211 |
-// .txt-none {
|
|
| 1212 |
-// border: none; |
|
| 1213 |
-// background-color: transparent; |
|
| 1214 |
-// height: 100%; |
|
| 1215 |
-// align-items: center; |
|
| 1216 |
-// justify-content: center; |
|
| 1217 |
-// } |
|
| 1218 |
-// } |
|
| 1219 |
- |
|
| 1220 |
-// .basicquiz-stu-list {
|
|
| 1221 |
-// display:grid; |
|
| 1222 |
-// gap:$spacing-xsm; |
|
| 1223 |
-// > li {
|
|
| 1224 |
-// @extend .border-box; |
|
| 1225 |
-// margin-bottom: 0; |
|
| 1226 |
-// display:flex; |
|
| 1227 |
-// align-items: flex-start; |
|
| 1228 |
-// } |
|
| 1229 |
-// .cont-area {
|
|
| 1230 |
-// flex:1; |
|
| 1231 |
-// } |
|
| 1232 |
-// .info-area {
|
|
| 1233 |
-// display:flex; |
|
| 1234 |
-// justify-content: space-between; |
|
| 1235 |
-// } |
|
| 1236 |
-// .stu-info-list {
|
|
| 1237 |
-// display:grid; |
|
| 1238 |
-// gap:$spacing-xsm; |
|
| 1239 |
-// &:has(li) {
|
|
| 1240 |
-// margin-top: $spacing-md; |
|
| 1241 |
-// } |
|
| 1242 |
-// &:first-child {
|
|
| 1243 |
-// margin-top:0; |
|
| 1244 |
-// } |
|
| 1245 |
-// li {
|
|
| 1246 |
-// display: flex; |
|
| 1247 |
-// gap: $spacing-md; |
|
| 1248 |
-// padding:1.6rem 2.4rem; |
|
| 1249 |
-// min-height: 6.4rem; |
|
| 1250 |
-// background: $color-background-default-secondary; |
|
| 1251 |
-// border-radius: $radius-md; |
|
| 1252 |
-// align-items: center; |
|
| 1253 |
-// &.active {
|
|
| 1254 |
-// background-color: $color-background-info-primary; |
|
| 1255 |
-// border: 4px solid $color-primary30; |
|
| 1256 |
-// color: $color-primary50; |
|
| 1257 |
-// cite {
|
|
| 1258 |
-// color: $color-primary50; |
|
| 1259 |
-// } |
|
| 1260 |
-// } |
|
| 1261 |
-// } |
|
| 1262 |
-// .txt-area {
|
|
| 1263 |
-// flex:1; |
|
| 1264 |
-// .label {
|
|
| 1265 |
-// min-width: 5.6rem; |
|
| 1266 |
-// } |
|
| 1267 |
-// strong, |
|
| 1268 |
-// small {
|
|
| 1269 |
-// display: block; |
|
| 1270 |
-// } |
|
| 1271 |
-// } |
|
| 1272 |
-// cite {
|
|
| 1273 |
-// flex:none; |
|
| 1274 |
-// width:80px; |
|
| 1275 |
-// @include typo('tit-xsm');
|
|
| 1276 |
-// } |
|
| 1277 |
-// .info {
|
|
| 1278 |
-// display: flex; |
|
| 1279 |
-// flex-wrap: wrap; |
|
| 1280 |
-// align-items: center; |
|
| 1281 |
-// gap:$spacing-md; |
|
| 1282 |
-// } |
|
| 1283 |
-// .stu-fnc {
|
|
| 1284 |
-// display: flex; |
|
| 1285 |
-// align-items: center; |
|
| 1286 |
-// gap:$spacing-xsm; |
|
| 1287 |
-// } |
|
| 1288 |
-// } |
|
| 1289 |
-// } |
|
| 1290 |
-// .num-input-list {
|
|
| 1291 |
-// display: grid; |
|
| 1292 |
-// gap:$spacing-xsm; |
|
| 1293 |
-// grid-template-columns: repeat(5, 1fr); |
|
| 1294 |
-// li {
|
|
| 1295 |
-// position:relative; |
|
| 1296 |
-// .num {
|
|
| 1297 |
-// position:absolute; |
|
| 1298 |
-// width: 4.8rem; |
|
| 1299 |
-// height: 4.8rem; |
|
| 1300 |
-// line-height:4.8rem; |
|
| 1301 |
-// display: flex; |
|
| 1302 |
-// align-items: center; |
|
| 1303 |
-// justify-content: center; |
|
| 1304 |
-// left:0; |
|
| 1305 |
-// top:0; |
|
| 1306 |
-// bottom:0; |
|
| 1307 |
-// background-color: $color-background-default-tertiary; |
|
| 1308 |
-// @include typo('tit-xsm');
|
|
| 1309 |
-// text-align:center; |
|
| 1310 |
-// border-radius: $radius-sm 0 0 $radius-sm; |
|
| 1311 |
-// z-index: -1; |
|
| 1312 |
-// } |
|
| 1313 |
-// input {
|
|
| 1314 |
-// width: 100%; |
|
| 1315 |
-// min-width: 0; |
|
| 1316 |
-// padding-left:4.8em; |
|
| 1317 |
-// text-align: center; |
|
| 1318 |
-// background-color: transparent; |
|
| 1319 |
-// } |
|
| 1320 |
-// } |
|
| 1321 |
-// } |
|
| 1322 |
-// .num-list {
|
|
| 1323 |
-// border: $stroke-secondary; |
|
| 1324 |
-// border-radius: $radius-sm; |
|
| 1325 |
-// overflow:hidden; |
|
| 1326 |
-// display: grid; |
|
| 1327 |
-// grid-auto-flow: column; |
|
| 1328 |
-// grid-template-rows: repeat(10, minmax(48px, auto)); |
|
| 1329 |
-// margin:0; |
|
| 1330 |
-// padding:0; |
|
| 1331 |
-// li {
|
|
| 1332 |
-// position:relative; |
|
| 1333 |
-// display: grid; |
|
| 1334 |
-// grid-template-columns: repeat(2, 1fr); |
|
| 1335 |
-// align-items: center; |
|
| 1336 |
-// border-bottom: $stroke-secondary; |
|
| 1337 |
-// border-right:$stroke-secondary; |
|
| 1338 |
-// &:nth-child(10n) {
|
|
| 1339 |
-// border-bottom:none; |
|
| 1340 |
-// } |
|
| 1341 |
-// > * {
|
|
| 1342 |
-// flex:1; |
|
| 1343 |
-// } |
|
| 1344 |
-// .num {
|
|
| 1345 |
-// display: flex; |
|
| 1346 |
-// align-items: center; |
|
| 1347 |
-// justify-content: center; |
|
| 1348 |
-// background-color: $color-background-default-tertiary; |
|
| 1349 |
-// @include typo('tit-xsm');
|
|
| 1350 |
-// text-align:center; |
|
| 1351 |
-// height:100%; |
|
| 1352 |
-// } |
|
| 1353 |
-// .txt-area {
|
|
| 1354 |
-// display: flex; |
|
| 1355 |
-// align-items: center; |
|
| 1356 |
-// justify-content: center; |
|
| 1357 |
-// padding:8px; |
|
| 1358 |
-// } |
|
| 1359 |
-// } |
|
| 1360 |
-// } |
|
| 1361 |
- |
|
| 1362 |
-// .row {
|
|
| 1363 |
-// margin-bottom: $spacing-section-sm; |
|
| 1364 |
-// display: grid; |
|
| 1365 |
-// grid-template-columns: repeat(auto-fit, minmax(0, 1fr)); |
|
| 1366 |
-// gap:$spacing-sm; |
|
| 1367 |
-// > .section {
|
|
| 1368 |
-// margin-bottom: 0; |
|
| 1369 |
-// } |
|
| 1370 |
-// .border-box {
|
|
| 1371 |
-// height: 100%; |
|
| 1372 |
-// } |
|
| 1373 |
-// .col2 {
|
|
| 1374 |
-// grid-column: span 2; |
|
| 1375 |
-// } |
|
| 1376 |
-// } |
|
| 1377 |
- |
|
| 1378 |
-// .box-img-list{
|
|
| 1379 |
-// display: flex; |
|
| 1380 |
-// align-items: center; |
|
| 1381 |
-// justify-content: center; |
|
| 1382 |
-// flex-wrap: wrap; |
|
| 1383 |
-// gap: $spacing-md $spacing-xsm; |
|
| 1384 |
-// li {
|
|
| 1385 |
-// flex-basis: 240px; |
|
| 1386 |
-// a {
|
|
| 1387 |
-// display: flex; |
|
| 1388 |
-// flex-direction: column; |
|
| 1389 |
-// align-items: center; |
|
| 1390 |
-// justify-content: center; |
|
| 1391 |
-// gap: $spacing-md; |
|
| 1392 |
-// border-radius: $radius-md; |
|
| 1393 |
-// border: $stroke-secondary; |
|
| 1394 |
-// min-height: 28rem; |
|
| 1395 |
-// padding: $spacing-lg; |
|
| 1396 |
-// box-sizing: border-box; |
|
| 1397 |
-// &:hover {
|
|
| 1398 |
-// border: 2px solid $color-primary50; |
|
| 1399 |
-// box-shadow: $shadow-md; |
|
| 1400 |
-// transition: all .1s; |
|
| 1401 |
-// cite {
|
|
| 1402 |
-// color: $color-primary50; |
|
| 1403 |
-// } |
|
| 1404 |
-// } |
|
| 1405 |
-// cite {
|
|
| 1406 |
-// font-size: 1.8rem; |
|
| 1407 |
-// font-weight: 500; |
|
| 1408 |
-// } |
|
| 1409 |
-// } |
|
| 1410 |
-// } |
|
| 1411 |
-// } |
|
| 1412 |
- |
|
| 1413 |
-// .group-list {
|
|
| 1414 |
-// text-align: left; |
|
| 1415 |
-// li {
|
|
| 1416 |
-// padding-bottom: $spacing-md; |
|
| 1417 |
-// margin-bottom: $spacing-md; |
|
| 1418 |
-// border-bottom: $stroke-secondary; |
|
| 1419 |
-// &:last-child {
|
|
| 1420 |
-// padding-bottom: 0; |
|
| 1421 |
-// margin-bottom: 0; |
|
| 1422 |
-// border-bottom: none; |
|
| 1423 |
-// } |
|
| 1424 |
-// .label-area {
|
|
| 1425 |
-// margin-bottom: $spacing-xsm; |
|
| 1426 |
-// } |
|
| 1427 |
-// .info-quiz {
|
|
| 1428 |
-// font-weight: 500; |
|
| 1429 |
-// font-size: $size-font-md; |
|
| 1430 |
-// } |
|
| 1431 |
-// .editor-cont {
|
|
| 1432 |
-// margin-top: $spacing-2xsm; |
|
| 1433 |
-// font-size: $size-font-md; |
|
| 1434 |
-// & > i {
|
|
| 1435 |
-// margin-right: $spacing-2xsm; |
|
| 1436 |
-// } |
|
| 1437 |
-// br {
|
|
| 1438 |
-// display: none; |
|
| 1439 |
-// } |
|
| 1440 |
-// } |
|
| 1441 |
-// } |
|
| 1442 |
-// } |
|
| 1443 |
- |
|
| 1444 |
-// .group-list-test {
|
|
| 1445 |
-// li {
|
|
| 1446 |
-// display: flex; |
|
| 1447 |
-// align-items: center; |
|
| 1448 |
-// min-height: 40px; |
|
| 1449 |
-// box-sizing: content-box; |
|
| 1450 |
-// &> * {
|
|
| 1451 |
-// flex: 1; |
|
| 1452 |
-// } |
|
| 1453 |
-// & ~ li {
|
|
| 1454 |
-// padding-top: $spacing-md; |
|
| 1455 |
-// margin-top: $spacing-md; |
|
| 1456 |
-// border-top: $stroke-secondary; |
|
| 1457 |
-// } |
|
| 1458 |
-// .txt-area {
|
|
| 1459 |
-// display: flex; |
|
| 1460 |
-// align-items: center; |
|
| 1461 |
-// gap: $spacing-2xsm; |
|
| 1462 |
-// flex-basis: 42%; |
|
| 1463 |
-// text-align: left; |
|
| 1464 |
-// font-size: $size-font-md; |
|
| 1465 |
-// .editor-cont {
|
|
| 1466 |
-// @include ellipsis(2); |
|
| 1467 |
-// } |
|
| 1468 |
-// } |
|
| 1469 |
-// } |
|
| 1470 |
-// } |
|
| 1471 |
- |
|
| 1472 |
-// .search-keyword-area {
|
|
| 1473 |
-// background-color: $color-background-default-secondary; |
|
| 1474 |
-// padding: 3.2rem 4rem; |
|
| 1475 |
-// border-radius: $radius-md; |
|
| 1476 |
-// margin-bottom: 4rem; |
|
| 1477 |
-// cite {
|
|
| 1478 |
-// font-size: $size-font-md; |
|
| 1479 |
-// font-weight: 700; |
|
| 1480 |
-// color: $color-font-default-tertiary; |
|
| 1481 |
-// display: block; |
|
| 1482 |
-// margin-bottom: 0.8rem; |
|
| 1483 |
-// } |
|
| 1484 |
-// ul {
|
|
| 1485 |
-// display: flex; |
|
| 1486 |
-// flex-wrap: wrap; |
|
| 1487 |
-// gap: $spacing-2xsm; |
|
| 1488 |
-// } |
|
| 1489 |
-// li {
|
|
| 1490 |
-// a {
|
|
| 1491 |
-// display: block; |
|
| 1492 |
-// padding: 0.8rem 1.2rem; |
|
| 1493 |
-// background-color: $color-background-default-primary; |
|
| 1494 |
-// border-radius: 2rem; |
|
| 1495 |
-// border: $stroke-secondary; |
|
| 1496 |
-// &:hover {
|
|
| 1497 |
-// background-color: $color-background-default-tertiary; |
|
| 1498 |
-// } |
|
| 1499 |
-// } |
|
| 1500 |
-// } |
|
| 1501 |
-// } |
|
| 1502 |
- |
|
| 1503 |
-// .basicquiz-score-area {
|
|
| 1504 |
-// &.is-disabled {
|
|
| 1505 |
-// background-color: $color-background-default-secondary; |
|
| 1506 |
-// padding:2.4rem; |
|
| 1507 |
-// border-radius: $radius-md; |
|
| 1508 |
-// margin-bottom: $spacing-md; |
|
| 1509 |
-// .tit-area {
|
|
| 1510 |
-// margin-bottom: 0; |
|
| 1511 |
-// } |
|
| 1512 |
-// .write-type {
|
|
| 1513 |
-// display: none; |
|
| 1514 |
-// } |
|
| 1515 |
-// & + .basicquiz-score-area:not(.is-disabled) {
|
|
| 1516 |
-// margin-top:8rem; |
|
| 1517 |
-// } |
|
| 1518 |
-// } |
|
| 1519 |
-// .score-list {
|
|
| 1520 |
-// display: grid; |
|
| 1521 |
-// grid-template-columns: repeat(5, 1fr); |
|
| 1522 |
-// gap:$spacing-xsm; |
|
| 1523 |
-// overflow: hidden; |
|
| 1524 |
-// li {
|
|
| 1525 |
-// display: flex; |
|
| 1526 |
-// gap:$spacing-xsm; |
|
| 1527 |
-// align-items: center; |
|
| 1528 |
-// position: relative; |
|
| 1529 |
-// // background-color: $color-background-default-secondary; |
|
| 1530 |
-// border: $stroke-secondary; |
|
| 1531 |
-// border-radius: $radius-sm; |
|
| 1532 |
-// padding:1.6rem; |
|
| 1533 |
-// min-height: 16.4rem; |
|
| 1534 |
-// &.add-area {
|
|
| 1535 |
-// display: flex; |
|
| 1536 |
-// flex-direction: column; |
|
| 1537 |
-// align-items: center; |
|
| 1538 |
-// justify-content: center; |
|
| 1539 |
-// border:.2rem dashed $color-stroke-default-tertiary; |
|
| 1540 |
-// } |
|
| 1541 |
-// } |
|
| 1542 |
-// cite {
|
|
| 1543 |
-// @include typo('tit-xsm');
|
|
| 1544 |
-// display: block; |
|
| 1545 |
-// margin-bottom: $spacing-xsm; |
|
| 1546 |
-// } |
|
| 1547 |
-// fieldset {
|
|
| 1548 |
-// display: grid; |
|
| 1549 |
-// gap:$spacing-xsm; |
|
| 1550 |
-// label {
|
|
| 1551 |
-// position: relative; |
|
| 1552 |
-// display: flex; |
|
| 1553 |
-// overflow: hidden; |
|
| 1554 |
-// align-items: center; |
|
| 1555 |
-// gap: $spacing-2xsm; |
|
| 1556 |
-// span {
|
|
| 1557 |
-// position: absolute; |
|
| 1558 |
-// display: flex; |
|
| 1559 |
-// align-items: center; |
|
| 1560 |
-// top:0.2rem; |
|
| 1561 |
-// left:0.2rem; |
|
| 1562 |
-// bottom:0.2rem; |
|
| 1563 |
-// flex:none; |
|
| 1564 |
-// width: 6.2rem; |
|
| 1565 |
-// font-size: var(--fs-sm); |
|
| 1566 |
-// font-weight: 700; |
|
| 1567 |
-// color: $color-font-default-tertiary; |
|
| 1568 |
-// background-color: $color-background-default-secondary; |
|
| 1569 |
-// border-radius: $radius-sm 0 0 $radius-sm; |
|
| 1570 |
-// padding-left:0.8rem; |
|
| 1571 |
-// } |
|
| 1572 |
-// } |
|
| 1573 |
-// input {
|
|
| 1574 |
-// min-width: 0; |
|
| 1575 |
-// } |
|
| 1576 |
-// input[type=number] {
|
|
| 1577 |
-// width: 100%; |
|
| 1578 |
-// min-width: 0; |
|
| 1579 |
-// padding-left:6.4rem + 1.6rem; |
|
| 1580 |
-// text-align: center; |
|
| 1581 |
-// } |
|
| 1582 |
-// } |
|
| 1583 |
-// & + .score-list {
|
|
| 1584 |
-// margin-top:$spacing-xsm; |
|
| 1585 |
-// } |
|
| 1586 |
-// } |
|
| 1587 |
-// } |
|
| 1588 |
- |
|
| 1589 |
-// .storage-add-area {
|
|
| 1590 |
-// display: grid; |
|
| 1591 |
-// gap:$spacing-xsm; |
|
| 1592 |
-// .btn-storage {
|
|
| 1593 |
-// display:inline-flex; |
|
| 1594 |
-// } |
|
| 1595 |
-// .storage-add {
|
|
| 1596 |
-// display: none; |
|
| 1597 |
-// gap: $spacing-xsm; |
|
| 1598 |
-// justify-content: center; |
|
| 1599 |
-// flex-wrap: wrap; |
|
| 1600 |
-// input{
|
|
| 1601 |
-// width: 100%; |
|
| 1602 |
-// } |
|
| 1603 |
-// } |
|
| 1604 |
-// &.is-active {
|
|
| 1605 |
-// .btn-storage {
|
|
| 1606 |
-// display:none; |
|
| 1607 |
-// } |
|
| 1608 |
-// .storage-add {
|
|
| 1609 |
-// display:flex; |
|
| 1610 |
-// } |
|
| 1611 |
-// } |
|
| 1612 |
-// } |
|
| 1613 |
- |
|
| 1614 |
-// .reference-list {
|
|
| 1615 |
-// display: grid; |
|
| 1616 |
-// gap: $spacing-xsm; |
|
| 1617 |
-// grid-template-columns: repeat(2, 1fr); |
|
| 1618 |
-// li {
|
|
| 1619 |
-// position: relative; |
|
| 1620 |
-// display: flex; |
|
| 1621 |
-// align-items: center; |
|
| 1622 |
-// gap:$spacing-sm; |
|
| 1623 |
-// background-color: $color-background-default-primary; |
|
| 1624 |
-// border: 1px solid $color-stroke-default-quaternary; |
|
| 1625 |
-// padding: $spacing-sm; |
|
| 1626 |
-// border-radius: $radius-sm; |
|
| 1627 |
-// &:hover {
|
|
| 1628 |
-// font-weight: $size-font-weight-xlg; |
|
| 1629 |
-// color: $color-font-default-secondary |
|
| 1630 |
-// } |
|
| 1631 |
-// .img-weboffice-area {
|
|
| 1632 |
-// img {
|
|
| 1633 |
-// display: block; |
|
| 1634 |
-// } |
|
| 1635 |
-// } |
|
| 1636 |
-// } |
|
| 1637 |
-// .img-area {
|
|
| 1638 |
-// @include img-size; |
|
| 1639 |
-// width: 16rem; |
|
| 1640 |
-// aspect-ratio: 16/9; |
|
| 1641 |
-// flex:none; |
|
| 1642 |
-// } |
|
| 1643 |
-// .img-weboffice-area {
|
|
| 1644 |
-// width: 7.2rem; |
|
| 1645 |
-// padding: $spacing-xsm; |
|
| 1646 |
-// background-color: $color-background-default-primary; |
|
| 1647 |
-// border: $stroke-secondary; |
|
| 1648 |
-// } |
|
| 1649 |
-// .txt-area {
|
|
| 1650 |
-// flex:1; |
|
| 1651 |
-// .txt {
|
|
| 1652 |
-// margin-top:$spacing-xsm; |
|
| 1653 |
-// @include ellipsis(2); |
|
| 1654 |
-// } |
|
| 1655 |
-// } |
|
| 1656 |
-// } |
|
| 1657 |
- |
|
| 1658 |
-// .border-list {
|
|
| 1659 |
-// border:$stroke-secondary; |
|
| 1660 |
-// border-radius: $radius-md; |
|
| 1661 |
-// background-color: $color-background-default-primary; |
|
| 1662 |
-// > li {
|
|
| 1663 |
-// @extend %flexArea; |
|
| 1664 |
-// border-bottom: $stroke-secondary; |
|
| 1665 |
-// padding: $spacing-md $spacing-lg; |
|
| 1666 |
-// flex-wrap: wrap; |
|
| 1667 |
-// &:last-of-type {
|
|
| 1668 |
-// border-bottom: none; |
|
| 1669 |
-// } |
|
| 1670 |
-// .num {
|
|
| 1671 |
-// flex:none; |
|
| 1672 |
-// } |
|
| 1673 |
-// .l-area {
|
|
| 1674 |
-// flex:1; |
|
| 1675 |
-// } |
|
| 1676 |
-// .item-tit {
|
|
| 1677 |
-// font-weight: $size-font-weight-md; |
|
| 1678 |
-// } |
|
| 1679 |
-// } |
|
| 1680 |
-// } |
|
| 1681 |
- |
|
| 1682 |
-// // 나의 보관함 |
|
| 1683 |
-// .mystorage {
|
|
| 1684 |
-// .row {
|
|
| 1685 |
-// margin-bottom: $spacing-section-md; |
|
| 1686 |
-// } |
|
| 1687 |
-// } |
|
| 1688 |
-// .mystorage-header {
|
|
| 1689 |
-// display: grid; |
|
| 1690 |
-// grid-template-columns: 16rem 1fr; |
|
| 1691 |
-// border:$stroke-secondary; |
|
| 1692 |
-// border-radius: $radius-md; |
|
| 1693 |
-// overflow-y: hidden; |
|
| 1694 |
-// overflow-x: auto; |
|
| 1695 |
-// margin-bottom: $spacing-3xlg; |
|
| 1696 |
-// .my-info {
|
|
| 1697 |
-// display: flex; |
|
| 1698 |
-// flex-direction: column; |
|
| 1699 |
-// gap:$spacing-sm; |
|
| 1700 |
-// padding:$spacing-lg $spacing-sm; |
|
| 1701 |
-// background-color:$color-background-brand-primary-inverse; |
|
| 1702 |
-// .profile {
|
|
| 1703 |
-// position: relative; |
|
| 1704 |
-// .profile-tit {
|
|
| 1705 |
-// color: $color-font-default-primary-inverse; |
|
| 1706 |
-// } |
|
| 1707 |
-// } |
|
| 1708 |
-// .btn-group {
|
|
| 1709 |
-// .btn {
|
|
| 1710 |
-// background: $color-background-default-primary; |
|
| 1711 |
-// border-radius: 2em; |
|
| 1712 |
-// } |
|
| 1713 |
-// } |
|
| 1714 |
-// } |
|
| 1715 |
-// .contents-info{
|
|
| 1716 |
-// min-width: 88rem; |
|
| 1717 |
-// display: grid; |
|
| 1718 |
-// grid-template-columns: 75% repeat(auto-fit, minmax(0, 1fr)); |
|
| 1719 |
-// > li {
|
|
| 1720 |
-// height:0; |
|
| 1721 |
-// > strong {
|
|
| 1722 |
-// display: flex; |
|
| 1723 |
-// justify-content: center; |
|
| 1724 |
-// align-items: center; |
|
| 1725 |
-// height: 3.6rem; |
|
| 1726 |
-// padding: 0 $spacing-md; |
|
| 1727 |
-// border-bottom: $stroke-secondary; |
|
| 1728 |
-// background: $color-background-default-secondary; |
|
| 1729 |
-// @include typo('tit-xsm');
|
|
| 1730 |
-// color: $color-font-default-tertiary; |
|
| 1731 |
-// } |
|
| 1732 |
-// > ul {
|
|
| 1733 |
-// display: grid; |
|
| 1734 |
-// grid-template-columns: repeat(auto-fit, minmax(0, 1fr)); |
|
| 1735 |
-// height:100%; |
|
| 1736 |
-// } |
|
| 1737 |
-// } |
|
| 1738 |
-// .item {
|
|
| 1739 |
-// border-left: $stroke-secondary; |
|
| 1740 |
-// padding:$spacing-md $spacing-xsm; |
|
| 1741 |
-// display: grid; |
|
| 1742 |
-// gap:$spacing-md; |
|
| 1743 |
-// align-items: end; |
|
| 1744 |
-// height:100%; |
|
| 1745 |
-// figure {
|
|
| 1746 |
-// display: flex; |
|
| 1747 |
-// flex-direction: column; |
|
| 1748 |
-// align-items: center; |
|
| 1749 |
-// justify-content: center; |
|
| 1750 |
-// gap:$spacing-xsm; |
|
| 1751 |
-// text-align: center; |
|
| 1752 |
-// figcaption {
|
|
| 1753 |
-// @include typo('tit-xsm');
|
|
| 1754 |
-// } |
|
| 1755 |
-// img {
|
|
| 1756 |
-// display: block; |
|
| 1757 |
-// width:4.8rem; |
|
| 1758 |
-// } |
|
| 1759 |
-// } |
|
| 1760 |
-// .txt-list {
|
|
| 1761 |
-// display: grid; |
|
| 1762 |
-// border-radius: $radius-sm; |
|
| 1763 |
-// background: $color-background-brand-primary; |
|
| 1764 |
-// padding:$spacing-2xsm $spacing-xsm; |
|
| 1765 |
-// li {
|
|
| 1766 |
-// display: flex; |
|
| 1767 |
-// justify-content: space-between; |
|
| 1768 |
-// border-top:$stroke-secondary; |
|
| 1769 |
-// padding:$spacing-xsm $spacing-xsm; |
|
| 1770 |
-// &:first-of-type {
|
|
| 1771 |
-// border-top: none; |
|
| 1772 |
-// } |
|
| 1773 |
-// em {
|
|
| 1774 |
-// @include typo ('label-md','strong');
|
|
| 1775 |
-// } |
|
| 1776 |
-// } |
|
| 1777 |
-// strong {
|
|
| 1778 |
-// font-weight: $size-font-weight-md; |
|
| 1779 |
-// } |
|
| 1780 |
-// } |
|
| 1781 |
-// } |
|
| 1782 |
- |
|
| 1783 |
-// } |
|
| 1784 |
-// } |
|
| 1785 |
-// .mystorage-best {
|
|
| 1786 |
-// ul {
|
|
| 1787 |
-// display: grid; |
|
| 1788 |
-// grid-template-columns: repeat(auto-fit, minmax(12rem, 1fr)); |
|
| 1789 |
-// height:100%; |
|
| 1790 |
-// gap:$spacing-sm; |
|
| 1791 |
-// > li {
|
|
| 1792 |
-// position: relative; |
|
| 1793 |
-// display: flex; |
|
| 1794 |
-// flex-direction: column; |
|
| 1795 |
-// gap:$spacing-sm; |
|
| 1796 |
-// align-items: center; |
|
| 1797 |
-// justify-content: center; |
|
| 1798 |
-// border-radius: $radius-md; |
|
| 1799 |
-// border: $stroke-secondary; |
|
| 1800 |
-// background: $color-background-default-secondary; |
|
| 1801 |
-// padding:$spacing-lg; |
|
| 1802 |
-// } |
|
| 1803 |
-// .label-img {
|
|
| 1804 |
-// width: 4rem; |
|
| 1805 |
-// img {
|
|
| 1806 |
-// width: 100%; |
|
| 1807 |
-// } |
|
| 1808 |
-// } |
|
| 1809 |
-// } |
|
| 1810 |
-// } |
|
| 1811 |
- |
|
| 1812 |
-// .user-info-area {
|
|
| 1813 |
-// display: flex; |
|
| 1814 |
-// align-items: center; |
|
| 1815 |
-// margin-top: calc(var(--body-top-spacing) * -1); |
|
| 1816 |
-// margin-bottom: var(--body-top-spacing); |
|
| 1817 |
-// padding:$spacing-lg 0; |
|
| 1818 |
-// min-height: 16rem; |
|
| 1819 |
-// background: url($url-img + "custom/class/visual.png") center/cover $color-background-brand-primary-inverse; |
|
| 1820 |
-// color: $color-font-default-primary-inverse; |
|
| 1821 |
-// overflow: hidden; |
|
| 1822 |
- |
|
| 1823 |
-// .wrap {
|
|
| 1824 |
-// width: 100%; |
|
| 1825 |
-// display: flex; |
|
| 1826 |
-// align-items: center; |
|
| 1827 |
-// gap: $spacing-md; |
|
| 1828 |
-// } |
|
| 1829 |
- |
|
| 1830 |
-// .info-area {
|
|
| 1831 |
-// flex: 1; |
|
| 1832 |
-// display: flex; |
|
| 1833 |
-// align-items: center; |
|
| 1834 |
-// gap: $spacing-md; |
|
| 1835 |
- |
|
| 1836 |
-// .profile-area {
|
|
| 1837 |
-// img {
|
|
| 1838 |
-// width: 8rem; |
|
| 1839 |
-// height: 8rem; |
|
| 1840 |
-// } |
|
| 1841 |
-// } |
|
| 1842 |
- |
|
| 1843 |
-// .txt-area {
|
|
| 1844 |
-// h3 {
|
|
| 1845 |
-// @include typo('tit-lg');
|
|
| 1846 |
-// } |
|
| 1847 |
- |
|
| 1848 |
-// .info-inline-list {
|
|
| 1849 |
-// li {
|
|
| 1850 |
-// color: $color-font-default-secondary-inverse; |
|
| 1851 |
-// } |
|
| 1852 |
-// } |
|
| 1853 |
-// } |
|
| 1854 |
-// } |
|
| 1855 |
-// } |
|
| 1856 |
- |
|
| 1857 |
-// .emotion-tbl-area {
|
|
| 1858 |
-// overflow-x: auto; |
|
| 1859 |
-// th, |
|
| 1860 |
-// td {
|
|
| 1861 |
-// word-break: break-all; |
|
| 1862 |
-// } |
|
| 1863 |
-// .emotion-tbl {
|
|
| 1864 |
-// th {
|
|
| 1865 |
-// color: $color-font-default-tertiary; |
|
| 1866 |
-// background-color: $color-background-default-secondary; |
|
| 1867 |
-// } |
|
| 1868 |
-// thead {
|
|
| 1869 |
-// th {
|
|
| 1870 |
-// border-bottom: none; |
|
| 1871 |
-// padding:$spacing-md $spacing-sm; |
|
| 1872 |
-// &:first-of-type {
|
|
| 1873 |
-// border-radius: $radius-sm 0 0 0; |
|
| 1874 |
-// } |
|
| 1875 |
-// &:last-of-type {
|
|
| 1876 |
-// border-radius: 0 $radius-sm $radius-sm 0; |
|
| 1877 |
-// } |
|
| 1878 |
-// } |
|
| 1879 |
-// } |
|
| 1880 |
-// tbody {
|
|
| 1881 |
-// th, |
|
| 1882 |
-// td {
|
|
| 1883 |
-// border-bottom: $stroke-secondary; |
|
| 1884 |
-// border-left: $stroke-secondary; |
|
| 1885 |
-// &:first-of-type {
|
|
| 1886 |
-// border-left: none; |
|
| 1887 |
-// } |
|
| 1888 |
-// } |
|
| 1889 |
-// } |
|
| 1890 |
-// td {
|
|
| 1891 |
-// height:10rem; |
|
| 1892 |
-// padding: $spacing-sm $spacing-2xsm; |
|
| 1893 |
-// } |
|
| 1894 |
-// img {
|
|
| 1895 |
-// max-width:4.8rem; |
|
| 1896 |
-// width: 100%; |
|
| 1897 |
-// margin: 0 auto; |
|
| 1898 |
-// } |
|
| 1899 |
-// } |
|
| 1900 |
-// } |
|
| 1901 |
-// .emotion-check-area {
|
|
| 1902 |
-// background: $color-background-default-secondary; |
|
| 1903 |
-// border-radius: $radius-lg; |
|
| 1904 |
-// border:$stroke-secondary; |
|
| 1905 |
-// overflow: hidden; |
|
| 1906 |
-// header {
|
|
| 1907 |
-// display: flex; |
|
| 1908 |
-// flex-direction: column; |
|
| 1909 |
-// align-items: center; |
|
| 1910 |
-// justify-content: center; |
|
| 1911 |
-// gap:$spacing-2xsm; |
|
| 1912 |
-// padding:$spacing-md; |
|
| 1913 |
-// border-bottom: $stroke-secondary; |
|
| 1914 |
-// background: $color-background-default-primary; |
|
| 1915 |
-// strong {
|
|
| 1916 |
-// @include typo('tit-label');
|
|
| 1917 |
-// } |
|
| 1918 |
-// h3 {
|
|
| 1919 |
-// @include typo('tit-lg');
|
|
| 1920 |
-// } |
|
| 1921 |
-// p {
|
|
| 1922 |
-// color: $color-font-default-secondary; |
|
| 1923 |
-// } |
|
| 1924 |
-// } |
|
| 1925 |
-// .emotion-check {
|
|
| 1926 |
-// padding:$spacing-2xlg $spacing-lg; |
|
| 1927 |
-// ul {
|
|
| 1928 |
-// display: grid; |
|
| 1929 |
-// grid-template-columns: repeat(5, 1fr); |
|
| 1930 |
-// gap:$spacing-xsm; |
|
| 1931 |
-// label {
|
|
| 1932 |
-// display: flex; |
|
| 1933 |
-// flex-direction: column; |
|
| 1934 |
-// align-items: center; |
|
| 1935 |
-// justify-content: center; |
|
| 1936 |
-// border-radius: $radius-md; |
|
| 1937 |
-// border: $stroke-secondary; |
|
| 1938 |
-// background: $color-background-default-primary; |
|
| 1939 |
-// padding: $spacing-lg $spacing-xsm; |
|
| 1940 |
-// gap:$spacing-2xsm; |
|
| 1941 |
-// cursor: pointer; |
|
| 1942 |
-// &:has(input:checked) {
|
|
| 1943 |
-// border:none; |
|
| 1944 |
-// outline: $size-stroke-sm solid $color-stroke-brand-primary; |
|
| 1945 |
-// } |
|
| 1946 |
-// img {
|
|
| 1947 |
-// width: 8rem; |
|
| 1948 |
-// aspect-ratio: 1; |
|
| 1949 |
-// } |
|
| 1950 |
-// strong {
|
|
| 1951 |
-// @include typo('body-lg');
|
|
| 1952 |
-// color: $color-font-default-secondary; |
|
| 1953 |
-// } |
|
| 1954 |
-// } |
|
| 1955 |
-// .emotion-none {
|
|
| 1956 |
-// grid-column: 1 / -1; |
|
| 1957 |
- |
|
| 1958 |
-// label {
|
|
| 1959 |
-// flex-direction: row; |
|
| 1960 |
-// img {
|
|
| 1961 |
-// width: 2.4rem; |
|
| 1962 |
-// } |
|
| 1963 |
-// } |
|
| 1964 |
-// } |
|
| 1965 |
-// } |
|
| 1966 |
-// } |
|
| 1967 |
-// } |
|
| 1968 |
-// .calendar-tbl {
|
|
| 1969 |
-// .emotion {
|
|
| 1970 |
-// display: flex; |
|
| 1971 |
-// flex-direction: column; |
|
| 1972 |
-// align-items: center; |
|
| 1973 |
-// gap:$spacing-2xsm; |
|
| 1974 |
-// img {
|
|
| 1975 |
-// width: 4.8rem; |
|
| 1976 |
-// aspect-ratio: 1; |
|
| 1977 |
-// } |
|
| 1978 |
-// figcaption {
|
|
| 1979 |
-// @include typo('body-sm');
|
|
| 1980 |
-// } |
|
| 1981 |
-// } |
|
| 1982 |
-// } |
|
| 1983 |
-// .survey-q-list {
|
|
| 1984 |
-// > li {
|
|
| 1985 |
-// padding: $spacing-lg 0; |
|
| 1986 |
-// border-bottom: $stroke-secondary; |
|
| 1987 |
-// display: flex; |
|
| 1988 |
-// flex-direction: column; |
|
| 1989 |
-// // grid-template-columns: repeat(auto-fit, minmax(0, 1fr)); |
|
| 1990 |
-// gap:$spacing-lg; |
|
| 1991 |
-// align-items: center; |
|
| 1992 |
-// &:first-of-type {
|
|
| 1993 |
-// padding-top: 0; |
|
| 1994 |
-// } |
|
| 1995 |
-// } |
|
| 1996 |
-// .q-area {
|
|
| 1997 |
-// display: flex; |
|
| 1998 |
-// align-items: center; |
|
| 1999 |
-// gap: $spacing-md; |
|
| 2000 |
-// width: 100%; |
|
| 2001 |
-// } |
|
| 2002 |
-// .a-area {
|
|
| 2003 |
-// width: 100%; |
|
| 2004 |
-// } |
|
| 2005 |
-// span {
|
|
| 2006 |
-// color: $color-font-default-secondary; |
|
| 2007 |
-// @include typo('body-md');
|
|
| 2008 |
-// } |
|
| 2009 |
-// .q-tit {
|
|
| 2010 |
-// @include typo('tit-md');
|
|
| 2011 |
-// } |
|
| 2012 |
-// .a-legend {
|
|
| 2013 |
-// display: flex; |
|
| 2014 |
-// justify-content: space-between; |
|
| 2015 |
-// margin-top: $spacing-xsm; |
|
| 2016 |
-// } |
|
| 2017 |
-// .a-cont {
|
|
| 2018 |
-// display: flex; |
|
| 2019 |
-// flex-direction: row; |
|
| 2020 |
-// justify-content: space-between; |
|
| 2021 |
-// gap: $spacing-xsm; |
|
| 2022 |
-// word-break: keep-all; |
|
| 2023 |
-// text-align: center; |
|
| 2024 |
-// &:has(.a-des) {
|
|
| 2025 |
-// padding-top:4.8rem; |
|
| 2026 |
-// } |
|
| 2027 |
-// label {
|
|
| 2028 |
-// display: flex; |
|
| 2029 |
-// flex-direction: column; |
|
| 2030 |
-// align-items: center; |
|
| 2031 |
-// gap: $spacing-xsm; |
|
| 2032 |
-// cursor: pointer; |
|
| 2033 |
- |
|
| 2034 |
-// i {
|
|
| 2035 |
-// position: relative; |
|
| 2036 |
-// display: flex; |
|
| 2037 |
-// align-items: center; |
|
| 2038 |
-// justify-content: center; |
|
| 2039 |
-// width: 4.8rem; |
|
| 2040 |
-// height: 4.8rem; |
|
| 2041 |
-// border-radius: $radius-full; |
|
| 2042 |
-// background-color: $color-icon-brand-primary-inverse; |
|
| 2043 |
- |
|
| 2044 |
-// &::before {
|
|
| 2045 |
-// content: " "; |
|
| 2046 |
-// display: block; |
|
| 2047 |
-// width: 0; |
|
| 2048 |
-// aspect-ratio: 1; |
|
| 2049 |
-// border-radius: $radius-full; |
|
| 2050 |
-// background-color: $color-icon-brand-primary; |
|
| 2051 |
-// transition: all 0.2s; |
|
| 2052 |
-// } |
|
| 2053 |
-// } |
|
| 2054 |
- |
|
| 2055 |
-// input:checked ~ i {
|
|
| 2056 |
-// border: $size-stroke-xsm solid $color-icon-brand-primary; |
|
| 2057 |
- |
|
| 2058 |
-// &::before {
|
|
| 2059 |
-// width: 60%; |
|
| 2060 |
-// } |
|
| 2061 |
-// } |
|
| 2062 |
-// } |
|
| 2063 |
-// %level1 {
|
|
| 2064 |
-// i {
|
|
| 2065 |
-// background-color: $color-icon-success-primary-inverse; |
|
| 2066 |
-// } |
|
| 2067 |
-// input:checked ~ i {
|
|
| 2068 |
-// border-color: $color-icon-success-primary; |
|
| 2069 |
-// &::before {
|
|
| 2070 |
-// background-color: $color-icon-success-primary; |
|
| 2071 |
-// } |
|
| 2072 |
-// } |
|
| 2073 |
-// } |
|
| 2074 |
-// %level2 {
|
|
| 2075 |
-// i {
|
|
| 2076 |
-// background-color: $color-icon-info-primary-inverse; |
|
| 2077 |
-// } |
|
| 2078 |
-// input:checked ~ i {
|
|
| 2079 |
-// border-color: $color-icon-info-primary; |
|
| 2080 |
-// &::before {
|
|
| 2081 |
-// background-color: $color-icon-info-primary; |
|
| 2082 |
-// } |
|
| 2083 |
-// } |
|
| 2084 |
-// } |
|
| 2085 |
-// %level3 {
|
|
| 2086 |
-// i {
|
|
| 2087 |
-// background-color: $color-icon-danger-primary-inverse; |
|
| 2088 |
-// } |
|
| 2089 |
-// input:checked ~ i {
|
|
| 2090 |
-// border-color: $color-icon-danger-primary; |
|
| 2091 |
-// &::before {
|
|
| 2092 |
-// background-color: $color-icon-danger-primary; |
|
| 2093 |
-// } |
|
| 2094 |
-// } |
|
| 2095 |
-// } |
|
| 2096 |
-// @for $i from 1 through 3 {
|
|
| 2097 |
-// .level#{$i} {
|
|
| 2098 |
-// @extend %level#{$i};
|
|
| 2099 |
-// } |
|
| 2100 |
-// } |
|
| 2101 |
-// // // li가 1개일 때 |
|
| 2102 |
-// // label:first-child:nth-last-child(1) {
|
|
| 2103 |
-// // @extend %level1; |
|
| 2104 |
-// // } |
|
| 2105 |
- |
|
| 2106 |
-// // // li가 2개일 때 |
|
| 2107 |
-// // label:first-child:nth-last-child(2), |
|
| 2108 |
-// // label:first-child:nth-last-child(2) ~ label {
|
|
| 2109 |
-// // @extend %level1; |
|
| 2110 |
-// // } |
|
| 2111 |
- |
|
| 2112 |
-// // label:first-child:nth-last-child(2):nth-child(2), |
|
| 2113 |
-// // label:first-child:nth-last-child(2) ~ label:nth-child(2) {
|
|
| 2114 |
-// // @extend %level2; |
|
| 2115 |
-// // } |
|
| 2116 |
- |
|
| 2117 |
-// // // li가 3개일 때 |
|
| 2118 |
-// // label:first-child:nth-last-child(3), |
|
| 2119 |
-// // label:first-child:nth-last-child(3) ~ label {
|
|
| 2120 |
-// // @extend %level1; |
|
| 2121 |
-// // } |
|
| 2122 |
- |
|
| 2123 |
-// // label:first-child:nth-last-child(3):nth-child(2), |
|
| 2124 |
-// // label:first-child:nth-last-child(3) ~ label:nth-child(2) {
|
|
| 2125 |
-// // @extend %level2; |
|
| 2126 |
-// // } |
|
| 2127 |
- |
|
| 2128 |
-// // label:first-child:nth-last-child(3):nth-child(3), |
|
| 2129 |
-// // label:first-child:nth-last-child(3) ~ label:nth-child(3) {
|
|
| 2130 |
-// // @extend %level3; |
|
| 2131 |
-// // } |
|
| 2132 |
- |
|
| 2133 |
-// // // li가 4개일 때 |
|
| 2134 |
-// // label:first-child:nth-last-child(4), |
|
| 2135 |
-// // label:first-child:nth-last-child(4) ~ label {
|
|
| 2136 |
-// // @extend %level1; |
|
| 2137 |
-// // } |
|
| 2138 |
- |
|
| 2139 |
-// // label:first-child:nth-last-child(4):nth-child(2), |
|
| 2140 |
-// // label:first-child:nth-last-child(4) ~ label:nth-child(2) {
|
|
| 2141 |
-// // @extend %level2; |
|
| 2142 |
-// // } |
|
| 2143 |
- |
|
| 2144 |
-// // label:first-child:nth-last-child(4):nth-child(3), |
|
| 2145 |
-// // label:first-child:nth-last-child(4) ~ label:nth-child(3) {
|
|
| 2146 |
-// // @extend %level2; |
|
| 2147 |
-// // } |
|
| 2148 |
- |
|
| 2149 |
-// // label:first-child:nth-last-child(4):nth-child(4), |
|
| 2150 |
-// // label:first-child:nth-last-child(4) ~ label:nth-child(4) {
|
|
| 2151 |
-// // @extend %level3; |
|
| 2152 |
-// // } |
|
| 2153 |
- |
|
| 2154 |
-// // // li가 5개일 때 |
|
| 2155 |
-// // label:first-child:nth-last-child(5), |
|
| 2156 |
-// // label:first-child:nth-last-child(5) ~ label {
|
|
| 2157 |
-// // @extend %level1; |
|
| 2158 |
-// // } |
|
| 2159 |
- |
|
| 2160 |
-// // label:first-child:nth-last-child(5):nth-child(2), |
|
| 2161 |
-// // label:first-child:nth-last-child(5) ~ label:nth-child(2) {
|
|
| 2162 |
-// // @extend %level1; |
|
| 2163 |
-// // } |
|
| 2164 |
- |
|
| 2165 |
-// // label:first-child:nth-last-child(5):nth-child(3), |
|
| 2166 |
-// // label:first-child:nth-last-child(5) ~ label:nth-child(3) {
|
|
| 2167 |
-// // @extend %level2; |
|
| 2168 |
-// // } |
|
| 2169 |
- |
|
| 2170 |
-// // label:first-child:nth-last-child(5):nth-child(4), |
|
| 2171 |
-// // label:first-child:nth-last-child(5) ~ label:nth-child(4) {
|
|
| 2172 |
-// // @extend %level3; |
|
| 2173 |
-// // } |
|
| 2174 |
- |
|
| 2175 |
-// // label:first-child:nth-last-child(5):nth-child(5), |
|
| 2176 |
-// // label:first-child:nth-last-child(5) ~ label:nth-child(5) {
|
|
| 2177 |
-// // @extend %level3; |
|
| 2178 |
-// // } |
|
| 2179 |
- |
|
| 2180 |
-// // // li가 6개일 때 |
|
| 2181 |
-// // label:first-child:nth-last-child(6), |
|
| 2182 |
-// // label:first-child:nth-last-child(6) ~ label {
|
|
| 2183 |
-// // @extend %level1; |
|
| 2184 |
-// // } |
|
| 2185 |
- |
|
| 2186 |
-// // label:first-child:nth-last-child(6):nth-child(2), |
|
| 2187 |
-// // label:first-child:nth-last-child(6) ~ label:nth-child(2) {
|
|
| 2188 |
-// // @extend %level1; |
|
| 2189 |
-// // } |
|
| 2190 |
- |
|
| 2191 |
-// // label:first-child:nth-last-child(6):nth-child(3), |
|
| 2192 |
-// // label:first-child:nth-last-child(6) ~ label:nth-child(3) {
|
|
| 2193 |
-// // @extend %level2; |
|
| 2194 |
-// // } |
|
| 2195 |
- |
|
| 2196 |
-// // label:first-child:nth-last-child(6):nth-child(4), |
|
| 2197 |
-// // label:first-child:nth-last-child(6) ~ label:nth-child(4) {
|
|
| 2198 |
-// // @extend %level2; |
|
| 2199 |
-// // } |
|
| 2200 |
- |
|
| 2201 |
-// // label:first-child:nth-last-child(6):nth-child(5), |
|
| 2202 |
-// // label:first-child:nth-last-child(6) ~ label:nth-child(5) {
|
|
| 2203 |
-// // @extend %level3; |
|
| 2204 |
-// // } |
|
| 2205 |
- |
|
| 2206 |
-// // label:first-child:nth-last-child(6):nth-child(6), |
|
| 2207 |
-// // label:first-child:nth-last-child(6) ~ label:nth-child(6) {
|
|
| 2208 |
-// // @extend %level3; |
|
| 2209 |
-// // } |
|
| 2210 |
- |
|
| 2211 |
-// // // li가 7개일 때 |
|
| 2212 |
-// // label:first-child:nth-last-child(7), |
|
| 2213 |
-// // label:first-child:nth-last-child(7) ~ label {
|
|
| 2214 |
-// // @extend %level1; |
|
| 2215 |
-// // } |
|
| 2216 |
- |
|
| 2217 |
-// // label:first-child:nth-last-child(7):nth-child(2), |
|
| 2218 |
-// // label:first-child:nth-last-child(7) ~ label:nth-child(2) {
|
|
| 2219 |
-// // @extend %level1; |
|
| 2220 |
-// // } |
|
| 2221 |
- |
|
| 2222 |
-// // label:first-child:nth-last-child(7):nth-child(3), |
|
| 2223 |
-// // label:first-child:nth-last-child(7) ~ label:nth-child(3) {
|
|
| 2224 |
-// // @extend %level2; |
|
| 2225 |
-// // } |
|
| 2226 |
- |
|
| 2227 |
-// // label:first-child:nth-last-child(7):nth-child(4), |
|
| 2228 |
-// // label:first-child:nth-last-child(7) ~ label:nth-child(4) {
|
|
| 2229 |
-// // @extend %level2; |
|
| 2230 |
-// // } |
|
| 2231 |
- |
|
| 2232 |
-// // label:first-child:nth-last-child(7):nth-child(5), |
|
| 2233 |
-// // label:first-child:nth-last-child(7) ~ label:nth-child(5) {
|
|
| 2234 |
-// // @extend %level2; |
|
| 2235 |
-// // } |
|
| 2236 |
- |
|
| 2237 |
-// // label:first-child:nth-last-child(7):nth-child(6), |
|
| 2238 |
-// // label:first-child:nth-last-child(7) ~ label:nth-child(6) {
|
|
| 2239 |
-// // @extend %level3; |
|
| 2240 |
-// // } |
|
| 2241 |
- |
|
| 2242 |
-// // label:first-child:nth-last-child(7):nth-child(7), |
|
| 2243 |
-// // label:first-child:nth-last-child(7) ~ label:nth-child(7) {
|
|
| 2244 |
-// // @extend %level3; |
|
| 2245 |
-// // } |
|
| 2246 |
- |
|
| 2247 |
-// .a-des {
|
|
| 2248 |
-// position: absolute; |
|
| 2249 |
-// transform: translateY(calc(-100% - $spacing-xsm)); |
|
| 2250 |
-// display: flex; |
|
| 2251 |
-// flex-direction: column; |
|
| 2252 |
-// gap:$spacing-2xsm; |
|
| 2253 |
-// @include typo('body-xsm');
|
|
| 2254 |
-// max-width: 24rem; |
|
| 2255 |
-// &:after {
|
|
| 2256 |
-// content: " "; |
|
| 2257 |
-// display: block; |
|
| 2258 |
-// width: 0; |
|
| 2259 |
-// height: 0; |
|
| 2260 |
-// border-style: solid; |
|
| 2261 |
-// border-right: .6rem solid transparent; |
|
| 2262 |
-// border-left: .6rem solid transparent; |
|
| 2263 |
-// border-top: .6rem solid $color-stroke-default-secondary; |
|
| 2264 |
-// border-bottom: 0; |
|
| 2265 |
-// margin:0 auto; |
|
| 2266 |
-// } |
|
| 2267 |
-// } |
|
| 2268 |
-// } |
|
| 2269 |
-// } |
|
| 2270 |
- |
|
| 2271 |
-// //초대 |
|
| 2272 |
-// .invite-area {
|
|
| 2273 |
-// display: flex; |
|
| 2274 |
-// flex-direction: column; |
|
| 2275 |
-// gap:$spacing-xlg; |
|
| 2276 |
-// min-height: 100%; |
|
| 2277 |
-// justify-content: center; |
|
| 2278 |
-// padding-top:$spacing-xlg; |
|
| 2279 |
-// padding-bottom:$spacing-xlg; |
|
| 2280 |
-// > * {
|
|
| 2281 |
-// margin:0; |
|
| 2282 |
-// } |
|
| 2283 |
-// .img-area {
|
|
| 2284 |
-// img {
|
|
| 2285 |
-// display: block; |
|
| 2286 |
-// max-width: 100%; |
|
| 2287 |
-// margin:0 auto; |
|
| 2288 |
-// } |
|
| 2289 |
-// } |
|
| 2290 |
-// .txt-area {
|
|
| 2291 |
-// text-align: center; |
|
| 2292 |
-// display: flex; |
|
| 2293 |
-// flex-direction: column; |
|
| 2294 |
-// gap:$spacing-2xsm; |
|
| 2295 |
-// align-items: center; |
|
| 2296 |
-// justify-content: center; |
|
| 2297 |
-// > * {
|
|
| 2298 |
-// margin:0; |
|
| 2299 |
-// } |
|
| 2300 |
-// } |
|
| 2301 |
-// } |
|
| 2302 |
- |
|
| 2303 |
-// //ai 맞춤학습 |
|
| 2304 |
-// .ai-gate-list {
|
|
| 2305 |
-// display: grid; |
|
| 2306 |
-// grid-template-columns: repeat(auto-fit, minmax(0, 1fr)); |
|
| 2307 |
-// gap:$spacing-sm; |
|
| 2308 |
-// a {
|
|
| 2309 |
-// display: block; |
|
| 2310 |
-// width: 100%; |
|
| 2311 |
-// height: 100%; |
|
| 2312 |
-// border:$stroke-secondary; |
|
| 2313 |
-// padding:$spacing-xlg $spacing-lg; |
|
| 2314 |
-// border-radius: $radius-md; |
|
| 2315 |
-// &:hover {
|
|
| 2316 |
-// border-top-width: $size-stroke-md; |
|
| 2317 |
-// border-top-color: $color-stroke-brand-primary; |
|
| 2318 |
-// } |
|
| 2319 |
-// } |
|
| 2320 |
-// .txt-area {
|
|
| 2321 |
-// position: relative; |
|
| 2322 |
-// display: flex; |
|
| 2323 |
-// flex-direction: column; |
|
| 2324 |
-// gap:$spacing-2xsm; |
|
| 2325 |
-// h3 {
|
|
| 2326 |
-// @include typo('tit-lg');
|
|
| 2327 |
-// } |
|
| 2328 |
-// p {
|
|
| 2329 |
-// color: $color-font-default-secondary; |
|
| 2330 |
-// } |
|
| 2331 |
-// .btn {
|
|
| 2332 |
-// position: absolute; |
|
| 2333 |
-// right:0; |
|
| 2334 |
-// top:1.4rem; |
|
| 2335 |
-// } |
|
| 2336 |
-// } |
|
| 2337 |
-// .img-area {
|
|
| 2338 |
-// margin-top:$spacing-md; |
|
| 2339 |
-// border-radius: $radius-md; |
|
| 2340 |
-// overflow: hidden; |
|
| 2341 |
-// background: $color-background-brand-primary; |
|
| 2342 |
-// img {
|
|
| 2343 |
-// display: block; |
|
| 2344 |
-// max-width: 100%; |
|
| 2345 |
-// margin: 0 auto; |
|
| 2346 |
-// } |
|
| 2347 |
-// } |
|
| 2348 |
-// li:nth-child(2n) {
|
|
| 2349 |
-// a:hover {
|
|
| 2350 |
-// border-top-color: $color-stroke-brand-secondary; |
|
| 2351 |
-// } |
|
| 2352 |
-// .img-area{
|
|
| 2353 |
-// background: $color-background-brand-secondary; |
|
| 2354 |
-// } |
|
| 2355 |
-// } |
|
| 2356 |
-// } |
|
| 2357 |
- |
|
| 2358 |
-// .ai-result-tag {
|
|
| 2359 |
-// .txt-area {
|
|
| 2360 |
-// display: grid; |
|
| 2361 |
-// gap:2.4rem; |
|
| 2362 |
-// grid-template-columns: 12rem 1fr; |
|
| 2363 |
-// align-items: center; |
|
| 2364 |
-// } |
|
| 2365 |
-// strong {
|
|
| 2366 |
-// display: flex; |
|
| 2367 |
-// align-items: center; |
|
| 2368 |
-// justify-content: center; |
|
| 2369 |
-// width: 12rem; |
|
| 2370 |
-// aspect-ratio: 1; |
|
| 2371 |
-// @include typo('tit-lg');
|
|
| 2372 |
-// border-radius: $radius-md; |
|
| 2373 |
-// padding:$spacing-md; |
|
| 2374 |
-// text-align: center; |
|
| 2375 |
-// &.success {
|
|
| 2376 |
-// background-color: $color-background-success-primary; |
|
| 2377 |
-// color:$color-font-success-primary; |
|
| 2378 |
-// } |
|
| 2379 |
-// &.warning {
|
|
| 2380 |
-// background-color: $color-background-warning-primary; |
|
| 2381 |
-// color:$color-font-warning-primary; |
|
| 2382 |
-// } |
|
| 2383 |
-// } |
|
| 2384 |
-// } |
|
| 2385 |
-// .ai-result-info {
|
|
| 2386 |
-// padding:$spacing-xlg 32rem $spacing-xlg $spacing-xlg; |
|
| 2387 |
-// border-radius: $radius-md; |
|
| 2388 |
-// background: url($url-img + 'custom/sub/img_ai_result_info_bg.png') right no-repeat; |
|
| 2389 |
-// background-color:$color-background-brand-primary; |
|
| 2390 |
-// background-size: contain; |
|
| 2391 |
-// .txt-area {
|
|
| 2392 |
-// display:grid; |
|
| 2393 |
-// gap:$spacing-md; |
|
| 2394 |
-// } |
|
| 2395 |
-// .txt {
|
|
| 2396 |
-// @include typo('body-lg');
|
|
| 2397 |
-// color: $color-font-brand-primary; |
|
| 2398 |
-// } |
|
| 2399 |
-// .border-box {
|
|
| 2400 |
-// border: none; |
|
| 2401 |
-// } |
|
| 2402 |
-// .bullet {
|
|
| 2403 |
-// background-color: $color-background-default-primary |
|
| 2404 |
-// ; |
|
| 2405 |
-// } |
|
| 2406 |
-// } |
|
| 2407 |
-// .ai-result-tutor {
|
|
| 2408 |
-// position: relative; |
|
| 2409 |
-// display: grid; |
|
| 2410 |
-// grid-template-columns: 16rem 1fr; |
|
| 2411 |
-// gap:$spacing-sm; |
|
| 2412 |
-// align-items: center; |
|
| 2413 |
-// &::before {
|
|
| 2414 |
-// content: " "; |
|
| 2415 |
-// position: absolute; |
|
| 2416 |
-// top:-1.6rem; |
|
| 2417 |
-// right:4rem; |
|
| 2418 |
-// width: 10rem; |
|
| 2419 |
-// aspect-ratio: 100/92; |
|
| 2420 |
-// background: url($url-img + 'custom/sub/img_ai_info_obj.svg'); |
|
| 2421 |
-// background-size: contain; |
|
| 2422 |
-// z-index:1; |
|
| 2423 |
-// } |
|
| 2424 |
-// .img-area {
|
|
| 2425 |
-// max-width: 100%; |
|
| 2426 |
-// } |
|
| 2427 |
-// .txt-area {
|
|
| 2428 |
-// position: relative; |
|
| 2429 |
-// display: flex; |
|
| 2430 |
-// padding: $spacing-lg 16rem $spacing-lg $spacing-lg; |
|
| 2431 |
-// flex-direction: column; |
|
| 2432 |
-// align-items: flex-start; |
|
| 2433 |
-// gap: $spacing-xsm; |
|
| 2434 |
-// border-radius: $radius-lg; |
|
| 2435 |
-// background: $color-background-default-secondary; |
|
| 2436 |
-// min-height: 7.6rem; |
|
| 2437 |
-// &::before {
|
|
| 2438 |
-// content: " "; |
|
| 2439 |
-// position: absolute; |
|
| 2440 |
-// left:0; |
|
| 2441 |
-// top:50%; |
|
| 2442 |
-// transform: translate(-50%, -100%); |
|
| 2443 |
-// width: 0; |
|
| 2444 |
-// height: 0; |
|
| 2445 |
-// border-style: solid; |
|
| 2446 |
-// border-top: .6rem solid transparent; |
|
| 2447 |
-// border-bottom: .6rem solid transparent; |
|
| 2448 |
-// border-right: 1.6rem solid $color-background-default-secondary; |
|
| 2449 |
-// border-left: 0; |
|
| 2450 |
-// } |
|
| 2451 |
-// h3 {
|
|
| 2452 |
-// @include typo('tit-sm');
|
|
| 2453 |
-// color: $color-font-brand-primary; |
|
| 2454 |
-// } |
|
| 2455 |
-// } |
|
| 2456 |
-// } |
|
| 2457 |
-// .ai-result-sel {
|
|
| 2458 |
-// header {
|
|
| 2459 |
-// border-radius: $radius-md; |
|
| 2460 |
-// display: flex; |
|
| 2461 |
-// min-height: 16rem; |
|
| 2462 |
-// padding: $spacing-xlg $spacing-2xlg; |
|
| 2463 |
-// flex-direction: column; |
|
| 2464 |
-// justify-content: center; |
|
| 2465 |
-// align-items: center; |
|
| 2466 |
-// text-align: center; |
|
| 2467 |
-// gap: $spacing-xsm; |
|
| 2468 |
-// background: linear-gradient(90deg, $color-primary5 0%, $color-accent5 100%); |
|
| 2469 |
-// animation: ai-result-sel 6s ease infinite alternate-reverse; |
|
| 2470 |
-// @keyframes ai-result-sel {
|
|
| 2471 |
-// 0% {
|
|
| 2472 |
-// filter: hue-rotate(0deg); |
|
| 2473 |
-// } |
|
| 2474 |
-// 100% {
|
|
| 2475 |
-// filter: hue-rotate(360deg); |
|
| 2476 |
-// } |
|
| 2477 |
-// } |
|
| 2478 |
-// h3 {
|
|
| 2479 |
-// @include typo('tit-lg');
|
|
| 2480 |
-// } |
|
| 2481 |
-// p {
|
|
| 2482 |
-// color: $color-font-default-secondary; |
|
| 2483 |
-// } |
|
| 2484 |
-// } |
|
| 2485 |
-// .fnc {
|
|
| 2486 |
-// position: relative; |
|
| 2487 |
-// display: flex; |
|
| 2488 |
-// justify-content: center; |
|
| 2489 |
-// align-items: center; |
|
| 2490 |
-// gap:$spacing-xsm; |
|
| 2491 |
-// padding-top:8rem; |
|
| 2492 |
-// %bar-ai-result-sel {
|
|
| 2493 |
-// position: absolute; |
|
| 2494 |
-// left:50%; |
|
| 2495 |
-// display: block; |
|
| 2496 |
-// width: $size-stroke-sm; |
|
| 2497 |
-// height: 4rem; |
|
| 2498 |
-// background: $color-stroke-default-tertiary; |
|
| 2499 |
-// } |
|
| 2500 |
-// &::before {
|
|
| 2501 |
-// content: ""; |
|
| 2502 |
-// position: absolute; |
|
| 2503 |
-// left:50%; |
|
| 2504 |
-// display: block; |
|
| 2505 |
-// width: $size-stroke-sm; |
|
| 2506 |
-// height: 4rem; |
|
| 2507 |
-// background: $color-stroke-default-tertiary; |
|
| 2508 |
-// top:0; |
|
| 2509 |
-// transform: translateX(-50%); |
|
| 2510 |
-// @extend %bar-ai-result-sel; |
|
| 2511 |
-// } |
|
| 2512 |
-// button {
|
|
| 2513 |
-// position: relative; |
|
| 2514 |
-// display: flex; |
|
| 2515 |
-// width: 36rem; |
|
| 2516 |
-// height: 8rem; |
|
| 2517 |
-// padding:0 $spacing-lg; |
|
| 2518 |
-// justify-content: center; |
|
| 2519 |
-// align-items: center; |
|
| 2520 |
-// gap: $spacing-xsm; |
|
| 2521 |
-// border-radius: 4rem; |
|
| 2522 |
-// border: $size-stroke-sm solid $color-stroke-brand-primary; |
|
| 2523 |
-// background: linear-gradient(100deg, $color-primary50 32%, $color-primary40 68%); |
|
| 2524 |
-// color: $color-font-default-primary-inverse; |
|
| 2525 |
-// @include typo('label-lg', 'em');
|
|
| 2526 |
-// transition: all .3s; |
|
| 2527 |
-// &:hover {
|
|
| 2528 |
-// background: linear-gradient(103deg, $color-primary50 32%, $color-primary50 68%); |
|
| 2529 |
-// } |
|
| 2530 |
-// &.seconadry {
|
|
| 2531 |
-// border-color:$color-stroke-brand-secondary; |
|
| 2532 |
-// background: linear-gradient(103deg, $color-secondary50 32%, $color-secondary40 68%); |
|
| 2533 |
-// &:hover {
|
|
| 2534 |
-// background: linear-gradient(103deg, $color-secondary50 32%, $color-secondary50 68%); |
|
| 2535 |
-// } |
|
| 2536 |
-// } |
|
| 2537 |
-// &::before {
|
|
| 2538 |
-// content: ""; |
|
| 2539 |
-// top:-$size-stroke-sm; |
|
| 2540 |
-// transform: translate(-50%, -100%); |
|
| 2541 |
-// @extend %bar-ai-result-sel; |
|
| 2542 |
-// } |
|
| 2543 |
-// &::after {
|
|
| 2544 |
-// content: ""; |
|
| 2545 |
-// position: absolute; |
|
| 2546 |
-// top:calc(-4rem - $size-stroke-sm); |
|
| 2547 |
-// left:50%; |
|
| 2548 |
-// height: $size-stroke-sm; |
|
| 2549 |
-// width:calc(50% + ($spacing-xsm/2)); |
|
| 2550 |
-// background: $color-stroke-default-tertiary; |
|
| 2551 |
-// } |
|
| 2552 |
-// &:nth-of-type(2) {
|
|
| 2553 |
-// &::after {
|
|
| 2554 |
-// left: calc(-1 * $spacing-xsm / 2); |
|
| 2555 |
-// } |
|
| 2556 |
-// } |
|
| 2557 |
-// } |
|
| 2558 |
-// } |
|
| 2559 |
-// } |
|
| 2560 |
-// .book-list {
|
|
| 2561 |
-// display: grid; |
|
| 2562 |
-// grid-template-columns: repeat(5, 1fr); |
|
| 2563 |
-// gap: $spacing-xlg $spacing-lg; |
|
| 2564 |
- |
|
| 2565 |
-// li {
|
|
| 2566 |
-// display: flex; |
|
| 2567 |
-// flex-direction: column; |
|
| 2568 |
-// gap: $spacing-md; |
|
| 2569 |
-// position: relative; |
|
| 2570 |
- |
|
| 2571 |
-// .item-checkradio {
|
|
| 2572 |
-// position: absolute; |
|
| 2573 |
-// top: $spacing-md; |
|
| 2574 |
-// left: $spacing-md; |
|
| 2575 |
-// } |
|
| 2576 |
- |
|
| 2577 |
-// .img-area {
|
|
| 2578 |
-// figure {
|
|
| 2579 |
-// border-radius: $radius-sm; |
|
| 2580 |
-// border: 0.1rem solid var(--color-stroke-default-tertiary); |
|
| 2581 |
-// overflow: hidden; |
|
| 2582 |
-// width: 100%; |
|
| 2583 |
-// aspect-ratio: 7 / 9; |
|
| 2584 |
- |
|
| 2585 |
-// img {
|
|
| 2586 |
-// display: block; |
|
| 2587 |
-// object-fit: cover; |
|
| 2588 |
-// width: 100%; |
|
| 2589 |
-// height: 100%; |
|
| 2590 |
-// } |
|
| 2591 |
-// } |
|
| 2592 |
-// } |
|
| 2593 |
- |
|
| 2594 |
-// .txt-area {
|
|
| 2595 |
-// display: flex; |
|
| 2596 |
-// flex-direction: column; |
|
| 2597 |
-// align-items: center; |
|
| 2598 |
-// gap: $spacing-2xsm; |
|
| 2599 |
- |
|
| 2600 |
-// strong {
|
|
| 2601 |
-// @include typo('tit-sm');
|
|
| 2602 |
-// } |
|
| 2603 |
-// } |
|
| 2604 |
-// } |
|
| 2605 |
- |
|
| 2606 |
-// &.col2 {
|
|
| 2607 |
-// grid-template-columns: repeat(2, 1fr); |
|
| 2608 |
-// } |
|
| 2609 |
- |
|
| 2610 |
-// &.col3 {
|
|
| 2611 |
-// grid-template-columns: repeat(3, 1fr); |
|
| 2612 |
-// } |
|
| 2613 |
-// } |
|
| 2614 |
- |
|
| 2615 |
-// .bookmark-list {
|
|
| 2616 |
-// display: grid; |
|
| 2617 |
-// grid-template-columns: repeat(4, 1fr); |
|
| 2618 |
-// gap: $spacing-2xsm; |
|
| 2619 |
- |
|
| 2620 |
-// >li {
|
|
| 2621 |
-// position: relative; |
|
| 2622 |
-// min-height: 10rem; |
|
| 2623 |
-// figure {
|
|
| 2624 |
-// display: flex; |
|
| 2625 |
-// padding: $spacing-md $spacing-xsm; |
|
| 2626 |
-// flex-direction: column; |
|
| 2627 |
-// align-items: center; |
|
| 2628 |
-// gap: $spacing-xsm; |
|
| 2629 |
-// border-radius: $radius-md; |
|
| 2630 |
- |
|
| 2631 |
-// img {
|
|
| 2632 |
-// display: block; |
|
| 2633 |
-// width: 3.2rem; |
|
| 2634 |
-// height: 3.2rem; |
|
| 2635 |
-// } |
|
| 2636 |
- |
|
| 2637 |
-// figcaption {
|
|
| 2638 |
-// text-align: center; |
|
| 2639 |
-// color: $color-font-default-secondary; |
|
| 2640 |
-// word-break: keep-all; |
|
| 2641 |
-// @include ellipsis(2); |
|
| 2642 |
-// @include typo('label-sm');
|
|
| 2643 |
-// } |
|
| 2644 |
- |
|
| 2645 |
-// &:hover {
|
|
| 2646 |
-// background-color: $color-background-default-secondary; |
|
| 2647 |
-// } |
|
| 2648 |
-// } |
|
| 2649 |
- |
|
| 2650 |
-// .etc-fnc-area {
|
|
| 2651 |
-// position: absolute; |
|
| 2652 |
-// top: 0; |
|
| 2653 |
-// right: 0; |
|
| 2654 |
-// border-radius: 20rem; |
|
| 2655 |
- |
|
| 2656 |
-// &:hover {
|
|
| 2657 |
-// border: $stroke-secondary; |
|
| 2658 |
-// background-color: $color-background-default-primary; |
|
| 2659 |
-// } |
|
| 2660 |
-// } |
|
| 2661 |
-// } |
|
| 2662 |
-// } |
|
| 2663 |
- |
|
| 2664 |
-// .bookmark-txt-list {
|
|
| 2665 |
-// @include typo('body-sm');
|
|
| 2666 |
-// color: $color-font-default-secondary; |
|
| 2667 |
-// display: grid; |
|
| 2668 |
-// grid-template-columns: repeat(2, 1fr); |
|
| 2669 |
-// border-radius: $radius-sm; |
|
| 2670 |
-// border: $stroke-secondary; |
|
| 2671 |
-// overflow: hidden; |
|
| 2672 |
- |
|
| 2673 |
-// li {
|
|
| 2674 |
-// border-bottom: $stroke-secondary; |
|
| 2675 |
- |
|
| 2676 |
-// a {
|
|
| 2677 |
-// display: block; |
|
| 2678 |
-// text-align: center; |
|
| 2679 |
-// padding: $spacing-xsm; |
|
| 2680 |
- |
|
| 2681 |
-// &:hover {
|
|
| 2682 |
-// background-color: $color-background-default-secondary; |
|
| 2683 |
-// } |
|
| 2684 |
-// } |
|
| 2685 |
- |
|
| 2686 |
-// &:nth-child(odd) {
|
|
| 2687 |
-// border-right: $stroke-secondary; |
|
| 2688 |
-// } |
|
| 2689 |
- |
|
| 2690 |
-// &:last-child {
|
|
| 2691 |
-// border-right: none; |
|
| 2692 |
-// border-bottom: none; |
|
| 2693 |
-// } |
|
| 2694 |
- |
|
| 2695 |
-// &:last-child:nth-child(odd) {
|
|
| 2696 |
-// grid-column: 1 / -1; |
|
| 2697 |
-// } |
|
| 2698 |
-// } |
|
| 2699 |
-// } |
|
| 2700 |
-// .btn-item-add {
|
|
| 2701 |
-// display: flex; |
|
| 2702 |
-// flex-direction: column; |
|
| 2703 |
-// justify-content: center; |
|
| 2704 |
-// align-items: center; |
|
| 2705 |
-// gap: $spacing-sm; |
|
| 2706 |
-// border: $size-stroke-xsm dashed $color-stroke-default-tertiary; |
|
| 2707 |
-// border-radius: $radius-md; |
|
| 2708 |
-// text-align: center; |
|
| 2709 |
-// color: $color-font-default-tertiary; |
|
| 2710 |
-// width: 100%; |
|
| 2711 |
-// height: 100%; |
|
| 2712 |
-// } |
|
| 2713 |
- |
|
| 2714 |
-// @include responsive(tabletSm) {
|
|
| 2715 |
-// .row {
|
|
| 2716 |
-// grid-template-columns: 1fr; |
|
| 2717 |
-// gap: $spacing-section-sm 0; |
|
| 2718 |
-// } |
|
| 2719 |
-// } |
|
| 2720 |
- |
|
| 2721 |
-// @include responsive(mobile) {
|
|
| 2722 |
-// .reference-list {
|
|
| 2723 |
-// grid-template-columns: initial; |
|
| 2724 |
- |
|
| 2725 |
-// .img-area {
|
|
| 2726 |
-// max-width: 40%; |
|
| 2727 |
-// border-radius: $radius-xsm; |
|
| 2728 |
-// } |
|
| 2729 |
-// } |
|
| 2730 |
- |
|
| 2731 |
-// .mark-area {
|
|
| 2732 |
-// flex-direction: column; |
|
| 2733 |
- |
|
| 2734 |
-// .sticky-cont {
|
|
| 2735 |
-// width: 100%; |
|
| 2736 |
-// } |
|
| 2737 |
- |
|
| 2738 |
-// .sticky {
|
|
| 2739 |
-// height: 48rem; |
|
| 2740 |
-// } |
|
| 2741 |
-// } |
|
| 2742 |
- |
|
| 2743 |
-// .user-info-area {
|
|
| 2744 |
-// .wrap {
|
|
| 2745 |
-// flex-direction: column; |
|
| 2746 |
-// } |
|
| 2747 |
-// } |
|
| 2748 |
- |
|
| 2749 |
-// .emotion-check-area {
|
|
| 2750 |
-// .emotion-check {
|
|
| 2751 |
-// padding: $spacing-md; |
|
| 2752 |
- |
|
| 2753 |
-// ul {
|
|
| 2754 |
-// grid-template-columns: repeat(2, 1fr); |
|
| 2755 |
-// gap: $spacing-2xsm; |
|
| 2756 |
- |
|
| 2757 |
-// label {
|
|
| 2758 |
-// padding: $spacing-sm $spacing-xsm; |
|
| 2759 |
-// border-radius: $radius-sm; |
|
| 2760 |
- |
|
| 2761 |
-// img {
|
|
| 2762 |
-// width: 4.8rem; |
|
| 2763 |
-// } |
|
| 2764 |
-// } |
|
| 2765 |
- |
|
| 2766 |
-// .emotion-none {
|
|
| 2767 |
-// label img {
|
|
| 2768 |
-// width: 2.4rem; |
|
| 2769 |
-// } |
|
| 2770 |
-// } |
|
| 2771 |
-// } |
|
| 2772 |
-// } |
|
| 2773 |
-// } |
|
| 2774 |
- |
|
| 2775 |
-// .ai-gate-list {
|
|
| 2776 |
-// grid-template-columns: initial; |
|
| 2777 |
- |
|
| 2778 |
-// .btn.ico-arrow-right {
|
|
| 2779 |
-// display: none; |
|
| 2780 |
-// } |
|
| 2781 |
-// } |
|
| 2782 |
- |
|
| 2783 |
-// .ai-result-tag {
|
|
| 2784 |
-// .txt-area {
|
|
| 2785 |
-// grid-template-columns: initial; |
|
| 2786 |
-// } |
|
| 2787 |
- |
|
| 2788 |
-// strong {
|
|
| 2789 |
-// width: 100%; |
|
| 2790 |
-// aspect-ratio: initial; |
|
| 2791 |
-// } |
|
| 2792 |
-// } |
|
| 2793 |
- |
|
| 2794 |
-// .ai-result-info {
|
|
| 2795 |
-// padding: $spacing-lg; |
|
| 2796 |
-// background-image: none; |
|
| 2797 |
-// } |
|
| 2798 |
- |
|
| 2799 |
-// .ai-result-tutor {
|
|
| 2800 |
-// grid-template-columns: initial; |
|
| 2801 |
- |
|
| 2802 |
-// &::before {
|
|
| 2803 |
-// display: none; |
|
| 2804 |
-// } |
|
| 2805 |
- |
|
| 2806 |
-// .txt-area {
|
|
| 2807 |
-// padding: $spacing-md; |
|
| 2808 |
-// } |
|
| 2809 |
-// } |
|
| 2810 |
- |
|
| 2811 |
-// .ai-result-sel {
|
|
| 2812 |
-// .fnc {
|
|
| 2813 |
-// padding-top: $spacing-lg; |
|
| 2814 |
-// gap: $spacing-2xsm; |
|
| 2815 |
-// flex-direction: column; |
|
| 2816 |
- |
|
| 2817 |
-// button {
|
|
| 2818 |
-// width: 100%; |
|
| 2819 |
-// height: 6.4rem; |
|
| 2820 |
- |
|
| 2821 |
-// &::after, |
|
| 2822 |
-// &::before {
|
|
| 2823 |
-// content: none; |
|
| 2824 |
-// } |
|
| 2825 |
-// } |
|
| 2826 |
-// } |
|
| 2827 |
-// } |
|
| 2828 |
- |
|
| 2829 |
-// .border-list>li {
|
|
| 2830 |
-// padding: $spacing-sm $spacing-md; |
|
| 2831 |
-// } |
|
| 2832 |
- |
|
| 2833 |
-// .calendar-tbl .emotion img {
|
|
| 2834 |
-// width: 3.2rem; |
|
| 2835 |
-// } |
|
| 2836 |
-// }(파일 끝에 줄바꿈 문자 없음) |
--- resources/front/site/SITE_00000/css/custom/page/_sub.scss
+++ resources/front/site/SITE_00000/css/custom/page/_sub.scss
... | ... | @@ -1624,6 +1624,7 @@ |
| 1624 | 1624 |
border: 1px solid $color-stroke-default-quaternary; |
| 1625 | 1625 |
padding: $spacing-sm; |
| 1626 | 1626 |
border-radius: $radius-sm; |
| 1627 |
+ min-width: 0; |
|
| 1627 | 1628 |
&:hover {
|
| 1628 | 1629 |
font-weight: $size-font-weight-xlg; |
| 1629 | 1630 |
color: $color-font-default-secondary |
--- resources/front/site/SITE_00000/css/style.css
+++ resources/front/site/SITE_00000/css/style.css
... | ... | @@ -10045,6 +10045,74 @@ |
| 10045 | 10045 |
filter: grayscale(1); |
| 10046 | 10046 |
} |
| 10047 | 10047 |
|
| 10048 |
+.box-list {
|
|
| 10049 |
+ display: grid; |
|
| 10050 |
+ grid-template-columns: repeat(3, 1fr); |
|
| 10051 |
+ gap: 4rem; |
|
| 10052 |
+} |
|
| 10053 |
+.box-list > li:has(.lnk-full, .audio-box > button), |
|
| 10054 |
+.box-list > li > a:not(.lnk-full) {
|
|
| 10055 |
+ display: -webkit-box; |
|
| 10056 |
+ display: -ms-flexbox; |
|
| 10057 |
+ display: flex; |
|
| 10058 |
+ padding: 2.4rem; |
|
| 10059 |
+ -webkit-box-orient: vertical; |
|
| 10060 |
+ -webkit-box-direction: normal; |
|
| 10061 |
+ -ms-flex-direction: column; |
|
| 10062 |
+ flex-direction: column; |
|
| 10063 |
+ gap: 1.6rem; |
|
| 10064 |
+ height: 100%; |
|
| 10065 |
+ border-radius: 3.2rem; |
|
| 10066 |
+ -webkit-box-shadow: 0rem 0.4rem 1.6rem rgba(17, 17, 17, 0.1); |
|
| 10067 |
+ box-shadow: 0rem 0.4rem 1.6rem rgba(17, 17, 17, 0.1); |
|
| 10068 |
+ -webkit-transform: scale(1); |
|
| 10069 |
+ transform: scale(1); |
|
| 10070 |
+ border: 0.1rem solid transparent; |
|
| 10071 |
+ -webkit-transition: -webkit-transform 0.2s; |
|
| 10072 |
+ transition: -webkit-transform 0.2s; |
|
| 10073 |
+ transition: transform 0.2s; |
|
| 10074 |
+ transition: transform 0.2s, -webkit-transform 0.2s; |
|
| 10075 |
+} |
|
| 10076 |
+.box-list > li:has(.lnk-full, .audio-box > button):hover, |
|
| 10077 |
+.box-list > li > a:not(.lnk-full):hover {
|
|
| 10078 |
+ -webkit-box-shadow: 0rem 0.4rem 1.6rem rgba(17, 17, 17, 0.1); |
|
| 10079 |
+ box-shadow: 0rem 0.4rem 1.6rem rgba(17, 17, 17, 0.1); |
|
| 10080 |
+ -webkit-transform: scale(1.05); |
|
| 10081 |
+ transform: scale(1.05); |
|
| 10082 |
+ border: 0.1rem solid var(--color-primary50); |
|
| 10083 |
+} |
|
| 10084 |
+.box-list > li:has(.lnk-full, .audio-box > button):hover h3, |
|
| 10085 |
+.box-list > li > a:not(.lnk-full):hover h3 {
|
|
| 10086 |
+ color: var(--color-primary50); |
|
| 10087 |
+} |
|
| 10088 |
+.box-list h3 {
|
|
| 10089 |
+ font-size: var(--font-tit-md); |
|
| 10090 |
+ font-weight: var(--size-font-weight-xlg); |
|
| 10091 |
+ line-height: var(--size-font-lineheight-sm); |
|
| 10092 |
+ display: -webkit-box; |
|
| 10093 |
+ overflow: hidden; |
|
| 10094 |
+ line-height: 1.4; |
|
| 10095 |
+ width: 100%; |
|
| 10096 |
+ text-overflow: ellipsis; |
|
| 10097 |
+ -webkit-box-orient: vertical; |
|
| 10098 |
+ -webkit-line-clamp: 2; |
|
| 10099 |
+} |
|
| 10100 |
+.box-list .txt-area {
|
|
| 10101 |
+ display: -webkit-box; |
|
| 10102 |
+ overflow: hidden; |
|
| 10103 |
+ line-height: 1.4; |
|
| 10104 |
+ width: 100%; |
|
| 10105 |
+ text-overflow: ellipsis; |
|
| 10106 |
+ -webkit-box-orient: vertical; |
|
| 10107 |
+ -webkit-line-clamp: 3; |
|
| 10108 |
+ max-height: 4.2em; |
|
| 10109 |
+} |
|
| 10110 |
+ |
|
| 10111 |
+@media (max-width: 1023px) {
|
|
| 10112 |
+ .box-list {
|
|
| 10113 |
+ grid-template-columns: repeat(2, 1fr); |
|
| 10114 |
+ } |
|
| 10115 |
+} |
|
| 10048 | 10116 |
@media (max-width: 767px) {
|
| 10049 | 10117 |
.checkradio-custom-row-area:has(.item-type-checkradio) {
|
| 10050 | 10118 |
display: none; |
... | ... | @@ -10278,6 +10346,15 @@ |
| 10278 | 10346 |
-webkit-box-pack: start; |
| 10279 | 10347 |
-ms-flex-pack: start; |
| 10280 | 10348 |
justify-content: flex-start; |
| 10349 |
+ } |
|
| 10350 |
+ .box-list {
|
|
| 10351 |
+ grid-template-columns: initial; |
|
| 10352 |
+ gap: 0.8rem; |
|
| 10353 |
+ } |
|
| 10354 |
+ .box-list a {
|
|
| 10355 |
+ padding: 2.4rem 1.6rem; |
|
| 10356 |
+ gap: 0.8rem; |
|
| 10357 |
+ border-radius: 2.4rem; |
|
| 10281 | 10358 |
} |
| 10282 | 10359 |
} |
| 10283 | 10360 |
:root {
|
... | ... | @@ -27309,6 +27386,7 @@ |
| 27309 | 27386 |
border: 1px solid var(--color-stroke-default-quaternary); |
| 27310 | 27387 |
padding: 1.2rem; |
| 27311 | 27388 |
border-radius: 1.2rem; |
| 27389 |
+ min-width: 0; |
|
| 27312 | 27390 |
} |
| 27313 | 27391 |
.reference-list li:hover {
|
| 27314 | 27392 |
font-weight: var(--size-font-weight-xlg); |
--- resources/front/site/SITE_00000/css/style.css.map
+++ resources/front/site/SITE_00000/css/style.css.map
| This diff is too big to display. |
--- resources/front/site/SITE_00000/css/style.min.css
+++ resources/front/site/SITE_00000/css/style.min.css
| This diff is too big to display. |
--- resources/front/site/SITE_00000/css/style.min.css.map
+++ resources/front/site/SITE_00000/css/style.min.css.map
| This diff is too big to display. |
Add a comment
Delete comment
Once you delete this comment, you won't be able to recover it. Are you sure you want to delete this comment?