seawolf2357 commited on
Commit
0f7f02e
ยท
verified ยท
1 Parent(s): 7bfd8bd

Update app.css

Browse files
Files changed (1) hide show
  1. app.css +38 -31
app.css CHANGED
@@ -10,7 +10,7 @@
10
  width: 100%;
11
  padding: 5px 16px;
12
  background-color: #f5f5f5;
13
- margin-top: 50px; /* Setting ๋ฒ„ํŠผ์„ ์œ„ํ•œ ์—ฌ๋ฐฑ ์ถ”๊ฐ€ */
14
  }
15
 
16
  .header_btn {
@@ -84,58 +84,65 @@ footer, .footer, div[class*="footer"], #footer {
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
- margin: -8px; /* ๋„ค๊ฑฐํ‹ฐ๋ธŒ ๋งˆ์ง„ ์ถ”๊ฐ€ */
 
98
  }
99
 
100
  .examples-section .ant-col {
101
- padding: 8px;
102
- width: 33.333333%;
103
- flex: 0 0 33.333333%;
104
  }
105
 
106
  .examples-section .ant-card {
107
- height: 100%;
108
- cursor: pointer;
109
- margin: 0; /* ๊ธฐ์กด ๋งˆ์ง„ ์ œ๊ฑฐ */
 
 
110
  }
111
 
112
- .examples-section .ant-card-meta {
113
- padding: 12px;
114
  }
115
 
116
- /* ์šฐ์ธก ํŒจ๋„ ์Šคํƒ€์ผ๋ง */
117
- .right_panel {
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-col {
130
- width: 100%;
131
- flex: 0 0 100%;
132
  }
133
  }
134
 
135
  @media (min-width: 769px) and (max-width: 1200px) {
136
- .examples-section .ant-col {
137
- width: 50%;
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