Update app.css
Browse files
app.css
CHANGED
|
@@ -5,8 +5,6 @@
|
|
| 5 |
align-items: center;
|
| 6 |
}
|
| 7 |
|
| 8 |
-
|
| 9 |
-
|
| 10 |
.render_header {
|
| 11 |
height: 30px;
|
| 12 |
width: 100%;
|
|
@@ -29,6 +27,7 @@
|
|
| 29 |
.render_header > .header_btn:nth-child(2) {
|
| 30 |
background-color: #faad14;
|
| 31 |
}
|
|
|
|
| 32 |
.render_header > .header_btn:nth-child(3) {
|
| 33 |
background-color: #52c41a;
|
| 34 |
}
|
|
@@ -46,8 +45,6 @@
|
|
| 46 |
border: none;
|
| 47 |
}
|
| 48 |
|
| 49 |
-
|
| 50 |
-
|
| 51 |
/* Footer 숨기기 */
|
| 52 |
footer, .footer, div[class*="footer"], #footer {
|
| 53 |
display: none !important;
|
|
@@ -75,25 +72,70 @@ footer, .footer, div[class*="footer"], #footer {
|
|
| 75 |
min-height: 300px !important;
|
| 76 |
}
|
| 77 |
|
| 78 |
-
|
| 79 |
-
|
| 80 |
-
.examples-section {
|
| 81 |
-
margin-top: 24px;
|
| 82 |
-
padding: 0 24px;
|
| 83 |
-
}
|
| 84 |
-
|
| 85 |
-
.setting-buttons {
|
| 86 |
position: absolute;
|
| 87 |
top: 10px;
|
| 88 |
right: 10px;
|
| 89 |
z-index: 1000;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 90 |
}
|
| 91 |
|
| 92 |
.right_panel {
|
| 93 |
-
height: calc(100vh - 300px); /* examples 섹션을 위한 공간 확보 */
|
| 94 |
position: relative;
|
|
|
|
| 95 |
}
|
| 96 |
|
| 97 |
.html_content {
|
| 98 |
height: 100%;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 99 |
}
|
|
|
|
| 5 |
align-items: center;
|
| 6 |
}
|
| 7 |
|
|
|
|
|
|
|
| 8 |
.render_header {
|
| 9 |
height: 30px;
|
| 10 |
width: 100%;
|
|
|
|
| 27 |
.render_header > .header_btn:nth-child(2) {
|
| 28 |
background-color: #faad14;
|
| 29 |
}
|
| 30 |
+
|
| 31 |
.render_header > .header_btn:nth-child(3) {
|
| 32 |
background-color: #52c41a;
|
| 33 |
}
|
|
|
|
| 45 |
border: none;
|
| 46 |
}
|
| 47 |
|
|
|
|
|
|
|
| 48 |
/* Footer 숨기기 */
|
| 49 |
footer, .footer, div[class*="footer"], #footer {
|
| 50 |
display: none !important;
|
|
|
|
| 72 |
min-height: 300px !important;
|
| 73 |
}
|
| 74 |
|
| 75 |
+
/* Setting 버튼 컨테이너 */
|
| 76 |
+
.setting-buttons-container {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 77 |
position: absolute;
|
| 78 |
top: 10px;
|
| 79 |
right: 10px;
|
| 80 |
z-index: 1000;
|
| 81 |
+
padding: 10px;
|
| 82 |
+
}
|
| 83 |
+
|
| 84 |
+
/* Examples 섹션 */
|
| 85 |
+
.examples-container {
|
| 86 |
+
margin-top: 24px;
|
| 87 |
+
padding: 0 24px;
|
| 88 |
+
width: 100%;
|
| 89 |
}
|
| 90 |
|
| 91 |
.right_panel {
|
|
|
|
| 92 |
position: relative;
|
| 93 |
+
min-height: 600px;
|
| 94 |
}
|
| 95 |
|
| 96 |
.html_content {
|
| 97 |
height: 100%;
|
| 98 |
+
}
|
| 99 |
+
|
| 100 |
+
/* 반응형 그리드를 위한 미디어 쿼리 */
|
| 101 |
+
@media (max-width: 768px) {
|
| 102 |
+
.examples-container .ant-col {
|
| 103 |
+
flex: 0 0 100%;
|
| 104 |
+
max-width: 100%;
|
| 105 |
+
}
|
| 106 |
+
}
|
| 107 |
+
|
| 108 |
+
@media (min-width: 769px) and (max-width: 1200px) {
|
| 109 |
+
.examples-container .ant-col {
|
| 110 |
+
flex: 0 0 50%;
|
| 111 |
+
max-width: 50%;
|
| 112 |
+
}
|
| 113 |
+
}
|
| 114 |
+
|
| 115 |
+
@media (min-width: 1201px) {
|
| 116 |
+
.examples-container .ant-col {
|
| 117 |
+
flex: 0 0 33.333333%;
|
| 118 |
+
max-width: 33.333333%;
|
| 119 |
+
}
|
| 120 |
+
}
|
| 121 |
+
|
| 122 |
+
/* Examples 카드 스타일링 */
|
| 123 |
+
.examples-container .ant-card {
|
| 124 |
+
margin-bottom: 16px;
|
| 125 |
+
height: 100%;
|
| 126 |
+
}
|
| 127 |
+
|
| 128 |
+
.examples-container .ant-card-meta {
|
| 129 |
+
padding: 12px;
|
| 130 |
+
}
|
| 131 |
+
|
| 132 |
+
/* Setting 버튼 스타일링 */
|
| 133 |
+
.setting-buttons-container .ant-btn {
|
| 134 |
+
margin-left: 8px;
|
| 135 |
+
}
|
| 136 |
+
|
| 137 |
+
/* 전체 레이아웃 조정 */
|
| 138 |
+
.ant-row {
|
| 139 |
+
margin-right: 0 !important;
|
| 140 |
+
margin-left: 0 !important;
|
| 141 |
}
|