Update app.py
Browse files
app.py
CHANGED
@@ -484,9 +484,9 @@ button:hover {
|
|
484 |
|
485 |
/* ํฐ ์ถ๋ ฅ ๋ฐ์ค ์คํ์ผ */
|
486 |
.large-output-box {
|
487 |
-
height:
|
488 |
font-size: 16px !important;
|
489 |
-
padding:
|
490 |
background: linear-gradient(135deg, #f6f9fc, #eef2f7);
|
491 |
border-radius: 15px;
|
492 |
box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
|
@@ -497,6 +497,16 @@ button:hover {
|
|
497 |
transition: all 0.3s ease;
|
498 |
}
|
499 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
500 |
.large-output-box:hover {
|
501 |
transform: translateY(-2px);
|
502 |
box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
|
|
|
484 |
|
485 |
/* ํฐ ์ถ๋ ฅ ๋ฐ์ค ์คํ์ผ */
|
486 |
.large-output-box {
|
487 |
+
height: 800px !important; /* 500px์์ 800px๋ก ์ฆ๊ฐ */
|
488 |
font-size: 16px !important;
|
489 |
+
padding: 30px !important; /* ํจ๋ฉ๋ ์ฝ๊ฐ ์ฆ๊ฐ */
|
490 |
background: linear-gradient(135deg, #f6f9fc, #eef2f7);
|
491 |
border-radius: 15px;
|
492 |
box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
|
|
|
497 |
transition: all 0.3s ease;
|
498 |
}
|
499 |
|
500 |
+
/* ํน๋ณํ ์ฑ๊ฒฉ ๋ถ์๊ณผ ์ ๋
์ด์ธ ํญ์ ์ถ๋ ฅ ๋ฐ์ค์ ๋ํ ์ถ๊ฐ ์คํ์ผ */
|
501 |
+
.character-output-box, .newyear-output-box {
|
502 |
+
height: 900px !important; /* ๋ ํฐ ๋์ด ์ค์ */
|
503 |
+
margin: 30px 0;
|
504 |
+
padding: 35px !important;
|
505 |
+
font-size: 17px !important; /* ํฐํธ ํฌ๊ธฐ๋ ์ฝ๊ฐ ์ฆ๊ฐ */
|
506 |
+
}
|
507 |
+
|
508 |
+
|
509 |
+
|
510 |
.large-output-box:hover {
|
511 |
transform: translateY(-2px);
|
512 |
box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
|