-
+
+
+
@@ -130,48 +161,21 @@ const bibTex = ref(`@inproceedings{2024champ,
Combining with T2I
-
-
-
A woman in a silver dress posing for a picture, trending on cg society, futurism,
- with bright blue eyes,
- dior campaign, tesseract, miranda kerr --v 5. 1 --ar 3:4.
-
-
-
-
-
- A realistic depiction of Aang, the last airbender, showcasing his mastery of all bending elements while in
- the powerful Avatar State. Ultra detailed, hd, 8k.
-
-
-
-
-
-
A painting of a woman in a yellow dress, heavy metal comic cover art, space theme,
- pin-up girl, silver
- and yellow color scheme, where the planets are candy, inspired by Joyce Ballantyne Brand, full - body
- artwork, lunar themed attire, golden age illustrator, blue and black color scheme.
-
+
Cross-ID Animation
-
-
-
+
BibTeX
-
-
-
-
+ {{ bibTex }}
@@ -242,6 +246,11 @@ section {
@apply font-light italic md:px-20 text-center leading-snug;
}
+.bibtex-code {
+ @apply border-gray-300 bg-gray-300/15 p-4 rounded-lg w-full overflow-auto;
+ max-width: 960px;
+}
+
.button {
@apply mr-3 mt-2;
@@ -276,4 +285,26 @@ section {
.editor {
@apply min-w-full min-h-full;
}
+
+.carousel__item {
+ min-height: 200px;
+ width: 100%;
+ background-color: var(--vc-clr-primary);
+ color: var(--vc-clr-white);
+ font-size: 20px;
+ border-radius: 8px;
+ display: flex;
+ justify-content: center;
+ align-items: center;
+}
+
+.carousel__slide {
+ padding: 10px;
+}
+
+.carousel__prev,
+.carousel__next {
+ box-sizing: content-box;
+ border: 5px solid white;
+}
diff --git a/tailwind.config.js b/tailwind.config.js
index 2c057d7..9e721bd 100644
--- a/tailwind.config.js
+++ b/tailwind.config.js
@@ -1,8 +1,8 @@
/** @type {import('tailwindcss').Config} */
export default {
- content: ['./index.html', './src/**/*.{vue,js,ts,jsx,tsx}'],
+ content: ['./index.html', './src/**/*.{vue,js,ts,jsx,tsx}', './node_modules/tw-elements/js/**/*.js'],
theme: {
extend: {}
},
- plugins: []
+ plugins: [require("tw-elements/plugin.cjs")]
}