Update app.css
Browse files
app.css
CHANGED
@@ -10,6 +10,7 @@
|
|
10 |
width: 100%;
|
11 |
padding: 5px 16px;
|
12 |
background-color: #f5f5f5;
|
|
|
13 |
}
|
14 |
|
15 |
.header_btn {
|
@@ -74,28 +75,31 @@ footer, .footer, div[class*="footer"], #footer {
|
|
74 |
/* Setting λ²νΌ μ€νμΌλ§ */
|
75 |
.setting-buttons {
|
76 |
position: absolute;
|
77 |
-
top:
|
78 |
-
right:
|
79 |
z-index: 1000;
|
80 |
display: flex;
|
81 |
gap: 8px;
|
|
|
|
|
82 |
}
|
83 |
|
84 |
/* Examples μΉμ
μ€νμΌλ§ */
|
85 |
.examples-section {
|
86 |
-
margin-top: 24px;
|
87 |
-
padding: 0 24px;
|
88 |
width: 100%;
|
|
|
|
|
89 |
}
|
90 |
|
91 |
.examples-section .ant-row {
|
92 |
display: flex;
|
93 |
flex-wrap: wrap;
|
94 |
-
|
95 |
}
|
96 |
|
97 |
.examples-section .ant-col {
|
98 |
-
|
|
|
99 |
}
|
100 |
|
101 |
.examples-section .ant-card {
|
@@ -111,7 +115,7 @@ footer, .footer, div[class*="footer"], #footer {
|
|
111 |
.right_panel {
|
112 |
position: relative;
|
113 |
min-height: 600px;
|
114 |
-
|
115 |
}
|
116 |
|
117 |
.html_content {
|
@@ -121,19 +125,15 @@ footer, .footer, div[class*="footer"], #footer {
|
|
121 |
/* λ°μν λ μ΄μμ */
|
122 |
@media (max-width: 768px) {
|
123 |
.examples-section .ant-col {
|
124 |
-
|
|
|
125 |
}
|
126 |
}
|
127 |
|
128 |
@media (min-width: 769px) and (max-width: 1200px) {
|
129 |
.examples-section .ant-col {
|
130 |
-
|
131 |
-
|
132 |
-
}
|
133 |
-
|
134 |
-
@media (min-width: 1201px) {
|
135 |
-
.examples-section .ant-col {
|
136 |
-
width: 33.333333%;
|
137 |
}
|
138 |
}
|
139 |
|
|
|
10 |
width: 100%;
|
11 |
padding: 5px 16px;
|
12 |
background-color: #f5f5f5;
|
13 |
+
margin-top: 50px; /* Setting λ²νΌμ μν μ¬λ°± μΆκ° */
|
14 |
}
|
15 |
|
16 |
.header_btn {
|
|
|
75 |
/* Setting λ²νΌ μ€νμΌλ§ */
|
76 |
.setting-buttons {
|
77 |
position: absolute;
|
78 |
+
top: 0;
|
79 |
+
right: 0;
|
80 |
z-index: 1000;
|
81 |
display: flex;
|
82 |
gap: 8px;
|
83 |
+
padding: 10px;
|
84 |
+
background-color: white;
|
85 |
}
|
86 |
|
87 |
/* Examples μΉμ
μ€νμΌλ§ */
|
88 |
.examples-section {
|
|
|
|
|
89 |
width: 100%;
|
90 |
+
padding: 24px;
|
91 |
+
margin-top: 24px;
|
92 |
}
|
93 |
|
94 |
.examples-section .ant-row {
|
95 |
display: flex;
|
96 |
flex-wrap: wrap;
|
97 |
+
gap: 16px;
|
98 |
}
|
99 |
|
100 |
.examples-section .ant-col {
|
101 |
+
flex: 0 0 calc(33.333% - 16px);
|
102 |
+
max-width: calc(33.333% - 16px);
|
103 |
}
|
104 |
|
105 |
.examples-section .ant-card {
|
|
|
115 |
.right_panel {
|
116 |
position: relative;
|
117 |
min-height: 600px;
|
118 |
+
padding-top: 50px; /* Setting λ²νΌμ μν μ¬λ°± */
|
119 |
}
|
120 |
|
121 |
.html_content {
|
|
|
125 |
/* λ°μν λ μ΄μμ */
|
126 |
@media (max-width: 768px) {
|
127 |
.examples-section .ant-col {
|
128 |
+
flex: 0 0 100%;
|
129 |
+
max-width: 100%;
|
130 |
}
|
131 |
}
|
132 |
|
133 |
@media (min-width: 769px) and (max-width: 1200px) {
|
134 |
.examples-section .ant-col {
|
135 |
+
flex: 0 0 calc(50% - 16px);
|
136 |
+
max-width: calc(50% - 16px);
|
|
|
|
|
|
|
|
|
|
|
137 |
}
|
138 |
}
|
139 |
|