aboutsummaryrefslogtreecommitdiff
path: root/static
diff options
context:
space:
mode:
authorBobby <[email protected]>2024-08-25 18:23:36 -0400
committerBobby <[email protected]>2024-08-25 18:23:36 -0400
commitc6c9c18c39b94cbb1db1c54a5993045c56e49c7e (patch)
tree5709a2caad01b3b2e12086a6af20ced2763dae81 /static
parentd846d0fa4483c9ea91e1082aac0f7aea9ed64653 (diff)
downloadyugen-c6c9c18c39b94cbb1db1c54a5993045c56e49c7e.tar.xz
yugen-c6c9c18c39b94cbb1db1c54a5993045c56e49c7e.zip
Better auth for SSR. Profile and Watch prep
Diffstat (limited to 'static')
-rw-r--r--static/.DS_Storebin6148 -> 6148 bytes
-rw-r--r--static/css/main.css90
-rw-r--r--static/images/gun_point.gifbin0 -> 1045002 bytes
3 files changed, 90 insertions, 0 deletions
diff --git a/static/.DS_Store b/static/.DS_Store
index c2c8da3..17bdc09 100644
--- a/static/.DS_Store
+++ b/static/.DS_Store
Binary files differ
diff --git a/static/css/main.css b/static/css/main.css
index 5b7898d..93a6afe 100644
--- a/static/css/main.css
+++ b/static/css/main.css
@@ -574,6 +574,34 @@ video {
left: 50%;
}
+.bottom-0 {
+ bottom: 0px;
+}
+
+.left-0 {
+ left: 0px;
+}
+
+.-bottom-10 {
+ bottom: -2.5rem;
+}
+
+.right-0 {
+ right: 0px;
+}
+
+.bottom-10 {
+ bottom: 2.5rem;
+}
+
+.right-10 {
+ right: 2.5rem;
+}
+
+.left-10 {
+ left: 2.5rem;
+}
+
.z-10 {
z-index: 10;
}
@@ -674,6 +702,14 @@ video {
height: 18rem;
}
+.h-24 {
+ height: 6rem;
+}
+
+.h-32 {
+ height: 8rem;
+}
+
.max-h-24 {
max-height: 6rem;
}
@@ -711,11 +747,19 @@ video {
width: max-content;
}
+.w-24 {
+ width: 6rem;
+}
+
.max-w-max {
max-width: -moz-max-content;
max-width: max-content;
}
+.max-w-7xl {
+ max-width: 80rem;
+}
+
.-translate-x-1\/2 {
--tw-translate-x: -50%;
transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
@@ -889,6 +933,16 @@ video {
background-color: rgb(254 249 195 / var(--tw-bg-opacity));
}
+.bg-gray-800 {
+ --tw-bg-opacity: 1;
+ background-color: rgb(31 41 55 / var(--tw-bg-opacity));
+}
+
+.bg-blue-500 {
+ --tw-bg-opacity: 1;
+ background-color: rgb(59 130 246 / var(--tw-bg-opacity));
+}
+
.bg-opacity-10 {
--tw-bg-opacity: 0.1;
}
@@ -962,6 +1016,11 @@ video {
padding-bottom: 0.75rem;
}
+.py-8 {
+ padding-top: 2rem;
+ padding-bottom: 2rem;
+}
+
.pl-4 {
padding-left: 1rem;
}
@@ -974,6 +1033,14 @@ video {
padding-top: 0.25rem;
}
+.pb-4 {
+ padding-bottom: 1rem;
+}
+
+.text-center {
+ text-align: center;
+}
+
.text-2xl {
font-size: 1.5rem;
line-height: 2rem;
@@ -1091,6 +1158,12 @@ video {
color: rgb(234 179 8 / var(--tw-text-opacity));
}
+.shadow-lg {
+ --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
+ --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
+ box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
+}
+
.outline-none {
outline: 2px solid transparent;
outline-offset: 2px;
@@ -1138,6 +1211,11 @@ main {
/* Light gray for inactive bullets */
}
+.hover\:bg-blue-700:hover {
+ --tw-bg-opacity: 1;
+ background-color: rgb(29 78 216 / var(--tw-bg-opacity));
+}
+
.hover\:bg-opacity-20:hover {
--tw-bg-opacity: 0.2;
}
@@ -1152,6 +1230,13 @@ main {
outline-offset: 2px;
}
+@media (min-width: 640px) {
+ .sm\:px-6 {
+ padding-left: 1.5rem;
+ padding-right: 1.5rem;
+ }
+}
+
@media (min-width: 1024px) {
.lg\:w-1\/2 {
width: 50%;
@@ -1181,6 +1266,11 @@ main {
.lg\:bg-opacity-20 {
--tw-bg-opacity: 0.2;
}
+
+ .lg\:px-8 {
+ padding-left: 2rem;
+ padding-right: 2rem;
+ }
}
@media (min-width: 1280px) {
diff --git a/static/images/gun_point.gif b/static/images/gun_point.gif
new file mode 100644
index 0000000..852ae32
--- /dev/null
+++ b/static/images/gun_point.gif
Binary files differ