Update app.css
Browse files
app.css
CHANGED
@@ -10,7 +10,7 @@
|
|
10 |
width: 100%;
|
11 |
padding: 5px 16px;
|
12 |
background-color: #f5f5f5;
|
13 |
-
margin-top: 50px;
|
14 |
}
|
15 |
|
16 |
.header_btn {
|
@@ -84,58 +84,65 @@ footer, .footer, div[class*="footer"], #footer {
|
|
84 |
background-color: white;
|
85 |
}
|
86 |
|
87 |
-
/*
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
88 |
.examples-section {
|
89 |
-
|
90 |
-
padding:
|
91 |
-
|
|
|
|
|
|
|
92 |
}
|
93 |
|
94 |
.examples-section .ant-row {
|
95 |
-
display:
|
96 |
-
|
97 |
-
|
|
|
98 |
}
|
99 |
|
100 |
.examples-section .ant-col {
|
101 |
-
|
102 |
-
|
103 |
-
flex: 0 0 33.333333%;
|
104 |
}
|
105 |
|
106 |
.examples-section .ant-card {
|
107 |
-
|
108 |
-
|
109 |
-
|
|
|
|
|
110 |
}
|
111 |
|
112 |
-
.examples-section .ant-card
|
113 |
-
|
114 |
}
|
115 |
|
116 |
-
|
117 |
-
|
118 |
-
position: relative;
|
119 |
-
min-height: 600px;
|
120 |
-
padding-top: 50px; /* Setting ๋ฒํผ์ ์ํ ์ฌ๋ฐฑ */
|
121 |
-
}
|
122 |
-
|
123 |
-
.html_content {
|
124 |
-
height: 100%;
|
125 |
}
|
126 |
|
127 |
/* ๋ฐ์ํ ๋ ์ด์์ */
|
128 |
@media (max-width: 768px) {
|
129 |
-
.examples-section .ant-
|
130 |
-
|
131 |
-
flex: 0 0 100%;
|
132 |
}
|
133 |
}
|
134 |
|
135 |
@media (min-width: 769px) and (max-width: 1200px) {
|
136 |
-
.examples-section .ant-
|
137 |
-
|
138 |
-
flex: 0 0 50%;
|
139 |
}
|
140 |
}
|
141 |
|
|
|
10 |
width: 100%;
|
11 |
padding: 5px 16px;
|
12 |
background-color: #f5f5f5;
|
13 |
+
margin-top: 50px;
|
14 |
}
|
15 |
|
16 |
.header_btn {
|
|
|
84 |
background-color: white;
|
85 |
}
|
86 |
|
87 |
+
/* ์ฐ์ธก ํจ๋ ์คํ์ผ๋ง */
|
88 |
+
.right_panel {
|
89 |
+
position: relative;
|
90 |
+
min-height: 600px;
|
91 |
+
padding-top: 50px;
|
92 |
+
}
|
93 |
+
|
94 |
+
.html_content {
|
95 |
+
height: 100%;
|
96 |
+
}
|
97 |
+
|
98 |
+
/* Examples ์น์
์์ ์์ */
|
99 |
.examples-section {
|
100 |
+
margin-top: 2rem;
|
101 |
+
padding: 0 1rem;
|
102 |
+
}
|
103 |
+
|
104 |
+
.examples-section .ant-divider {
|
105 |
+
margin: 1rem 0;
|
106 |
}
|
107 |
|
108 |
.examples-section .ant-row {
|
109 |
+
display: grid !important;
|
110 |
+
grid-template-columns: repeat(3, 1fr) !important;
|
111 |
+
gap: 1rem !important;
|
112 |
+
padding: 0 1rem;
|
113 |
}
|
114 |
|
115 |
.examples-section .ant-col {
|
116 |
+
width: 100% !important;
|
117 |
+
padding: 0 !important;
|
|
|
118 |
}
|
119 |
|
120 |
.examples-section .ant-card {
|
121 |
+
width: 100%;
|
122 |
+
margin-bottom: 1rem;
|
123 |
+
border: 1px solid #e8e8e8;
|
124 |
+
border-radius: 4px;
|
125 |
+
transition: all 0.3s;
|
126 |
}
|
127 |
|
128 |
+
.examples-section .ant-card:hover {
|
129 |
+
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
|
130 |
}
|
131 |
|
132 |
+
.examples-section .ant-card-meta {
|
133 |
+
padding: 1rem;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
134 |
}
|
135 |
|
136 |
/* ๋ฐ์ํ ๋ ์ด์์ */
|
137 |
@media (max-width: 768px) {
|
138 |
+
.examples-section .ant-row {
|
139 |
+
grid-template-columns: 1fr !important;
|
|
|
140 |
}
|
141 |
}
|
142 |
|
143 |
@media (min-width: 769px) and (max-width: 1200px) {
|
144 |
+
.examples-section .ant-row {
|
145 |
+
grid-template-columns: repeat(2, 1fr) !important;
|
|
|
146 |
}
|
147 |
}
|
148 |
|