aboutsummaryrefslogtreecommitdiff
path: root/static/css/main.css
diff options
context:
space:
mode:
authorBobby <[email protected]>2024-09-06 01:13:12 -0400
committerBobby <[email protected]>2024-09-06 01:13:12 -0400
commit55d87c6a2c04cd8e1e5ea215dd670f0a8c42ec19 (patch)
tree406ba2bc81900bc5ca8636a0599635bae5a78cc4 /static/css/main.css
parent8aa601d5d7a8fa37ec3b905e0b94790f7e6ac191 (diff)
downloadyugen-55d87c6a2c04cd8e1e5ea215dd670f0a8c42ec19.tar.xz
yugen-55d87c6a2c04cd8e1e5ea215dd670f0a8c42ec19.zip
fancier detail page
Diffstat (limited to 'static/css/main.css')
-rw-r--r--static/css/main.css49
1 files changed, 49 insertions, 0 deletions
diff --git a/static/css/main.css b/static/css/main.css
index 3220336..12d8fa4 100644
--- a/static/css/main.css
+++ b/static/css/main.css
@@ -719,6 +719,11 @@ video {
margin-bottom: 2rem;
}
+.mx-2 {
+ margin-left: 0.5rem;
+ margin-right: 0.5rem;
+}
+
.mb-2 {
margin-bottom: 0.5rem;
}
@@ -783,6 +788,10 @@ video {
display: inline-flex;
}
+.grid {
+ display: grid;
+}
+
.hidden {
display: none;
}
@@ -1048,6 +1057,10 @@ video {
list-style-position: inside;
}
+.grid-cols-1 {
+ grid-template-columns: repeat(1, minmax(0, 1fr));
+}
+
.flex-row {
flex-direction: row;
}
@@ -1114,6 +1127,12 @@ video {
margin-bottom: calc(0.5rem * var(--tw-space-y-reverse));
}
+.space-x-2 > :not([hidden]) ~ :not([hidden]) {
+ --tw-space-x-reverse: 0;
+ margin-right: calc(0.5rem * var(--tw-space-x-reverse));
+ margin-left: calc(0.5rem * calc(1 - var(--tw-space-x-reverse)));
+}
+
.overflow-auto {
overflow: auto;
}
@@ -1593,6 +1612,11 @@ video {
background-color: rgb(161 98 7 / var(--tw-bg-opacity));
}
+.bg-gray-800 {
+ --tw-bg-opacity: 1;
+ background-color: rgb(31 41 55 / var(--tw-bg-opacity));
+}
+
.bg-opacity-10 {
--tw-bg-opacity: 0.1;
}
@@ -2436,6 +2460,11 @@ main {
background-color: rgb(161 98 7 / var(--tw-bg-opacity));
}
+.hover\:bg-gray-700:hover {
+ --tw-bg-opacity: 1;
+ background-color: rgb(55 65 81 / var(--tw-bg-opacity));
+}
+
.hover\:bg-opacity-30:hover {
--tw-bg-opacity: 0.3;
}
@@ -2631,6 +2660,10 @@ main {
height: 39vw;
}
+ .lg\:h-28 {
+ height: 7rem;
+ }
+
.lg\:max-h-24 {
max-height: 6rem;
}
@@ -2667,6 +2700,22 @@ main {
width: 15rem;
}
+ .lg\:w-48 {
+ width: 12rem;
+ }
+
+ .lg\:w-auto {
+ width: auto;
+ }
+
+ .lg\:flex-shrink-0 {
+ flex-shrink: 0;
+ }
+
+ .lg\:grid-cols-2 {
+ grid-template-columns: repeat(2, minmax(0, 1fr));
+ }
+
.lg\:flex-row {
flex-direction: row;
}