cssが崩れてる
Browse files
style.css
CHANGED
|
@@ -1,3 +1,18 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
/* Custom animations */
|
| 2 |
@keyframes fadeIn {
|
| 3 |
from { opacity: 0; }
|
|
@@ -40,10 +55,70 @@
|
|
| 40 |
color: #2ecc71;
|
| 41 |
}
|
| 42 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 43 |
.file-type-zip {
|
| 44 |
color: #f39c12;
|
| 45 |
}
|
| 46 |
|
| 47 |
.file-type-other {
|
| 48 |
color: #9b59b6;
|
| 49 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
|
| 2 |
+
/* Base styles */
|
| 3 |
+
body {
|
| 4 |
+
font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
|
| 5 |
+
line-height: 1.5;
|
| 6 |
+
}
|
| 7 |
+
|
| 8 |
+
/* Container styles */
|
| 9 |
+
.container {
|
| 10 |
+
width: 100%;
|
| 11 |
+
max-width: 1200px;
|
| 12 |
+
margin: 0 auto;
|
| 13 |
+
padding: 0 1rem;
|
| 14 |
+
}
|
| 15 |
+
|
| 16 |
/* Custom animations */
|
| 17 |
@keyframes fadeIn {
|
| 18 |
from { opacity: 0; }
|
|
|
|
| 55 |
color: #2ecc71;
|
| 56 |
}
|
| 57 |
|
| 58 |
+
.file-type-sheet {
|
| 59 |
+
color: #27ae60;
|
| 60 |
+
}
|
| 61 |
+
|
| 62 |
+
.file-type-ppt {
|
| 63 |
+
color: #e67e22;
|
| 64 |
+
}
|
| 65 |
+
|
| 66 |
.file-type-zip {
|
| 67 |
color: #f39c12;
|
| 68 |
}
|
| 69 |
|
| 70 |
.file-type-other {
|
| 71 |
color: #9b59b6;
|
| 72 |
+
}
|
| 73 |
+
|
| 74 |
+
/* Responsive grid fixes */
|
| 75 |
+
@media (max-width: 768px) {
|
| 76 |
+
.grid-cols-12 > div {
|
| 77 |
+
grid-column: span 12 !important;
|
| 78 |
+
margin-bottom: 0.5rem;
|
| 79 |
+
}
|
| 80 |
+
|
| 81 |
+
.flex-col {
|
| 82 |
+
flex-direction: column;
|
| 83 |
+
}
|
| 84 |
+
|
| 85 |
+
.flex-col .space-x-6 {
|
| 86 |
+
margin-top: 1rem;
|
| 87 |
+
margin-left: 0;
|
| 88 |
+
}
|
| 89 |
+
}
|
| 90 |
+
|
| 91 |
+
/* Input and button fixes */
|
| 92 |
+
input[type="password"],
|
| 93 |
+
input[type="file"] {
|
| 94 |
+
border: 1px solid #d1d5db;
|
| 95 |
+
border-radius: 0.375rem;
|
| 96 |
+
padding: 0.5rem 0.75rem;
|
| 97 |
+
width: 100%;
|
| 98 |
+
}
|
| 99 |
+
|
| 100 |
+
button {
|
| 101 |
+
transition: all 0.2s ease;
|
| 102 |
+
}
|
| 103 |
+
|
| 104 |
+
/* Shadow DOM component fixes */
|
| 105 |
+
custom-header, custom-footer {
|
| 106 |
+
display: block;
|
| 107 |
+
width: 100%;
|
| 108 |
+
}
|
| 109 |
+
|
| 110 |
+
/* Spacing fixes */
|
| 111 |
+
.py-8 {
|
| 112 |
+
padding-top: 2rem;
|
| 113 |
+
padding-bottom: 2rem;
|
| 114 |
+
}
|
| 115 |
+
|
| 116 |
+
.px-4 {
|
| 117 |
+
padding-left: 1rem;
|
| 118 |
+
padding-right: 1rem;
|
| 119 |
+
}
|
| 120 |
+
|
| 121 |
+
/* Icon alignment fixes */
|
| 122 |
+
[data-feather] {
|
| 123 |
+
vertical-align: middle;
|
| 124 |
+
}
|