commit b85a1d6b2a7785cb5094cee9b871d44f9c03da3a Author: Felipe Contreras Salinas Date: Thu Nov 21 20:01:52 2024 -0300 Primer commit diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..364fdec --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +public/ diff --git a/README.md b/README.md new file mode 100644 index 0000000..48b207d --- /dev/null +++ b/README.md @@ -0,0 +1,35 @@ +# Lucky Meowth + +Repositorio del blog https://luckymeow.th. El sitio está construido usando el +generador de contenido estático [Zola](https://getzola.org). + +## Entorno local + +Para probar el sitio en local antes de enviar los cambios, basta [instalar el +ejecutable de +Zola](https://www.getzola.org/documentation/getting-started/installation/) y ejecutar +el siguiente comando + +```shell +zola serve --drafts --open +``` + +Que abrirá la versión local del sitio web un un navegador. + +Para agregar nuevas publicaciones, puedes copiar la plantilla ubicada en +`content/template.md`. Antes de publicar, recuerda cambiar el valor de la variable +`draft` en la cabecera del archivo. + +## LaTeX + +El sitio soporta escritura de matemáticas usando la librería +[KaTeX](https://katex.org/) + +## Insertar cartas + +Para hacer un inserto con una carta en particular, necesitamos intestar código como +el que sigue en nuestro archivo + +``` +{{ ptcg_card(id="scr-es-128") }} +``` diff --git a/config.toml b/config.toml new file mode 100644 index 0000000..47658dd --- /dev/null +++ b/config.toml @@ -0,0 +1,75 @@ +base_url = "https://luckymeow.th" +title = "Lucky Meowth" +description = "Blog de probabilidades y Pokémon" +default_language = "es" +theme = "lucky" + +taxonomies = [{ name = "t", paginate_by = 6, sort_by = "date" }] + +compile_sass = true +build_search_index = false + +[markdown] +highlight_code = false +external_links_target_blank = true +external_links_no_follow = true +smart_punctuation = true +bottom_footnotes = true + +[extra] +logo = "img/logo-2024.png" +social = [ + { title = "Mastodon", url = "https://lile.cl/luckymeowth", icon = "fa-mastodon" }, +] + +[[extra.menu.es]] +name = "#" +url = "t/" +[[extra.menu.es]] +name = "?" +url = "about/" + + +[translations] +dateFormat = "%-d de %B de %Y" +lastModified = "Última modificación el" +locale = "es_ES" +newerPosts = "Artículos siguientes" +nextPost = "Artículo siguiente" +olderPosts = "Artículos anteriores" +postedOnDate = "Publicado el" +postedBy = "por" +previousPost = "Artículo anterior" +unlessLicense = "a menos que se indique lo contrario" +ptcg-pokemon = "Pokémon" +ptcg-basic = "Básico" +ptcg-stage1 = "Fase 1" +ptcg-stage2 = "Fase 2" +ptcg-vstar = "V-Astro" +ptcg-ability = "Habilidad" +ptcg-vstar-power = "Poder V-Astro" +ptcg-acespec = "As Táctico" +ptcg-acespec-text = "No puedes tener más de una carta AS TÁCTICO en tu baraja." +ptcg-tera = "Teracristal" +ptcg-tera-text = "Mientras este Pokémon esté en tu Banca, evita todo el daño infligido a este Pokémon por ataques (tanto tuyos como de tu rival)." +ptcg-ex-rule = "Regla para los Pokémon ex" +ptcg-ex-rule-text = "Cuando tu Pokémon ex queda Fuera de Combate, tu rival coge 2 cartas de premio." +ptcg-v-rule = "Regla V" +ptcg-v-rule-text = "Cuando tu Pokémon V queda Fuera de Combate, tu rival coge 2 cartas de Premio." +ptcg-radiant-rule = "Regla para los Pokémon Radiante" +ptcg-radiant-rule-text = "No puedes tener más de 1 Pokémon Radiante en tu baraja." +ptcg-trainers = "Entrenadores" +ptcg-trainer = "Entrenador" +ptcg-item = "Objeto" +ptcg-item-rule = "Puedes jugar cualquier cantidad de cartas de Objeto durante tu turno." +ptcg-stadium = "Estadio" +ptcg-stadium-rule = "Solo puedes jugar una carta de Estadio durante tu turno. Colócala al lado del Puesto Activo y descártala si entra en juego otro Estadio. No se puede jugar un Estadio con el mismo nombre." +ptcg-supporter = "Partidario" +ptcg-supporter-rule = "Solo puedes jugar una carta de Partidario durante tu turno." +ptcg-tool = "Herramienta Pokémon" +ptcg-tool-rule = "Puedes unir cualquier cantidad de Herramientas Pokémon a tus Pokémon durante tu turno. Solo puedes unir una Herramienta Pokémon a cada Pokémon, y esta permanecerá unida." +ptcg-energies = "Energías" +ptcg-energy = "Energía" +ptcg-energy-basic = "Básica" +ptcg-energy-special = "Especial" + diff --git a/content/_index.md b/content/_index.md new file mode 100644 index 0000000..9324b0c --- /dev/null +++ b/content/_index.md @@ -0,0 +1,5 @@ ++++ +sort_by = "date" +paginate_by = 6 +insert_anchor_links = "heading" ++++ diff --git a/content/about/_index.md b/content/about/_index.md new file mode 100644 index 0000000..cff279e --- /dev/null +++ b/content/about/_index.md @@ -0,0 +1,6 @@ ++++ +title = "¿Quiénes somos?" +draft = false ++++ + +hola diff --git a/content/ptcg/cards/asr-es-050.toml b/content/ptcg/cards/asr-es-050.toml new file mode 100644 index 0000000..c5da955 --- /dev/null +++ b/content/ptcg/cards/asr-es-050.toml @@ -0,0 +1,13 @@ +name = "Luxray V" +kind = "pokemon" +type = "basic" +hp = 210 +element = "[L]" +attacks = [ + { cost = "[C][C]", name = "Disparo Colmillo", damage = 30, effect = "Tu rival enseña las cartas de su mano. Descarta 1 carta de Entrenador que encuentres entre ellas." }, + { cost = "[L][L][C]", name = "Pulso Radiante", damage = 120, effect = "Descarta 2 Energías de este Pokémon. El Pokémon Activo de tu rival pasa a estar Paralizado." }, +] +rulebox = "v" +weakness = "[L]×2" +resistance = "" +retreat = "[C]" diff --git a/content/ptcg/cards/asr-es-134.toml b/content/ptcg/cards/asr-es-134.toml new file mode 100644 index 0000000..eb94b93 --- /dev/null +++ b/content/ptcg/cards/asr-es-134.toml @@ -0,0 +1,13 @@ +name = "Wyrdeer V" +kind = "pokemon" +type = "basic" +hp = 220 +element = "[C]" +ability = { name = "Camino Fronterizo", effect = "Una vez durante tu turno, cuando este Pokémon se mueve de tu Banca al Puesto Activo, puedes mover cualquier cantidad de Energías de tus otros Pokémon a este Pokémon." } +attacks = [ + { cost = "[C][C][C]", name = "Asalto Barrera", damage = "40×", effect = "Este ataque hace 40 puntos de daño por cada Energía unida a este Pokémon." }, +] +rulebox = "v" +weakness = "[F]×2" +resistance = "" +retreat = "[C][C]" diff --git a/content/ptcg/cards/asr-es-155.toml b/content/ptcg/cards/asr-es-155.toml new file mode 100644 index 0000000..9e89604 --- /dev/null +++ b/content/ptcg/cards/asr-es-155.toml @@ -0,0 +1,4 @@ +name = "Templo de Sinnoh" +kind = "trainer" +type = "stadium" +effect = "Todas las Energías Especiales unidas a los Pokémon (tanto tuyos como de tu rival) proporcionan 1 Energía [C] y no tienen ningún otro efecto." diff --git a/content/ptcg/cards/brs-es-040.toml b/content/ptcg/cards/brs-es-040.toml new file mode 100644 index 0000000..f3d7eac --- /dev/null +++ b/content/ptcg/cards/brs-es-040.toml @@ -0,0 +1,13 @@ +name = "Lumineon V" +kind = "pokemon" +type = "basic" +hp = 170 +element = "[W]" +ability = { name = "Señal Luminosa", effect = "Cuando juegas este Pokémon de tu mano a tu Banca, puedes buscar en tu baraja 1 carta de Partidario, enseñarla y ponerla en tu mano. Después, baraja las cartas de tu baraja." } +attacks = [ + { cost = "[W][C][C]", name = "Retorno Acuático", damage = 120, effect = "Pon este Pokémon y todas las cartas unidas a él en tu baraja, y baraja todas las cartas." }, +] +rulebox = "v" +weakness = "[L]×2" +resistance = "" +retreat = "[C]" diff --git a/content/ptcg/cards/brs-es-041.toml b/content/ptcg/cards/brs-es-041.toml new file mode 100644 index 0000000..9bd659b --- /dev/null +++ b/content/ptcg/cards/brs-es-041.toml @@ -0,0 +1,10 @@ +name = "Manaphy" +kind = "pokemon" +type = "basic" +hp = 70 +element = "[W]" +ability = { name = "Velo de Olas", effect = "Evita todo el daño infligido a tus Pokémon en Banca por ataques de los Pokémon de tu rival." } +attacks = [{ cost = "[W]", name = "Retorno Acuático", damage = 20 }] +weakness = "[L]×2" +resistance = "" +retreat = "[C]" diff --git a/content/ptcg/cards/brs-es-048.toml b/content/ptcg/cards/brs-es-048.toml new file mode 100644 index 0000000..b0618f9 --- /dev/null +++ b/content/ptcg/cards/brs-es-048.toml @@ -0,0 +1,13 @@ +name = "Raikou V" +kind = "pokemon" +type = "basic" +hp = 200 +element = "[L]" +ability = { name = "Celeridad", effect = "Una vez durante tu turno, si este Pokémon está en el Puesto Activo, puedes robar 1 carta." } +attacks = [ + { cost = "[L][C]", name = "Rondó Relámpago", damage = "20+", effect = "Este ataque hace 40 puntos de daño más por cada Pokémon en Banca (tanto tuyos, como de tu rival)." }, +] +rulebox = "v" +weakness = "[F]×2" +resistance = "" +retreat = "[C]" diff --git a/content/ptcg/cards/brs-es-124.toml b/content/ptcg/cards/brs-es-124.toml new file mode 100644 index 0000000..c4c7e2d --- /dev/null +++ b/content/ptcg/cards/brs-es-124.toml @@ -0,0 +1,12 @@ +name = "Minccino" +kind = "pokemon" +type = "basic" +hp = 60 +element = "[C]" +attacks = [ + { cost = "[C]", name = "Llamar a la Familia", effect = "Busca en tu baraja hasta 2 Pokémon Básicos y ponlos en tu Banca. Después, baraja las cartas de tu baraja." }, + { cost = "[C]", name = "Destructor", damage = "10" }, +] +weakness = "[F]×2" +resistance = "" +retreat = "[C]" diff --git a/content/ptcg/cards/brs-es-137.toml b/content/ptcg/cards/brs-es-137.toml new file mode 100644 index 0000000..0bfd697 --- /dev/null +++ b/content/ptcg/cards/brs-es-137.toml @@ -0,0 +1,4 @@ +name = "Estadio en Ruinas" +kind = "trainer" +type = "stadium" +effect = "Ningún jugador puede tener más de 4 Pokémon en Banca. Si un jugador tiene 5 Pokémon en Banca o más, descarta Pokémon en Banca hasta tener 4 Pokémon en la Banca. El jugador que juegue esta carta descarta primero. Si más de un efecto cambia el número de Pokémon en Banca permitidos, se usa el número menor." diff --git a/content/ptcg/cards/brs-es-151.toml b/content/ptcg/cards/brs-es-151.toml new file mode 100644 index 0000000..7b0155c --- /dev/null +++ b/content/ptcg/cards/brs-es-151.toml @@ -0,0 +1,4 @@ +name = "Doble Energía Turbo" +kind = "energy" +type = "special" +effect = "Mientras esta carta esté unida a un Pokémon, proporciona 2 Energías [C]. Los ataques del Pokémon al que esté unida esta carta hacen 20 puntos de daño menos a los Pokémon de tu rival (antes de aplicar Debilidad y Resistencia)." diff --git a/content/ptcg/cards/crz-es-020.toml b/content/ptcg/cards/crz-es-020.toml new file mode 100644 index 0000000..fcbc53d --- /dev/null +++ b/content/ptcg/cards/crz-es-020.toml @@ -0,0 +1,13 @@ +name = "Charizard Radiante" +kind = "pokemon" +type = "basic" +hp = 150 +element = "[R]" +ability = { name = "Corazón Exaltado", effect = "Los ataques de este Pokémon cuestan [C] menos por cada carta de Premio que haya cogido tu rival." } +attacks = [ + { cost = "[R][C][C][C][C]", name = "Estallido Fuego", damage = "250", effect = "Durante tu próximo turno, este Pokémon no puede usar Estallido Fuego." }, +] +rulebox = "radiant" +weakness = "[W]×2" +resistance = "" +retreat = "[C][C][C]" diff --git a/content/ptcg/cards/lor-es-058.toml b/content/ptcg/cards/lor-es-058.toml new file mode 100644 index 0000000..49b48e8 --- /dev/null +++ b/content/ptcg/cards/lor-es-058.toml @@ -0,0 +1,13 @@ +name = "Rotom V" +kind = "pokemon" +type = "basic" +hp = 190 +element = "[L]" +ability = { name = "Carga Instantánea", effect = "Una vez durante tu turno, puedes robar 3 cartas. Si usas esta habilidad, tu turno termina." } +attacks = [ + { cost = "[L][L]", name = "Cortocircuito Chatarra", damage = "40+", effect = "Pon cualquier cantidad de cartas de Herramienta Pokémon de tu pila de descartes en la Zona Perdida. Este ataque hace 40 puntos de daño más por cada carta que hayas puesto en la Zona Perdida de esta manera." }, +] +rulebox = "v" +weakness = "[F]×2" +resistance = "" +retreat = "[C]" diff --git a/content/ptcg/cards/lor-es-167.toml b/content/ptcg/cards/lor-es-167.toml new file mode 100644 index 0000000..40503f9 --- /dev/null +++ b/content/ptcg/cards/lor-es-167.toml @@ -0,0 +1,4 @@ +name = "Espinal" +kind = "trainer" +type = "supporter" +effect = "Elige 1 Pokémon Básico de tu pila de descartes y cámbialo por 1 de tus Pokémon Básicos en juego. Todas las cartas unidas a este Pokémon, los contadores de daño, las Condiciones Especiales, los turnos de juego y todos los demás efectos permanecen en el nuevo Pokémon." diff --git a/content/ptcg/cards/lor-es-171.toml b/content/ptcg/cards/lor-es-171.toml new file mode 100644 index 0000000..01554b7 --- /dev/null +++ b/content/ptcg/cards/lor-es-171.toml @@ -0,0 +1,4 @@ +name = "Energía Regalo" +kind = "energy" +type = "special" +effect = "Mientras esta carta esté unida a un Pokémon, proporciona 1 Energía [C]. Si el Pokémon al que está unida esta carta queda Fuera de Combate por el daño de un ataque de los Pokémon de tu rival, roba cartas hasta que tengas 7 cartas en tu mano." diff --git a/content/ptcg/cards/obf-es-125.toml b/content/ptcg/cards/obf-es-125.toml new file mode 100644 index 0000000..481326b --- /dev/null +++ b/content/ptcg/cards/obf-es-125.toml @@ -0,0 +1,14 @@ +name = "Charizard ex" +kind = "pokemon" +type = "stage2" +hp = 330 +element = "[D]" +tera = true +ability = { name = "Reino Infernal", effect = "Cuando juegas este Pokémon de tu mano para hacer evolucionar a uno de tus Pokémon durante tu turno, puedes buscar en tu baraja hasta 3 cartas de Energía [R] Básica y unirlas a tus Pokémon de la manera que desees. Después, baraja las cartas de tu baraja." } +attacks = [ + { cost = "[R][R]", name = "Oscuridad Ardiente", damage = "180+", effect = "Este ataque hace 30 puntos de daño más por cada carta de Premio que haya cogido tu rival." }, +] +rulebox = "ex" +weakness = "[G]×2" +resistance = "" +retreat = "[C][C]" diff --git a/content/ptcg/cards/obf-es-164.toml b/content/ptcg/cards/obf-es-164.toml new file mode 100644 index 0000000..47c3c39 --- /dev/null +++ b/content/ptcg/cards/obf-es-164.toml @@ -0,0 +1,13 @@ +name = "Pidgeot ex" +kind = "pokemon" +type = "stage2" +hp = 280 +element = "[C]" +ability = { name = "Búsqueda Rápida", effect = "Una vez durante tu turno, puedes buscar en tu baraja 1 carta y ponerla en tu mano. Después, baraja las cartas de tu baraja. No puedes usar más de una habilidad Búsqueda Rápida en cada turno." } +attacks = [ + { cost = "[C][C]", name = "Ventarrón", damage = 120, effect = "Puedes descartar 1 Estadio en juego." }, +] +rulebox = "ex" +weakness = "[L]×2" +resistance = "[F]-30" +retreat = "" diff --git a/content/ptcg/cards/paf-es-015.toml b/content/ptcg/cards/paf-es-015.toml new file mode 100644 index 0000000..d6ab92a --- /dev/null +++ b/content/ptcg/cards/paf-es-015.toml @@ -0,0 +1,12 @@ +name = "Armarouge" +kind = "pokemon" +type = "stage1" +hp = 130 +element = "[R]" +ability = { name = "Pirodisparo", effect = "Todas las veces que quieras durante tu turno, puedes mover 1 Energía [R] de uno de tus Pokémon en Banca a tu Pokémon Activo." } +attacks = [ + { cost = "[R][C]", name = "Cañón Llama", damage = 90, effect = "El Pokémon Activo de tu rival pasa a estar Quemado." }, +] +weakness = "[W]×2" +resistance = "" +retreat = "[C][C]" diff --git a/content/ptcg/cards/paf-es-081.toml b/content/ptcg/cards/paf-es-081.toml new file mode 100644 index 0000000..aefab40 --- /dev/null +++ b/content/ptcg/cards/paf-es-081.toml @@ -0,0 +1,4 @@ +name = "Colina de Luz Lunar" +kind = "trainer" +type = "stadium" +effect = "Una vez durante el turno de cada jugador, ese jugador puede descartar 1 carta de Energía [P] Básica de su mano para poder curar 30 puntos de daño a cada uno de sus Pokémon." diff --git a/content/ptcg/cards/pal-es-169.toml b/content/ptcg/cards/pal-es-169.toml new file mode 100644 index 0000000..b900f5a --- /dev/null +++ b/content/ptcg/cards/pal-es-169.toml @@ -0,0 +1,13 @@ +name = "Squawkabilly ex " +kind = "pokemon" +type = "basic" +hp = 160 +element = "[C]" +ability = { name = "Graznido y Captura", effect = "Una vez durante tu primer turno, puedes descartar las cartas de tu mano y robar 6 cartas. No puedes usar más de una habilidad Graznido y Captura durante tu turno." } +attacks = [ + { cost = "[C]", name = "Motivar", damage = 20, effect = "Une hasta 2 cartas de Energía Básica de tu pila de descartes a uno de tus Pokémon en Banca." }, +] +rulebox = "ex" +weakness = "[L]×2" +resistance = "[F]-30" +retreat = "[C]" diff --git a/content/ptcg/cards/pal-es-172.toml b/content/ptcg/cards/pal-es-172.toml new file mode 100644 index 0000000..a608f85 --- /dev/null +++ b/content/ptcg/cards/pal-es-172.toml @@ -0,0 +1,4 @@ +name = "Órdenes de Jefes" +kind = "trainer" +type = "supporter" +effect = "Cambia 1 de los Pokémon en Banca de tu rival por el Pokémon que esté en el Puesto Activo." diff --git a/content/ptcg/cards/pal-es-173.toml b/content/ptcg/cards/pal-es-173.toml new file mode 100644 index 0000000..91e8547 --- /dev/null +++ b/content/ptcg/cards/pal-es-173.toml @@ -0,0 +1,4 @@ +name = "Amuleto de Bravura" +kind = "trainer" +type = "tool" +effect = "El Pokémon Básico al que esté unida esta carta obtiene 50 PS más." diff --git a/content/ptcg/cards/pal-es-182.toml b/content/ptcg/cards/pal-es-182.toml new file mode 100644 index 0000000..f1c3196 --- /dev/null +++ b/content/ptcg/cards/pal-es-182.toml @@ -0,0 +1,4 @@ +name = "Anán" +kind = "trainer" +type = "supporter" +effect = "Descarta 1 Energía Especial de cada uno de los Pokémon de tu rival." diff --git a/content/ptcg/cards/pal-es-183.toml b/content/ptcg/cards/pal-es-183.toml new file mode 100644 index 0000000..c9e7238 --- /dev/null +++ b/content/ptcg/cards/pal-es-183.toml @@ -0,0 +1,4 @@ +name = "Super Ball" +kind = "trainer" +type = "item" +effect = "Mira las 7 primeras cartas de tu baraja. Puedes enseñar 1 Pokémon que encuentres entre ellas y ponerlo en tu mano. Pon el resto de las cartas de nuevo en tu baraja y barájalas todas." diff --git a/content/ptcg/cards/pal-es-185.toml b/content/ptcg/cards/pal-es-185.toml new file mode 100644 index 0000000..4d4e4c1 --- /dev/null +++ b/content/ptcg/cards/pal-es-185.toml @@ -0,0 +1,4 @@ +name = "e-Nigma" +kind = "trainer" +type = "supporter" +effect = "Cada jugador baraja las cartas de su mano y las pone en la parte inferior de su baraja. Si cualquiera de los jugadores pone alguna carta en la parte inferior de su baraja de esta manera, cada jugador roba 1 carta por cada una de las cartas de Premio que le queden." diff --git a/content/ptcg/cards/pal-es-190.toml b/content/ptcg/cards/pal-es-190.toml new file mode 100644 index 0000000..c2cd677 --- /dev/null +++ b/content/ptcg/cards/pal-es-190.toml @@ -0,0 +1,4 @@ +name = "Energía Propulsión" +kind = "energy" +type = "special" +effect = "Mientras esta carta esté unida a un Pokémon, proporciona 1 Energía [C]. Cuando unas esta carta de tu mano a uno de tus Pokémon en Banca, cambia ese Pokémon por tu Pokémon Activo." diff --git a/content/ptcg/cards/pal-es-192.toml b/content/ptcg/cards/pal-es-192.toml new file mode 100644 index 0000000..cfbfe15 --- /dev/null +++ b/content/ptcg/cards/pal-es-192.toml @@ -0,0 +1,4 @@ +name = "Energía Inversión" +kind = "energy" +type = "special" +effect = "Mientras esta carta esté unida a un Pokémon, proporciona 1 Energía [C]. Si te quedan más cartas de Premio que a tu rival, y si esta carta está unida a un Pokémon Evolución que no tenga un recuadro de regla (Pokémon ex, Pokémon V, etc. tienen recuadros de regla), esta carta proporciona cualquier tipo de Energía, pero proporciona solo 3 Energías a la vez." diff --git a/content/ptcg/cards/par-es-056.toml b/content/ptcg/cards/par-es-056.toml new file mode 100644 index 0000000..e7b6254 --- /dev/null +++ b/content/ptcg/cards/par-es-056.toml @@ -0,0 +1,12 @@ +name = "Ferrosaco" +kind = "pokemon" +type = "basic" +hp = 100 +element = "[W]" +ability = { name = "Hipersoplador", effect = "Una vez durante tu turno, si este Pokémon está en tu banca, puedes mover el Pokémon Activo de tu rival a la Banca. (Tu rival elige el nuevo Pokémon Activo). Si lo haces, descarta este Pokémon y todas las cartas unidas a él." } +attacks = [ + { cost = "[W][C][C]", name = "Corriente Refrigerada", damage = 80, effect = "Si el Pokémon Defensor es un Pokémon Evolución, no puede atacar durante el próximo turno de tu rival." }, +] +weakness = "[L]×2" +resistance = "" +retreat = "[C]" diff --git a/content/ptcg/cards/par-es-070.toml b/content/ptcg/cards/par-es-070.toml new file mode 100644 index 0000000..02aef83 --- /dev/null +++ b/content/ptcg/cards/par-es-070.toml @@ -0,0 +1,13 @@ +name = "Ferropalmas ex" +kind = "pokemon" +type = "basic" +hp = 230 +element = "[L]" +attacks = [ + { cost = "[L][L][C]", name = "Prensa de Brazo", damage = 160 }, + { cost = "[L][C][C][C]", name = "Gracias Amplificadas", damage = 120, effect = "Si un Pokémon de tu rival queda Fuera de Combate por el daño de este ataque, coge 1 carta de Premio más." }, +] +rulebox = "ex" +weakness = "[F]×2" +resistance = "" +retreat = "[C][C][C][C]" diff --git a/content/ptcg/cards/par-es-107.toml b/content/ptcg/cards/par-es-107.toml new file mode 100644 index 0000000..39dfbc1 --- /dev/null +++ b/content/ptcg/cards/par-es-107.toml @@ -0,0 +1,12 @@ +name = "Reptalada" +kind = "pokemon" +type = "basic" +hp = 140 +element = "[F]" +attacks = [ + { cost = "[F]", name = "Pisotear", effect = "Descarta la primera carta de la baraja de tu rival." }, + { cost = "[F][F]", name = "Turbulencia Abrasadora", damage = 90, effect = "Este Pokémon también se hace 90 puntos de daño a sí mismo. El Pokémon Activo de tu rival pasa a estar Quemado." }, +] +weakness = "[P]×2" +resistance = "" +retreat = "[C][C][C]" diff --git a/content/ptcg/cards/par-es-160.toml b/content/ptcg/cards/par-es-160.toml new file mode 100644 index 0000000..fd5bb23 --- /dev/null +++ b/content/ptcg/cards/par-es-160.toml @@ -0,0 +1,4 @@ +name = "Capturador Contraataque" +kind = "trainer" +type = "item" +effect = "Puedes usar esta carta solo si te quedan más cartas de Premio que a tu rival.Cambia 1 de los Pokémon en Banca de tu rival por el Pokémon que esté en el Puesto Activo." diff --git a/content/ptcg/cards/scr-es-045.toml b/content/ptcg/cards/scr-es-045.toml new file mode 100644 index 0000000..124f67b --- /dev/null +++ b/content/ptcg/cards/scr-es-045.toml @@ -0,0 +1,12 @@ +name = "Veluza" +kind = "pokemon" +type = "basic" +hp = 130 +element = "[W]" +ability = { name = "Preparar la comida", effect = "Los atagues usados por este Pokémon cuestan [C] menos por cada carta de Fuco en tu pila de descartes." } +attacks = [ + { cost = "[C][C][C][C]", name = "Tajo Sónico", damage = 110, effect = "El daño de este ataque no se ve afectado por ningún efecto en el Pokémon Activo de tu rival." }, +] +weakness = "[L]×2" +resistance = "" +retreat = "[C][C]" diff --git a/content/ptcg/cards/scr-es-051.toml b/content/ptcg/cards/scr-es-051.toml new file mode 100644 index 0000000..59c76df --- /dev/null +++ b/content/ptcg/cards/scr-es-051.toml @@ -0,0 +1,14 @@ +name = "Galvantula ex" +kind = "pokemon" +type = "stage1" +hp = 260 +element = "[L]" +tera = true +attacks = [ + { cost = "[L][C]", name = "Tela Cargada", damage = "110+" }, + { cost = "[G][L][F]", name = "Fulgurita", damage = 180, effect = "Descarta todas las Energías de este Pokémon. Durante el próximo turno de tu rival, este no puede jugar ninguna carta de Objeto de su mano." }, +] +rulebox = "ex" +weakness = "[F]×2" +resistance = "" +retreat = "[C]" diff --git a/content/ptcg/cards/scr-es-060.toml b/content/ptcg/cards/scr-es-060.toml new file mode 100644 index 0000000..3529046 --- /dev/null +++ b/content/ptcg/cards/scr-es-060.toml @@ -0,0 +1,11 @@ +name = "Drifloon" +kind = "pokemon" +type = "basic" +hp = 70 +element = "[P]" +attacks = [ + { cost = "[P]", name = "Expandir", damage = 10, effect = "Durante el próximo turno de tu rival, los ataques hacen 10 puntos de daño menos a este Pokémon (después de aplicar Debilidad y Resistencia)." }, +] +weakness = "[D]×2" +resistance = "[F]-30" +retreat = "[C]" diff --git a/content/ptcg/cards/scr-es-063.toml b/content/ptcg/cards/scr-es-063.toml new file mode 100644 index 0000000..de6a02f --- /dev/null +++ b/content/ptcg/cards/scr-es-063.toml @@ -0,0 +1,12 @@ +name = "Comfey" +kind = "pokemon" +type = "basic" +hp = 70 +element = "[P]" +attacks = [ + { cost = "[P]", name = "Lluvia de Flores", effect = "Cada jugador roba 3 cartas." }, + { cost = "[P]", name = "Carantoña", damage = "20+", effect = "Lanza 1 moneda. Si sale cara, este ataque hace 20 puntos de daño más." }, +] +weakness = "[M]×2" +resistance = "" +retreat = "[C]" diff --git a/content/ptcg/cards/scr-es-086.toml b/content/ptcg/cards/scr-es-086.toml new file mode 100644 index 0000000..4c1bc9f --- /dev/null +++ b/content/ptcg/cards/scr-es-086.toml @@ -0,0 +1,12 @@ +name = "Diancie" +kind = "pokemon" +type = "basic" +hp = 110 +element = "[F]" +attacks = [ + { cost = "[C]", name = "Refracción Dispersa", damage = "40×", effect = "Este ataque hace 40 puntos de daño por cada Energia Especial unida a cada uno de los Pokémon de tu rival." }, + { cost = "[F][C]", name = "Joya de Luz", damage = 60 }, +] +weakness = "[G]×2" +resistance = "" +retreat = "[C]" diff --git a/content/ptcg/cards/scr-es-087.toml b/content/ptcg/cards/scr-es-087.toml new file mode 100644 index 0000000..68e317f --- /dev/null +++ b/content/ptcg/cards/scr-es-087.toml @@ -0,0 +1,12 @@ +name = "Crabrawler" +kind = "pokemon" +type = "basic" +hp = 90 +element = "[F]" +attacks = [ + { cost = "[C][C]", name = "Agarre", damage = 20 }, + { cost = "[C][C][C]", name = "Martillazo", damage = 50 }, +] +weakness = "[P]×2" +resistance = "" +retreat = "[C][C][C]" diff --git a/content/ptcg/cards/scr-es-115.toml b/content/ptcg/cards/scr-es-115.toml new file mode 100644 index 0000000..d45e644 --- /dev/null +++ b/content/ptcg/cards/scr-es-115.toml @@ -0,0 +1,10 @@ +name = "Noctowl" +kind = "pokemon" +type = "stage1" +hp = 100 +element = "[C]" +ability = { name = "Buscajoyas", effect = "Una vez durante tu turno, cuando juegas este Pokémon de tu mano para hacer evolucionar a uno de tus Pokémon, si tienes algún Pokémon Teracristal en juego, puedes buscar en tu baraja hasta 2 cartas de Entrenador, enseñarlas y ponerlas en tu mano. Después, baraja las cartas de tu baraja." } +attacks = [{ cost = "[C][C]", name = "Ala Veloz", damage = 60 }] +weakness = "[L]×2" +resistance = "[F]-30" +retreat = "[C]" diff --git a/content/ptcg/cards/scr-es-118.toml b/content/ptcg/cards/scr-es-118.toml new file mode 100644 index 0000000..8f019d0 --- /dev/null +++ b/content/ptcg/cards/scr-es-118.toml @@ -0,0 +1,12 @@ +name = "Rotom Ventilador" +kind = "pokemon" +type = "basic" +hp = 70 +element = "[C]" +ability = { name = "Llamada del Ventilador", effect = "Una vez durante tu primer turno, puedes buscar en tu baraja hasta 3 Pokémon [C] con 100 PS o menos, enseñarlos y ponerlos en tu mano. Después, baraja las cartas de tu baraja. No puedes usar más de una habilidad Llamada del ventilador durante tu turno." } +attacks = [ + { cost = "[C]", name = "Aterrizaje Asalto", damage = 70, effect = "Si no hay ningún Estadio en juego, este ataque no hace nada." }, +] +weakness = "[L]×2" +resistance = "[F]-30" +retreat = "[C]" diff --git a/content/ptcg/cards/scr-es-120.toml b/content/ptcg/cards/scr-es-120.toml new file mode 100644 index 0000000..4ef9d65 --- /dev/null +++ b/content/ptcg/cards/scr-es-120.toml @@ -0,0 +1,13 @@ +name = "Tornadus" +kind = "pokemon" +type = "basic" +hp = 110 +element = "[C]" +attacks = [ + { cost = "[C][C]", name = "Puño con Nudillos", damage = 50 }, + { cost = "[C][C][C]", name = "Barrera Tempestad", damage = 100, effect = "Durante el próximo turno de tu rival, los ataques hacen 50 puntos de daño menos a este Pokémon (después de aplicar Debilidad y Resistencia)." }, +] +rulebox = "ex" +weakness = "[L]×2" +resistance = "[F]-30" +retreat = "[C]" diff --git a/content/ptcg/cards/scr-es-128.toml b/content/ptcg/cards/scr-es-128.toml new file mode 100644 index 0000000..f0f99bc --- /dev/null +++ b/content/ptcg/cards/scr-es-128.toml @@ -0,0 +1,14 @@ +name = "Terapagos ex" +kind = "pokemon" +type = "basic" +hp = 230 +element = "[C]" +tera = true +attacks = [ + { cost = "[C][C]", name = "Golpe Unísono", damage = "30×", effect = "Si sales en segundo lugar, no puedes usar este ataque durante tu primer turno. Este ataque hace 30 puntos de daño por cada uno de tus Pokémon en Banca." }, + { cost = "[G][W][L]", name = "Ópalo Corona", damage = 180, effect = "Durante el próximo turno de tu rival, se evita todo el daño infligido a este Pokémon por ataques de Pokémon no [C] Básicos." }, +] +rulebox = "ex" +weakness = "[F]×2" +resistance = "" +retreat = "[C][C]" diff --git a/content/ptcg/cards/scr-es-138.toml b/content/ptcg/cards/scr-es-138.toml new file mode 100644 index 0000000..cad4c85 --- /dev/null +++ b/content/ptcg/cards/scr-es-138.toml @@ -0,0 +1,4 @@ +name = "Fuco" +kind = "trainer" +type = "supporter" +effect = "Pon 2 cartas de tu mano en la parte inferior de tu baraja en el orden que quieras. Si pones 2 cartas en la parte inferior de tu baraja de esta manera, roba 4 cartas. (Si no puedes poner 2 cartas de tu mano en la parte inferior de tu baraja, no puedes usar esta carta)." diff --git a/content/ptcg/cards/scr-es-139.toml b/content/ptcg/cards/scr-es-139.toml new file mode 100644 index 0000000..bde966e --- /dev/null +++ b/content/ptcg/cards/scr-es-139.toml @@ -0,0 +1,3 @@ +name = "Aroa" +type = "supporter" +effect = "Pon las cartas de tu mano en tu baraja y barájalas todas. Después, roba 4 cartas. Si a tu rival le quedan 3 cartas de Premio o menos, roba 8 cartas en vez de 4." diff --git a/content/ptcg/cards/scr-es-141.toml b/content/ptcg/cards/scr-es-141.toml new file mode 100644 index 0000000..b776af1 --- /dev/null +++ b/content/ptcg/cards/scr-es-141.toml @@ -0,0 +1,4 @@ +name = "Baya Papaya" +kind = "trainer" +type = "tool" +effect = "Si el Pokémon al que está unida esta carta resulta dañado por un ataque de los Pokémon [P] de tu rival, ese ataque le hace 60 puntos de daño menos (después de aplicar Debilidad y Resistencia), y descartas esta carta." diff --git a/content/ptcg/cards/sfa-es-020.toml b/content/ptcg/cards/sfa-es-020.toml new file mode 100644 index 0000000..1ff51aa --- /dev/null +++ b/content/ptcg/cards/sfa-es-020.toml @@ -0,0 +1,12 @@ +name = "Dusknoir" +kind = "pokemon" +type = "stage2" +hp = 160 +element = "[P]" +ability = { name = "Estallido Maldito", effect = "Una vez durante tu turno, puedes poner 13 contadores de daño en uno de los Pokémon de tu rival. Si usas esta habilidad, este Pokémon queda Fuera de Combate" } +attacks = [ + { cost = "[P][P][C]", name = "Atadura Sombría", damage = 150, effect = "Durante el próximo turno de tu rival, el Pokémon Defensor no puede retirarse." }, +] +weakness = "[D]×2" +resistance = "[F]-30" +retreat = "[C][C][C]" diff --git a/content/ptcg/cards/sfa-es-038.toml b/content/ptcg/cards/sfa-es-038.toml new file mode 100644 index 0000000..07c1659 --- /dev/null +++ b/content/ptcg/cards/sfa-es-038.toml @@ -0,0 +1,13 @@ +name = "Fezandipiti ex" +kind = "pokemon" +type = "basic" +hp = 210 +element = "[D]" +ability = { name = "Giro de Guion", effect = "Una vez durante tu turno, si alguno de tus Pokémon quedó Fuera de Combate durante el último turno de tu rival, puedes robar 3 cartas. No puedes usar más de una habilidad Giro de Guion en cada turno." } +attacks = [ + { cost = "[C][C][C]", name = "Flecha Cruel", effect = "Este ataque hace 100 puntos de daño a uno de los Pokémon de tu rival. (No apliques Debilidad y Resistencia a los Pokémon en Banca)." }, +] +rulebox = "ex" +weakness = "[F]×2" +resistance = "" +retreat = "[C]" diff --git a/content/ptcg/cards/sfa-es-040.toml b/content/ptcg/cards/sfa-es-040.toml new file mode 100644 index 0000000..0bf09ee --- /dev/null +++ b/content/ptcg/cards/sfa-es-040.toml @@ -0,0 +1,10 @@ +name = "Genesect" +kind = "pokemon" +type = "basic" +hp = 110 +element = "[M]" +ability = { name = "Inhibidor AS", effect = "Si este Pokémon tiene una Herramienta Pokémon unida, tu rival no puede jugar ninguna carta de AS TÁCTICO de su mano." } +attacks = [{ cost = "[M][C][C]", name = "Explosión Magnética", damage = 100 }] +weakness = "[F]×2" +resistance = "[G]-30" +retreat = "[C]" diff --git a/content/ptcg/cards/sfa-es-061.toml b/content/ptcg/cards/sfa-es-061.toml new file mode 100644 index 0000000..f74d506 --- /dev/null +++ b/content/ptcg/cards/sfa-es-061.toml @@ -0,0 +1,4 @@ +name = "Camilla Nocturna" +kind = "trainer" +type = "item" +effect = "Pon 1 Pokémon o 1 carta de Energía Básica de tu pila de descartes en tu mano." diff --git a/content/ptcg/cards/sit-es-138.toml b/content/ptcg/cards/sit-es-138.toml new file mode 100644 index 0000000..08eaaee --- /dev/null +++ b/content/ptcg/cards/sit-es-138.toml @@ -0,0 +1,13 @@ +name = "Lugia V" +kind = "pokemon" +type = "basic" +hp = 220 +element = "[C]" +attacks = [ + { cost = "[C]", name = "Leer el Viento", effect = "Descarta 1 carta de tu mano. Si lo haces, roba 3 cartas." }, + { cost = "[C][C][C][C]", name = "Aerozambullida", damage = 130, effect = "Puedes descartar un Estadio en juego." }, +] +rulebox = "v" +weakness = "[L]×2" +resistance = "[F]-30" +retreat = "[C]" diff --git a/content/ptcg/cards/sit-es-139.toml b/content/ptcg/cards/sit-es-139.toml new file mode 100644 index 0000000..54862a4 --- /dev/null +++ b/content/ptcg/cards/sit-es-139.toml @@ -0,0 +1,13 @@ +name = "Lugia V-Astro" +kind = "pokemon" +type = "vstar" +hp = 280 +element = "[C]" +attacks = [ + { cost = "[C][C][C][C]", name = "Zambullida Tempestad", damage = 220, effect = "Puedes descartar un Estadio en juego." }, +] +vstar-power = { ability = { name = "Astro Invocación", effect = "Durante tu turno, puedes poner hasta 2 Pokémon [C] que no tengan un recuadro de regla en tu banca (Pokémon V, Pokémon GX, etc. tienen recuadro de regla), (no puedes usar más de 1 Poder V-Astro en una partida)." } } +rulebox = "v" +weakness = "[L]×2" +resistance = "[F]-30" +retreat = "[C][C]" diff --git a/content/ptcg/cards/sit-es-147.toml b/content/ptcg/cards/sit-es-147.toml new file mode 100644 index 0000000..8ca7916 --- /dev/null +++ b/content/ptcg/cards/sit-es-147.toml @@ -0,0 +1,10 @@ +name = "Archeops" +kind = "pokemon" +type = "stage2" +hp = 150 +element = "[C]" +ability = { name = "Turbo Primigenio", effect = "Una vez durante tu turno, puedes buscar en tu baraja hasta 2 cartas de Energía Especial y unirlas a 1 de tus Pokémon. Después, baraja las cartas de tu baraja." } +attacks = [{ cost = "[C][C][C]", name = "Ala Veloz", damage = 120 }] +weakness = "[L]×2" +resistance = "[F]-30" +retreat = "[C]" diff --git a/content/ptcg/cards/sit-es-153.toml b/content/ptcg/cards/sit-es-153.toml new file mode 100644 index 0000000..f634583 --- /dev/null +++ b/content/ptcg/cards/sit-es-153.toml @@ -0,0 +1,4 @@ +name = "Aroma Embriagador" +kind = "trainer" +type = "item" +effect = "Lanza 1 moneda. Si sale cara, busca en tu baraja 1 Pokémon Evolución, enséñalo y ponlo en tu mano. Si sale cruz, busca en tu baraja 1 Pokémon Básico, enséñalo y ponlo en tu mano. Después, baraja las cartas de tu baraja." diff --git a/content/ptcg/cards/sit-es-164.toml b/content/ptcg/cards/sit-es-164.toml new file mode 100644 index 0000000..bd5d981 --- /dev/null +++ b/content/ptcg/cards/sit-es-164.toml @@ -0,0 +1,4 @@ +name = "Serena" +kind = "trainer" +type = "supporter" +effect = "Elige 1 opción: • Descarta hasta 3 cartas de tu mano. (Debes descartar por lo menos 1 carta). Si lo haces, roba cartas hasta que tengas 5 cartas en tu mano. • Cambia 1 de los Pokémon V en Banca de tu rival por su Pokémon Activo." diff --git a/content/ptcg/cards/sit-es-169.toml b/content/ptcg/cards/sit-es-169.toml new file mode 100644 index 0000000..f5b4d8f --- /dev/null +++ b/content/ptcg/cards/sit-es-169.toml @@ -0,0 +1,4 @@ +name = "Energía Guardia V" +kind = "energy" +type = "special" +effect = "Mientras esta carta esté unida a un Pokémon, proporciona 1 Energía [C]. Los ataques de los Pokémon V de tu rival hacen 30 puntos de daño menos al Pokémon al que esté unida esta carta (después de aplicar Debilidad y Resistenca). Este efecto no puede aplicarse más de una vez de forma simultánea al mismo Pokémon." diff --git a/content/ptcg/cards/sve-es-011.toml b/content/ptcg/cards/sve-es-011.toml new file mode 100644 index 0000000..2dc6e54 --- /dev/null +++ b/content/ptcg/cards/sve-es-011.toml @@ -0,0 +1,3 @@ +name = "Energía [W] Básica" +kind = "energy" +type = "basic" diff --git a/content/ptcg/cards/sve-es-012.toml b/content/ptcg/cards/sve-es-012.toml new file mode 100644 index 0000000..e7caa8e --- /dev/null +++ b/content/ptcg/cards/sve-es-012.toml @@ -0,0 +1,3 @@ +name = "Energía [L] Básica" +kind = "energy" +type = "basic" diff --git a/content/ptcg/cards/sve-es-013.toml b/content/ptcg/cards/sve-es-013.toml new file mode 100644 index 0000000..012a775 --- /dev/null +++ b/content/ptcg/cards/sve-es-013.toml @@ -0,0 +1,3 @@ +name = "Energía [P] Básica" +kind = "energy" +type = "basic" diff --git a/content/ptcg/cards/svi-es-175.toml b/content/ptcg/cards/svi-es-175.toml new file mode 100644 index 0000000..23a0e53 --- /dev/null +++ b/content/ptcg/cards/svi-es-175.toml @@ -0,0 +1,4 @@ +name = "Cinio" +kind = "trainer" +type = "supporter" +effect = "Busca en tu baraja hasta 2 Pokémon Evolución, enséñalos y ponlos en tu mano. Después, baraja las cartas de tu baraja." diff --git a/content/ptcg/cards/svi-es-178.toml b/content/ptcg/cards/svi-es-178.toml new file mode 100644 index 0000000..b159293 --- /dev/null +++ b/content/ptcg/cards/svi-es-178.toml @@ -0,0 +1,4 @@ +name = "Ciudad Meseta" +kind = "trainer" +type = "stadium" +effect = "Una vez durante el turno de cada jugador, ese jugador puede lanzar 1 moneda. Si sale cara, ese jugador busca en su baraja 1 Pokémon, lo enseña y lo pone en su mano. Después, ese jugador baraja las cartas de su baraja." diff --git a/content/ptcg/cards/svi-es-181.toml b/content/ptcg/cards/svi-es-181.toml new file mode 100644 index 0000000..d0774db --- /dev/null +++ b/content/ptcg/cards/svi-es-181.toml @@ -0,0 +1,4 @@ +name = "Nido Ball" +kind = "trainer" +type = "item" +effect = "Busca en tu baraja 1 Pokémon Básico y ponlo en tu banca. Después, baraja las cartas de tu baraja." diff --git a/content/ptcg/cards/svi-es-183.toml b/content/ptcg/cards/svi-es-183.toml new file mode 100644 index 0000000..92b368b --- /dev/null +++ b/content/ptcg/cards/svi-es-183.toml @@ -0,0 +1,4 @@ +name = "Noa" +kind = "trainer" +type = "supporter" +effect = "Pon 1 de tus Pokémon Básicos y todas las cartas unidas a él en tu mano." diff --git a/content/ptcg/cards/svi-es-189.toml b/content/ptcg/cards/svi-es-189.toml new file mode 100644 index 0000000..ad83cbf --- /dev/null +++ b/content/ptcg/cards/svi-es-189.toml @@ -0,0 +1,4 @@ +name = "Investigación de Profesores" +kind = "trainer" +type = "supporter" +effect = "Descarta las cartas de tu mano y roba 7 cartas." diff --git a/content/ptcg/cards/svi-es-196.toml b/content/ptcg/cards/svi-es-196.toml new file mode 100644 index 0000000..9ab9160 --- /dev/null +++ b/content/ptcg/cards/svi-es-196.toml @@ -0,0 +1,4 @@ +name = "Ultra Ball" +kind = "trainer" +type = "item" +effect = "Puedes usar esta carta solo si descartas otras 2 cartas de tu mano. Busca en tu baraja 1 Pokémon, enséñalo y ponlo en tu mano. Después, baraja las cartas de tu baraja." diff --git a/content/ptcg/cards/svp-es-134.toml b/content/ptcg/cards/svp-es-134.toml new file mode 100644 index 0000000..1e6f922 --- /dev/null +++ b/content/ptcg/cards/svp-es-134.toml @@ -0,0 +1,12 @@ +name = "Crabominable" +kind = "pokemon" +type = "stage1" +hp = 160 +element = "[W]" +ability = { name = "Preparar la comida", effect = "Los ataques usados por este Pokémon cuestan [C] menos por cada carta de Fuco en tu pila de descartes." } +attacks = [ + { cost = "[W][C][C][C][C]", name = "Golpazo", damage = 250, effect = "Durante tu próximo turno, este Pokémon no puede usar Golpazo" }, +] +weakness = "[M]×2" +resistance = "" +retreat = "[C][C][C]" diff --git a/content/ptcg/cards/svp-es-135.toml b/content/ptcg/cards/svp-es-135.toml new file mode 100644 index 0000000..bc2da1f --- /dev/null +++ b/content/ptcg/cards/svp-es-135.toml @@ -0,0 +1,11 @@ +name = "Drifblim" +kind = "pokemon" +type = "stage1" +hp = 130 +element = "[P]" +attacks = [ + { cost = "[P]", name = "Que Explote Todo el Mundo", damage = "50×", effect = "Este ataque hace 50 puntos de daño por cada uno de tus Drifloon y Drifblim en juego. Este ataque también hace 30 puntos de daño a cada uno de tus Drifloon y Drifblim. (No apligues Debilidad y Resistencia a los Pokémon en Banco)." }, +] +weakness = "[D]×2" +resistance = "[F]-30" +retreat = "[C][C]" diff --git a/content/ptcg/cards/svp-es-136.toml b/content/ptcg/cards/svp-es-136.toml new file mode 100644 index 0000000..7fe1878 --- /dev/null +++ b/content/ptcg/cards/svp-es-136.toml @@ -0,0 +1,12 @@ +name = "Bouffalant" +kind = "pokemon" +type = "basic" +hp = 100 +element = "[C]" +ability = { name = "Muro Rizo", effect = "Mientras tengas por lo menos a otro Bouffalant en juego, los ataques de los Pokémon de tu rival hacen 60 puntos de daño menos a todos tus Pokémon [C] Básicos (después de aplicar Debilidad y Resistencia). El efecto de Muro Rizo no se acumula." } +attacks = [ + { cost = "[C][C][C]", name = "Poder Ilimitado", damage = 130, effect = "Durante tu próximo turno, este Pokémon no puede atacar." }, +] +weakness = "[F]×2" +resistance = "" +retreat = "[C][C]" diff --git a/content/ptcg/cards/tef-es-098.toml b/content/ptcg/cards/tef-es-098.toml new file mode 100644 index 0000000..c9e9205 --- /dev/null +++ b/content/ptcg/cards/tef-es-098.toml @@ -0,0 +1,12 @@ +name = "Pelarena" +kind = "pokemon" +type = "basic" +hp = 120 +element = "[P]" +attacks = [ + { cost = "[F]", name = "Estallido Magnético", damage = "20+", effect = "Si tienes 3 Energías o más en juego, este ataque hace 70 puntos de daño más. El daño de este ataque no se ve afectado por Debilidad." }, + { cost = "[F][C]", name = "Joya de Luz", damage = 60 }, +] +weakness = "[G]×2" +resistance = "" +retreat = "[C][C]" diff --git a/content/ptcg/cards/tef-es-123.toml b/content/ptcg/cards/tef-es-123.toml new file mode 100644 index 0000000..3ae8123 --- /dev/null +++ b/content/ptcg/cards/tef-es-123.toml @@ -0,0 +1,13 @@ +name = "Electrofuria ex" +kind = "pokemon" +type = "basic" +hp = 240 +element = "[N]" +attacks = [ + { cost = "[C]", name = "Rugido Explosivo", effect = "Descarta las cartas de tu mano y roba 6 cartas." }, + { cost = "[L][F]", name = "Bramido Atronador", damage = "70×", effect = "Puedes descartar cualquier cantidad de Energías Básicas de tus Pokémon. Este ataque hace 70 puntos de daño por cada carta que hayas descartado de esta manera." }, +] +rulebox = "ex" +weakness = "" +resistance = "" +retreat = "[C][C][C]" diff --git a/content/ptcg/cards/tef-es-136.toml b/content/ptcg/cards/tef-es-136.toml new file mode 100644 index 0000000..3e81f44 --- /dev/null +++ b/content/ptcg/cards/tef-es-136.toml @@ -0,0 +1,12 @@ +name = "Minccino" +kind = "pokemon" +type = "basic" +hp = 70 +element = "[C]" +attacks = [ + { cost = "[C]", name = "Toque", damage = 10 }, + { cost = "[C][C]", name = "Purgar", effect = "Descarta hasta 2 Herramientas Pokémon de los Pokémon de tu rival." }, +] +weakness = "[F]×2" +resistance = "" +retreat = "[C]" diff --git a/content/ptcg/cards/tef-es-137.toml b/content/ptcg/cards/tef-es-137.toml new file mode 100644 index 0000000..05cb5d4 --- /dev/null +++ b/content/ptcg/cards/tef-es-137.toml @@ -0,0 +1,12 @@ +name = "Cinccino" +kind = "pokemon" +type = "stage1" +hp = 110 +element = "[C]" +attacks = [ + { cost = "[C]", name = "Bofetada Gentil", damage = 30 }, + { cost = "[C][C]", name = "Giro Especial", damage = "70×", effect = "Este ataque hace 70 puntos de daño por cada carta de Energía Especial unida a este Pokémon." }, +] +weakness = "[F]×2" +resistance = "" +retreat = "[C]" diff --git a/content/ptcg/cards/tef-es-161.toml b/content/ptcg/cards/tef-es-161.toml new file mode 100644 index 0000000..85ae2eb --- /dev/null +++ b/content/ptcg/cards/tef-es-161.toml @@ -0,0 +1,4 @@ +name = "Energía Neblina" +kind = "energy" +type = "special" +effect = "Mientras esta carta esté unida a un Pokémon, proporciona 1 Energía [C]. Se evitan todos los efectos de los ataques usados por los Pokémon de tu rival e infligidos al Pokémon al que esté unida esta carta. (No se eliminan los efectos ya existentes. El daño no es un efecto)." diff --git a/content/ptcg/cards/twm-es-025.toml b/content/ptcg/cards/twm-es-025.toml new file mode 100644 index 0000000..a1eb11a --- /dev/null +++ b/content/ptcg/cards/twm-es-025.toml @@ -0,0 +1,14 @@ +name = "Ogerpon Máscara Turquesa ex" +kind = "pokemon" +type = "basic" +hp = 210 +element = "[G]" +tera = true +ability = { name = "Danza Turquesa", effect = "Una vez durante tu turno, puedes unir 1 carta de Energía [G] Básica de tu mano a este Pokémon. Si has unido Energía a un Pokémon de esta manera, roba 1 carta." } +attacks = [ + { cost = "[G][G][G]", name = "Lluvia de Hojas", damage = "30+", effect = "Este ataque hace 30 puntos de daño más por cada Energía unida a ambos Pokémon Activos." }, +] +rulebox = "ex" +weakness = "[R]×2" +resistance = "" +retreat = "[C]" diff --git a/content/ptcg/cards/twm-es-064.toml b/content/ptcg/cards/twm-es-064.toml new file mode 100644 index 0000000..32ed4b1 --- /dev/null +++ b/content/ptcg/cards/twm-es-064.toml @@ -0,0 +1,14 @@ +name = "Ogerpon Máscara Fuente ex" +kind = "pokemon" +type = "basic" +hp = 210 +element = "[W]" +tera = true +attacks = [ + { cost = "[C]", name = "Sollozar", damage = 20, effect = "Durante el próximo turno de tu rival, el Pokémon Defensor no puede retirarse." }, + { cost = "[W][C][C]", name = "Bomba Torrencial", damage = 20, effect = "Puedes poner 3 Energías unidas a este Pokémon en tu baraja y barajar todas las cartas. Si lo haces, este ataque también hace 120 puntos de daño a uno de los Pokémon en Banca de tu rival. (No apliques Debilidad y Resistencia a los Pokémon en Banca).." }, +] +rulebox = "ex" +weakness = "[L]×2" +resistance = "" +retreat = "[C]" diff --git a/content/ptcg/cards/twm-es-095.toml b/content/ptcg/cards/twm-es-095.toml new file mode 100644 index 0000000..68da07e --- /dev/null +++ b/content/ptcg/cards/twm-es-095.toml @@ -0,0 +1,12 @@ +name = "Munkidori" +kind = "pokemon" +type = "basic" +hp = 110 +element = "[P]" +ability = { name = "Adrenalina Mental", effect = "Una vez durante tu turno, si este Pokémon tiene alguna Energía [D] unida, puedes mover hasta 3 contadores de daño de uno de tus Pokémon a uno de los Pokémon de tu rival." } +attacks = [ + { cost = "[P][C]", name = "Fusión Mental", damage = 60, effect = "El Pokémon Activo de tu rival pasa a estar Confundido.." }, +] +weakness = "[D]×2" +resistance = "[F]-30" +retreat = "[C]" diff --git a/content/ptcg/cards/twm-es-130.toml b/content/ptcg/cards/twm-es-130.toml new file mode 100644 index 0000000..aa0b449 --- /dev/null +++ b/content/ptcg/cards/twm-es-130.toml @@ -0,0 +1,14 @@ +name = "Dragapult ex" +kind = "pokemon" +type = "stage2" +hp = 320 +element = "[N]" +tera = true +attacks = [ + { cost = "[C]", name = "Turbocabezazo", damage = 70 }, + { cost = "[R][P]", name = "Picado Fantasma", damage = 200, effect = "Pon 6 contadores de daño en los Pokémon en Banca de tu rival de la manera que desees." }, +] +rulebox = "ex" +weakness = "" +resistance = "" +retreat = "[C]" diff --git a/content/ptcg/cards/twm-es-134.toml b/content/ptcg/cards/twm-es-134.toml new file mode 100644 index 0000000..b6565d8 --- /dev/null +++ b/content/ptcg/cards/twm-es-134.toml @@ -0,0 +1,13 @@ +name = "Blissey ex" +kind = "pokemon" +type = "stage1" +hp = 300 +element = "[C]" +ability = { name = "Cambio Feliz", effect = "Una vez durante tu turno, puedes mover 1 Energía Básica de uno de tus Pokémon a otro de tus Pokémon." } +attacks = [ + { cost = "[C][C][C]", name = "Retribución", damage = 180, effect = "Puedes robar cartas hasta que tengas 6 cartas en tu mano." }, +] +rulebox = "ex" +weakness = "[F]×2" +resistance = "" +retreat = "[C][C][C][C]" diff --git a/content/ptcg/cards/twm-es-141.toml b/content/ptcg/cards/twm-es-141.toml new file mode 100644 index 0000000..e5d30d4 --- /dev/null +++ b/content/ptcg/cards/twm-es-141.toml @@ -0,0 +1,13 @@ +name = "Ursaluna Luna Carmesí ex" +kind = "pokemon" +type = "basic" +hp = 260 +element = "[C]" +ability = { name = "Habilidad Demostrada", effect = "El ataque Luna Roja usado por este Pokémon cuesta [C] menos por cada carta de Premio que haya cogido tu rival." } +attacks = [ + { cost = "[C][C][C][C][C]", name = "Luna Roja", damage = 240, effect = "Durante tu próximo turno, este Pokémon no puede atacar." }, +] +rulebox = "ex" +weakness = "[F]×2" +resistance = "" +retreat = "[C][C][C]" diff --git a/content/ptcg/cards/twm-es-145.toml b/content/ptcg/cards/twm-es-145.toml new file mode 100644 index 0000000..faf3d8b --- /dev/null +++ b/content/ptcg/cards/twm-es-145.toml @@ -0,0 +1,4 @@ +name = "Corin" +kind = "trainer" +type = "supporter" +effect = "Si sales en primer lugar, puedes usar esta carta durante tu primer turno. Descarta las cartas de tu mano y roba 5 cartas." diff --git a/content/ptcg/cards/twm-es-153.toml b/content/ptcg/cards/twm-es-153.toml new file mode 100644 index 0000000..b1ecad9 --- /dev/null +++ b/content/ptcg/cards/twm-es-153.toml @@ -0,0 +1,4 @@ +name = "Torre de Interferencia" +kind = "trainer" +type = "stadium" +effect = "Las Herramientas Pokémon unidas a cada Pokémon (tanto tuyos como de tu rival) no tienen ningún efecto." diff --git a/content/ptcg/cards/twm-es-155.toml b/content/ptcg/cards/twm-es-155.toml new file mode 100644 index 0000000..6a02b25 --- /dev/null +++ b/content/ptcg/cards/twm-es-155.toml @@ -0,0 +1,4 @@ +name = "Ayuda de Nereida" +kind = "trainer" +type = "supporter" +effect = "Pon, en cualquier combinación, hasta 3 cartas de Energía Básica y Pokémon que no tengan un recuadro de regla de tu pila de descartes en tu mano (Pokémon ex, Pokémon V, etc. tienen recuadros de regla)." diff --git a/content/ptcg/cards/twm-es-167.toml b/content/ptcg/cards/twm-es-167.toml new file mode 100644 index 0000000..a96db4a --- /dev/null +++ b/content/ptcg/cards/twm-es-167.toml @@ -0,0 +1,5 @@ +name = "Energía Legado" +kind = "energy" +type = "special" +effect = "Mientras esta carta esté unida a un Pokémon, proporciona cualquier tipo de Energía, pero proporciona solo una energía a la vez. Si el Pokémon al que está unida esta carta queda Fuera de Combate por el daño de un ataque de los Pokémon de tu rival, ese jugador coge 1 carta de Premio menos. Este efecto de tu Energía Legado no puede aplicarse más de una vez por partida." +acespec = true diff --git a/content/template.md b/content/template.md new file mode 100644 index 0000000..22cf522 --- /dev/null +++ b/content/template.md @@ -0,0 +1,18 @@ ++++ +title = "Plantilla" +date = 2019-04-11 +draft = true +[taxonomies] +t = ["Probabilidades", "Monedas"] +[extra] +author = "Felipe" +image = "img/placeholder.png" +image_webp = "img/placeholder.webp" +alt = "" ++++ + +Probando escribir matemáticas: $P(cara) = \frac{1}{2}$ + +Probando insertar una carta: + +{{ ptcg_card(id="scr-es-128") }} diff --git a/static/img/placeholder.png b/static/img/placeholder.png new file mode 100644 index 0000000..dc5807d Binary files /dev/null and b/static/img/placeholder.png differ diff --git a/static/img/placeholder.webp b/static/img/placeholder.webp new file mode 100644 index 0000000..0c717ee Binary files /dev/null and b/static/img/placeholder.webp differ diff --git a/static/ptcg/C.svg b/static/ptcg/C.svg new file mode 100644 index 0000000..4a5fa1b --- /dev/null +++ b/static/ptcg/C.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/static/ptcg/D.svg b/static/ptcg/D.svg new file mode 100644 index 0000000..644c92f --- /dev/null +++ b/static/ptcg/D.svg @@ -0,0 +1 @@ + diff --git a/static/ptcg/F.svg b/static/ptcg/F.svg new file mode 100644 index 0000000..50d6af5 --- /dev/null +++ b/static/ptcg/F.svg @@ -0,0 +1 @@ + diff --git a/static/ptcg/G.svg b/static/ptcg/G.svg new file mode 100644 index 0000000..5dde63a --- /dev/null +++ b/static/ptcg/G.svg @@ -0,0 +1 @@ + diff --git a/static/ptcg/L.svg b/static/ptcg/L.svg new file mode 100644 index 0000000..55a0d86 --- /dev/null +++ b/static/ptcg/L.svg @@ -0,0 +1 @@ + diff --git a/static/ptcg/M.svg b/static/ptcg/M.svg new file mode 100644 index 0000000..3e5747e --- /dev/null +++ b/static/ptcg/M.svg @@ -0,0 +1 @@ + diff --git a/static/ptcg/N.svg b/static/ptcg/N.svg new file mode 100644 index 0000000..6a9ce40 --- /dev/null +++ b/static/ptcg/N.svg @@ -0,0 +1 @@ + diff --git a/static/ptcg/P.svg b/static/ptcg/P.svg new file mode 100644 index 0000000..435a9d0 --- /dev/null +++ b/static/ptcg/P.svg @@ -0,0 +1 @@ + diff --git a/static/ptcg/R.svg b/static/ptcg/R.svg new file mode 100644 index 0000000..0bdd821 --- /dev/null +++ b/static/ptcg/R.svg @@ -0,0 +1 @@ + diff --git a/static/ptcg/W.svg b/static/ptcg/W.svg new file mode 100644 index 0000000..85bbff1 --- /dev/null +++ b/static/ptcg/W.svg @@ -0,0 +1 @@ + diff --git a/static/ptcg/asr-es-050.png b/static/ptcg/asr-es-050.png new file mode 100644 index 0000000..35847fa Binary files /dev/null and b/static/ptcg/asr-es-050.png differ diff --git a/static/ptcg/asr-es-050.webp b/static/ptcg/asr-es-050.webp new file mode 100644 index 0000000..31938c3 Binary files /dev/null and b/static/ptcg/asr-es-050.webp differ diff --git a/static/ptcg/asr-es-134.png b/static/ptcg/asr-es-134.png new file mode 100644 index 0000000..e992b7e Binary files /dev/null and b/static/ptcg/asr-es-134.png differ diff --git a/static/ptcg/asr-es-134.webp b/static/ptcg/asr-es-134.webp new file mode 100644 index 0000000..ea3dba3 Binary files /dev/null and b/static/ptcg/asr-es-134.webp differ diff --git a/static/ptcg/asr-es-155.png b/static/ptcg/asr-es-155.png new file mode 100644 index 0000000..9df861e Binary files /dev/null and b/static/ptcg/asr-es-155.png differ diff --git a/static/ptcg/asr-es-155.webp b/static/ptcg/asr-es-155.webp new file mode 100644 index 0000000..57869dc Binary files /dev/null and b/static/ptcg/asr-es-155.webp differ diff --git a/static/ptcg/brs-es-040.png b/static/ptcg/brs-es-040.png new file mode 100644 index 0000000..2d2ae64 Binary files /dev/null and b/static/ptcg/brs-es-040.png differ diff --git a/static/ptcg/brs-es-040.webp b/static/ptcg/brs-es-040.webp new file mode 100644 index 0000000..d871d95 Binary files /dev/null and b/static/ptcg/brs-es-040.webp differ diff --git a/static/ptcg/brs-es-041.png b/static/ptcg/brs-es-041.png new file mode 100644 index 0000000..bbce49f Binary files /dev/null and b/static/ptcg/brs-es-041.png differ diff --git a/static/ptcg/brs-es-041.webp b/static/ptcg/brs-es-041.webp new file mode 100644 index 0000000..143e2d7 Binary files /dev/null and b/static/ptcg/brs-es-041.webp differ diff --git a/static/ptcg/brs-es-048.png b/static/ptcg/brs-es-048.png new file mode 100644 index 0000000..4d1084e Binary files /dev/null and b/static/ptcg/brs-es-048.png differ diff --git a/static/ptcg/brs-es-048.webp b/static/ptcg/brs-es-048.webp new file mode 100644 index 0000000..4285250 Binary files /dev/null and b/static/ptcg/brs-es-048.webp differ diff --git a/static/ptcg/brs-es-124.png b/static/ptcg/brs-es-124.png new file mode 100644 index 0000000..932b39d Binary files /dev/null and b/static/ptcg/brs-es-124.png differ diff --git a/static/ptcg/brs-es-124.webp b/static/ptcg/brs-es-124.webp new file mode 100644 index 0000000..168fc7d Binary files /dev/null and b/static/ptcg/brs-es-124.webp differ diff --git a/static/ptcg/brs-es-137.png b/static/ptcg/brs-es-137.png new file mode 100644 index 0000000..6d701d3 Binary files /dev/null and b/static/ptcg/brs-es-137.png differ diff --git a/static/ptcg/brs-es-137.webp b/static/ptcg/brs-es-137.webp new file mode 100644 index 0000000..df38e17 Binary files /dev/null and b/static/ptcg/brs-es-137.webp differ diff --git a/static/ptcg/brs-es-151.png b/static/ptcg/brs-es-151.png new file mode 100644 index 0000000..bb94342 Binary files /dev/null and b/static/ptcg/brs-es-151.png differ diff --git a/static/ptcg/brs-es-151.webp b/static/ptcg/brs-es-151.webp new file mode 100644 index 0000000..31cd4d7 Binary files /dev/null and b/static/ptcg/brs-es-151.webp differ diff --git a/static/ptcg/crz-es-020.png b/static/ptcg/crz-es-020.png new file mode 100644 index 0000000..9bb7f6b Binary files /dev/null and b/static/ptcg/crz-es-020.png differ diff --git a/static/ptcg/crz-es-020.webp b/static/ptcg/crz-es-020.webp new file mode 100644 index 0000000..82d4a43 Binary files /dev/null and b/static/ptcg/crz-es-020.webp differ diff --git a/static/ptcg/lor-es-058.png b/static/ptcg/lor-es-058.png new file mode 100644 index 0000000..801c9b6 Binary files /dev/null and b/static/ptcg/lor-es-058.png differ diff --git a/static/ptcg/lor-es-058.webp b/static/ptcg/lor-es-058.webp new file mode 100644 index 0000000..900f5a9 Binary files /dev/null and b/static/ptcg/lor-es-058.webp differ diff --git a/static/ptcg/lor-es-167.png b/static/ptcg/lor-es-167.png new file mode 100644 index 0000000..85a788b Binary files /dev/null and b/static/ptcg/lor-es-167.png differ diff --git a/static/ptcg/lor-es-167.webp b/static/ptcg/lor-es-167.webp new file mode 100644 index 0000000..85b56ad Binary files /dev/null and b/static/ptcg/lor-es-167.webp differ diff --git a/static/ptcg/lor-es-171.png b/static/ptcg/lor-es-171.png new file mode 100644 index 0000000..4c651d6 Binary files /dev/null and b/static/ptcg/lor-es-171.png differ diff --git a/static/ptcg/lor-es-171.webp b/static/ptcg/lor-es-171.webp new file mode 100644 index 0000000..f4abcb2 Binary files /dev/null and b/static/ptcg/lor-es-171.webp differ diff --git a/static/ptcg/obf-es-125.png b/static/ptcg/obf-es-125.png new file mode 100644 index 0000000..78395a8 Binary files /dev/null and b/static/ptcg/obf-es-125.png differ diff --git a/static/ptcg/obf-es-125.webp b/static/ptcg/obf-es-125.webp new file mode 100644 index 0000000..520cd12 Binary files /dev/null and b/static/ptcg/obf-es-125.webp differ diff --git a/static/ptcg/obf-es-164.png b/static/ptcg/obf-es-164.png new file mode 100644 index 0000000..b890d59 Binary files /dev/null and b/static/ptcg/obf-es-164.png differ diff --git a/static/ptcg/obf-es-164.webp b/static/ptcg/obf-es-164.webp new file mode 100644 index 0000000..5a00c50 Binary files /dev/null and b/static/ptcg/obf-es-164.webp differ diff --git a/static/ptcg/paf-es-015.png b/static/ptcg/paf-es-015.png new file mode 100644 index 0000000..67246ee Binary files /dev/null and b/static/ptcg/paf-es-015.png differ diff --git a/static/ptcg/paf-es-015.webp b/static/ptcg/paf-es-015.webp new file mode 100644 index 0000000..3606a2b Binary files /dev/null and b/static/ptcg/paf-es-015.webp differ diff --git a/static/ptcg/paf-es-081.png b/static/ptcg/paf-es-081.png new file mode 100644 index 0000000..2c4c3fd Binary files /dev/null and b/static/ptcg/paf-es-081.png differ diff --git a/static/ptcg/paf-es-081.webp b/static/ptcg/paf-es-081.webp new file mode 100644 index 0000000..eb6bf0d Binary files /dev/null and b/static/ptcg/paf-es-081.webp differ diff --git a/static/ptcg/pal-es-169.png b/static/ptcg/pal-es-169.png new file mode 100644 index 0000000..aa0d8fa Binary files /dev/null and b/static/ptcg/pal-es-169.png differ diff --git a/static/ptcg/pal-es-169.webp b/static/ptcg/pal-es-169.webp new file mode 100644 index 0000000..198a99e Binary files /dev/null and b/static/ptcg/pal-es-169.webp differ diff --git a/static/ptcg/pal-es-172.png b/static/ptcg/pal-es-172.png new file mode 100644 index 0000000..d791c02 Binary files /dev/null and b/static/ptcg/pal-es-172.png differ diff --git a/static/ptcg/pal-es-172.webp b/static/ptcg/pal-es-172.webp new file mode 100644 index 0000000..cb0e6dc Binary files /dev/null and b/static/ptcg/pal-es-172.webp differ diff --git a/static/ptcg/pal-es-173.png b/static/ptcg/pal-es-173.png new file mode 100644 index 0000000..df13979 Binary files /dev/null and b/static/ptcg/pal-es-173.png differ diff --git a/static/ptcg/pal-es-173.webp b/static/ptcg/pal-es-173.webp new file mode 100644 index 0000000..1bd95ca Binary files /dev/null and b/static/ptcg/pal-es-173.webp differ diff --git a/static/ptcg/pal-es-182.png b/static/ptcg/pal-es-182.png new file mode 100644 index 0000000..55ad5a3 Binary files /dev/null and b/static/ptcg/pal-es-182.png differ diff --git a/static/ptcg/pal-es-182.webp b/static/ptcg/pal-es-182.webp new file mode 100644 index 0000000..03062e9 Binary files /dev/null and b/static/ptcg/pal-es-182.webp differ diff --git a/static/ptcg/pal-es-183.png b/static/ptcg/pal-es-183.png new file mode 100644 index 0000000..43fd362 Binary files /dev/null and b/static/ptcg/pal-es-183.png differ diff --git a/static/ptcg/pal-es-183.webp b/static/ptcg/pal-es-183.webp new file mode 100644 index 0000000..bc649f8 Binary files /dev/null and b/static/ptcg/pal-es-183.webp differ diff --git a/static/ptcg/pal-es-185.png b/static/ptcg/pal-es-185.png new file mode 100644 index 0000000..58bea7c Binary files /dev/null and b/static/ptcg/pal-es-185.png differ diff --git a/static/ptcg/pal-es-185.webp b/static/ptcg/pal-es-185.webp new file mode 100644 index 0000000..bc0aac1 Binary files /dev/null and b/static/ptcg/pal-es-185.webp differ diff --git a/static/ptcg/pal-es-190.png b/static/ptcg/pal-es-190.png new file mode 100644 index 0000000..47de9b5 Binary files /dev/null and b/static/ptcg/pal-es-190.png differ diff --git a/static/ptcg/pal-es-190.webp b/static/ptcg/pal-es-190.webp new file mode 100644 index 0000000..3c390dd Binary files /dev/null and b/static/ptcg/pal-es-190.webp differ diff --git a/static/ptcg/pal-es-192.png b/static/ptcg/pal-es-192.png new file mode 100644 index 0000000..94395db Binary files /dev/null and b/static/ptcg/pal-es-192.png differ diff --git a/static/ptcg/pal-es-192.webp b/static/ptcg/pal-es-192.webp new file mode 100644 index 0000000..398dfba Binary files /dev/null and b/static/ptcg/pal-es-192.webp differ diff --git a/static/ptcg/par-es-038.png b/static/ptcg/par-es-038.png new file mode 100644 index 0000000..94013ee Binary files /dev/null and b/static/ptcg/par-es-038.png differ diff --git a/static/ptcg/par-es-038.webp b/static/ptcg/par-es-038.webp new file mode 100644 index 0000000..724428e Binary files /dev/null and b/static/ptcg/par-es-038.webp differ diff --git a/static/ptcg/par-es-056.png b/static/ptcg/par-es-056.png new file mode 100644 index 0000000..dc5ceb8 Binary files /dev/null and b/static/ptcg/par-es-056.png differ diff --git a/static/ptcg/par-es-056.webp b/static/ptcg/par-es-056.webp new file mode 100644 index 0000000..b24c1b6 Binary files /dev/null and b/static/ptcg/par-es-056.webp differ diff --git a/static/ptcg/par-es-070.png b/static/ptcg/par-es-070.png new file mode 100644 index 0000000..2d71e25 Binary files /dev/null and b/static/ptcg/par-es-070.png differ diff --git a/static/ptcg/par-es-070.webp b/static/ptcg/par-es-070.webp new file mode 100644 index 0000000..693b53a Binary files /dev/null and b/static/ptcg/par-es-070.webp differ diff --git a/static/ptcg/par-es-107.png b/static/ptcg/par-es-107.png new file mode 100644 index 0000000..1eae922 Binary files /dev/null and b/static/ptcg/par-es-107.png differ diff --git a/static/ptcg/par-es-107.webp b/static/ptcg/par-es-107.webp new file mode 100644 index 0000000..9fe36d1 Binary files /dev/null and b/static/ptcg/par-es-107.webp differ diff --git a/static/ptcg/par-es-160.png b/static/ptcg/par-es-160.png new file mode 100644 index 0000000..d2c77f2 Binary files /dev/null and b/static/ptcg/par-es-160.png differ diff --git a/static/ptcg/par-es-160.webp b/static/ptcg/par-es-160.webp new file mode 100644 index 0000000..9944e02 Binary files /dev/null and b/static/ptcg/par-es-160.webp differ diff --git a/static/ptcg/scr-es-045.png b/static/ptcg/scr-es-045.png new file mode 100644 index 0000000..bd4bd29 Binary files /dev/null and b/static/ptcg/scr-es-045.png differ diff --git a/static/ptcg/scr-es-045.webp b/static/ptcg/scr-es-045.webp new file mode 100644 index 0000000..1842055 Binary files /dev/null and b/static/ptcg/scr-es-045.webp differ diff --git a/static/ptcg/scr-es-051.png b/static/ptcg/scr-es-051.png new file mode 100644 index 0000000..4686e34 Binary files /dev/null and b/static/ptcg/scr-es-051.png differ diff --git a/static/ptcg/scr-es-051.webp b/static/ptcg/scr-es-051.webp new file mode 100644 index 0000000..1dd1622 Binary files /dev/null and b/static/ptcg/scr-es-051.webp differ diff --git a/static/ptcg/scr-es-060.png b/static/ptcg/scr-es-060.png new file mode 100644 index 0000000..805050d Binary files /dev/null and b/static/ptcg/scr-es-060.png differ diff --git a/static/ptcg/scr-es-060.webp b/static/ptcg/scr-es-060.webp new file mode 100644 index 0000000..b4f97ad Binary files /dev/null and b/static/ptcg/scr-es-060.webp differ diff --git a/static/ptcg/scr-es-063.png b/static/ptcg/scr-es-063.png new file mode 100644 index 0000000..696eab6 Binary files /dev/null and b/static/ptcg/scr-es-063.png differ diff --git a/static/ptcg/scr-es-063.webp b/static/ptcg/scr-es-063.webp new file mode 100644 index 0000000..d0f1283 Binary files /dev/null and b/static/ptcg/scr-es-063.webp differ diff --git a/static/ptcg/scr-es-086.png b/static/ptcg/scr-es-086.png new file mode 100644 index 0000000..0a9b06d Binary files /dev/null and b/static/ptcg/scr-es-086.png differ diff --git a/static/ptcg/scr-es-086.webp b/static/ptcg/scr-es-086.webp new file mode 100644 index 0000000..f4c738b Binary files /dev/null and b/static/ptcg/scr-es-086.webp differ diff --git a/static/ptcg/scr-es-087.png b/static/ptcg/scr-es-087.png new file mode 100644 index 0000000..6585e47 Binary files /dev/null and b/static/ptcg/scr-es-087.png differ diff --git a/static/ptcg/scr-es-087.webp b/static/ptcg/scr-es-087.webp new file mode 100644 index 0000000..7d7104a Binary files /dev/null and b/static/ptcg/scr-es-087.webp differ diff --git a/static/ptcg/scr-es-115.png b/static/ptcg/scr-es-115.png new file mode 100644 index 0000000..aaa422c Binary files /dev/null and b/static/ptcg/scr-es-115.png differ diff --git a/static/ptcg/scr-es-115.webp b/static/ptcg/scr-es-115.webp new file mode 100644 index 0000000..ada00ed Binary files /dev/null and b/static/ptcg/scr-es-115.webp differ diff --git a/static/ptcg/scr-es-118.png b/static/ptcg/scr-es-118.png new file mode 100644 index 0000000..18ff190 Binary files /dev/null and b/static/ptcg/scr-es-118.png differ diff --git a/static/ptcg/scr-es-118.webp b/static/ptcg/scr-es-118.webp new file mode 100644 index 0000000..37c1667 Binary files /dev/null and b/static/ptcg/scr-es-118.webp differ diff --git a/static/ptcg/scr-es-120.png b/static/ptcg/scr-es-120.png new file mode 100644 index 0000000..386df91 Binary files /dev/null and b/static/ptcg/scr-es-120.png differ diff --git a/static/ptcg/scr-es-120.webp b/static/ptcg/scr-es-120.webp new file mode 100644 index 0000000..e37464f Binary files /dev/null and b/static/ptcg/scr-es-120.webp differ diff --git a/static/ptcg/scr-es-128.png b/static/ptcg/scr-es-128.png new file mode 100644 index 0000000..db80f9b Binary files /dev/null and b/static/ptcg/scr-es-128.png differ diff --git a/static/ptcg/scr-es-128.webp b/static/ptcg/scr-es-128.webp new file mode 100644 index 0000000..4517249 Binary files /dev/null and b/static/ptcg/scr-es-128.webp differ diff --git a/static/ptcg/scr-es-138.png b/static/ptcg/scr-es-138.png new file mode 100644 index 0000000..06393e0 Binary files /dev/null and b/static/ptcg/scr-es-138.png differ diff --git a/static/ptcg/scr-es-138.webp b/static/ptcg/scr-es-138.webp new file mode 100644 index 0000000..1561926 Binary files /dev/null and b/static/ptcg/scr-es-138.webp differ diff --git a/static/ptcg/scr-es-139.png b/static/ptcg/scr-es-139.png new file mode 100644 index 0000000..ad96c69 Binary files /dev/null and b/static/ptcg/scr-es-139.png differ diff --git a/static/ptcg/scr-es-139.webp b/static/ptcg/scr-es-139.webp new file mode 100644 index 0000000..31d63f6 Binary files /dev/null and b/static/ptcg/scr-es-139.webp differ diff --git a/static/ptcg/scr-es-141.png b/static/ptcg/scr-es-141.png new file mode 100644 index 0000000..1bd8c90 Binary files /dev/null and b/static/ptcg/scr-es-141.png differ diff --git a/static/ptcg/scr-es-141.webp b/static/ptcg/scr-es-141.webp new file mode 100644 index 0000000..3ea4626 Binary files /dev/null and b/static/ptcg/scr-es-141.webp differ diff --git a/static/ptcg/sfa-es-020.png b/static/ptcg/sfa-es-020.png new file mode 100644 index 0000000..3771401 Binary files /dev/null and b/static/ptcg/sfa-es-020.png differ diff --git a/static/ptcg/sfa-es-020.webp b/static/ptcg/sfa-es-020.webp new file mode 100644 index 0000000..2c59176 Binary files /dev/null and b/static/ptcg/sfa-es-020.webp differ diff --git a/static/ptcg/sfa-es-038.png b/static/ptcg/sfa-es-038.png new file mode 100644 index 0000000..532f4d1 Binary files /dev/null and b/static/ptcg/sfa-es-038.png differ diff --git a/static/ptcg/sfa-es-038.webp b/static/ptcg/sfa-es-038.webp new file mode 100644 index 0000000..e6c59c1 Binary files /dev/null and b/static/ptcg/sfa-es-038.webp differ diff --git a/static/ptcg/sfa-es-040.png b/static/ptcg/sfa-es-040.png new file mode 100644 index 0000000..49175a1 Binary files /dev/null and b/static/ptcg/sfa-es-040.png differ diff --git a/static/ptcg/sfa-es-040.webp b/static/ptcg/sfa-es-040.webp new file mode 100644 index 0000000..c86a077 Binary files /dev/null and b/static/ptcg/sfa-es-040.webp differ diff --git a/static/ptcg/sfa-es-061.png b/static/ptcg/sfa-es-061.png new file mode 100644 index 0000000..951f5f8 Binary files /dev/null and b/static/ptcg/sfa-es-061.png differ diff --git a/static/ptcg/sfa-es-061.webp b/static/ptcg/sfa-es-061.webp new file mode 100644 index 0000000..9dce52e Binary files /dev/null and b/static/ptcg/sfa-es-061.webp differ diff --git a/static/ptcg/sit-es-138.png b/static/ptcg/sit-es-138.png new file mode 100644 index 0000000..b09b827 Binary files /dev/null and b/static/ptcg/sit-es-138.png differ diff --git a/static/ptcg/sit-es-138.webp b/static/ptcg/sit-es-138.webp new file mode 100644 index 0000000..5d3bc7d Binary files /dev/null and b/static/ptcg/sit-es-138.webp differ diff --git a/static/ptcg/sit-es-139.png b/static/ptcg/sit-es-139.png new file mode 100644 index 0000000..1b7bc6e Binary files /dev/null and b/static/ptcg/sit-es-139.png differ diff --git a/static/ptcg/sit-es-139.webp b/static/ptcg/sit-es-139.webp new file mode 100644 index 0000000..5fc1b61 Binary files /dev/null and b/static/ptcg/sit-es-139.webp differ diff --git a/static/ptcg/sit-es-147.png b/static/ptcg/sit-es-147.png new file mode 100644 index 0000000..11c08e4 Binary files /dev/null and b/static/ptcg/sit-es-147.png differ diff --git a/static/ptcg/sit-es-147.webp b/static/ptcg/sit-es-147.webp new file mode 100644 index 0000000..e3b2e68 Binary files /dev/null and b/static/ptcg/sit-es-147.webp differ diff --git a/static/ptcg/sit-es-153.png b/static/ptcg/sit-es-153.png new file mode 100644 index 0000000..4929895 Binary files /dev/null and b/static/ptcg/sit-es-153.png differ diff --git a/static/ptcg/sit-es-153.webp b/static/ptcg/sit-es-153.webp new file mode 100644 index 0000000..50a5578 Binary files /dev/null and b/static/ptcg/sit-es-153.webp differ diff --git a/static/ptcg/sit-es-164.png b/static/ptcg/sit-es-164.png new file mode 100644 index 0000000..a2b86b2 Binary files /dev/null and b/static/ptcg/sit-es-164.png differ diff --git a/static/ptcg/sit-es-164.webp b/static/ptcg/sit-es-164.webp new file mode 100644 index 0000000..66d7553 Binary files /dev/null and b/static/ptcg/sit-es-164.webp differ diff --git a/static/ptcg/sit-es-169.png b/static/ptcg/sit-es-169.png new file mode 100644 index 0000000..7fb09a6 Binary files /dev/null and b/static/ptcg/sit-es-169.png differ diff --git a/static/ptcg/sit-es-169.webp b/static/ptcg/sit-es-169.webp new file mode 100644 index 0000000..2044c6b Binary files /dev/null and b/static/ptcg/sit-es-169.webp differ diff --git a/static/ptcg/sve-es-011.png b/static/ptcg/sve-es-011.png new file mode 100644 index 0000000..244bcd4 Binary files /dev/null and b/static/ptcg/sve-es-011.png differ diff --git a/static/ptcg/sve-es-011.webp b/static/ptcg/sve-es-011.webp new file mode 100644 index 0000000..26e6e5c Binary files /dev/null and b/static/ptcg/sve-es-011.webp differ diff --git a/static/ptcg/sve-es-012.png b/static/ptcg/sve-es-012.png new file mode 100644 index 0000000..fe8899d Binary files /dev/null and b/static/ptcg/sve-es-012.png differ diff --git a/static/ptcg/sve-es-012.webp b/static/ptcg/sve-es-012.webp new file mode 100644 index 0000000..39346ad Binary files /dev/null and b/static/ptcg/sve-es-012.webp differ diff --git a/static/ptcg/sve-es-013.png b/static/ptcg/sve-es-013.png new file mode 100644 index 0000000..d7460cf Binary files /dev/null and b/static/ptcg/sve-es-013.png differ diff --git a/static/ptcg/sve-es-013.webp b/static/ptcg/sve-es-013.webp new file mode 100644 index 0000000..a942927 Binary files /dev/null and b/static/ptcg/sve-es-013.webp differ diff --git a/static/ptcg/svi-es-151.png b/static/ptcg/svi-es-151.png new file mode 100644 index 0000000..44e67ea Binary files /dev/null and b/static/ptcg/svi-es-151.png differ diff --git a/static/ptcg/svi-es-151.webp b/static/ptcg/svi-es-151.webp new file mode 100644 index 0000000..3be4be8 Binary files /dev/null and b/static/ptcg/svi-es-151.webp differ diff --git a/static/ptcg/svi-es-173.png b/static/ptcg/svi-es-173.png new file mode 100644 index 0000000..aa6e27c Binary files /dev/null and b/static/ptcg/svi-es-173.png differ diff --git a/static/ptcg/svi-es-173.webp b/static/ptcg/svi-es-173.webp new file mode 100644 index 0000000..648490b Binary files /dev/null and b/static/ptcg/svi-es-173.webp differ diff --git a/static/ptcg/svi-es-175.png b/static/ptcg/svi-es-175.png new file mode 100644 index 0000000..380b209 Binary files /dev/null and b/static/ptcg/svi-es-175.png differ diff --git a/static/ptcg/svi-es-175.webp b/static/ptcg/svi-es-175.webp new file mode 100644 index 0000000..b1e3c07 Binary files /dev/null and b/static/ptcg/svi-es-175.webp differ diff --git a/static/ptcg/svi-es-178.png b/static/ptcg/svi-es-178.png new file mode 100644 index 0000000..46eee2c Binary files /dev/null and b/static/ptcg/svi-es-178.png differ diff --git a/static/ptcg/svi-es-178.webp b/static/ptcg/svi-es-178.webp new file mode 100644 index 0000000..7a697a7 Binary files /dev/null and b/static/ptcg/svi-es-178.webp differ diff --git a/static/ptcg/svi-es-181.png b/static/ptcg/svi-es-181.png new file mode 100644 index 0000000..fb19f12 Binary files /dev/null and b/static/ptcg/svi-es-181.png differ diff --git a/static/ptcg/svi-es-181.webp b/static/ptcg/svi-es-181.webp new file mode 100644 index 0000000..b9e92f8 Binary files /dev/null and b/static/ptcg/svi-es-181.webp differ diff --git a/static/ptcg/svi-es-183.png b/static/ptcg/svi-es-183.png new file mode 100644 index 0000000..f7f0c5a Binary files /dev/null and b/static/ptcg/svi-es-183.png differ diff --git a/static/ptcg/svi-es-183.webp b/static/ptcg/svi-es-183.webp new file mode 100644 index 0000000..ff49aa7 Binary files /dev/null and b/static/ptcg/svi-es-183.webp differ diff --git a/static/ptcg/svi-es-189.png b/static/ptcg/svi-es-189.png new file mode 100644 index 0000000..7a17721 Binary files /dev/null and b/static/ptcg/svi-es-189.png differ diff --git a/static/ptcg/svi-es-189.webp b/static/ptcg/svi-es-189.webp new file mode 100644 index 0000000..e48fcb9 Binary files /dev/null and b/static/ptcg/svi-es-189.webp differ diff --git a/static/ptcg/svi-es-196.png b/static/ptcg/svi-es-196.png new file mode 100644 index 0000000..7baf40e Binary files /dev/null and b/static/ptcg/svi-es-196.png differ diff --git a/static/ptcg/svi-es-196.webp b/static/ptcg/svi-es-196.webp new file mode 100644 index 0000000..95112a9 Binary files /dev/null and b/static/ptcg/svi-es-196.webp differ diff --git a/static/ptcg/svp-es-134.png b/static/ptcg/svp-es-134.png new file mode 100644 index 0000000..7b3e486 Binary files /dev/null and b/static/ptcg/svp-es-134.png differ diff --git a/static/ptcg/svp-es-134.webp b/static/ptcg/svp-es-134.webp new file mode 100644 index 0000000..5e844d1 Binary files /dev/null and b/static/ptcg/svp-es-134.webp differ diff --git a/static/ptcg/svp-es-135.png b/static/ptcg/svp-es-135.png new file mode 100644 index 0000000..eb63431 Binary files /dev/null and b/static/ptcg/svp-es-135.png differ diff --git a/static/ptcg/svp-es-135.webp b/static/ptcg/svp-es-135.webp new file mode 100644 index 0000000..ebf164b Binary files /dev/null and b/static/ptcg/svp-es-135.webp differ diff --git a/static/ptcg/svp-es-136.png b/static/ptcg/svp-es-136.png new file mode 100644 index 0000000..de03430 Binary files /dev/null and b/static/ptcg/svp-es-136.png differ diff --git a/static/ptcg/svp-es-136.webp b/static/ptcg/svp-es-136.webp new file mode 100644 index 0000000..ade5fb7 Binary files /dev/null and b/static/ptcg/svp-es-136.webp differ diff --git a/static/ptcg/tef-es-098.png b/static/ptcg/tef-es-098.png new file mode 100644 index 0000000..6016066 Binary files /dev/null and b/static/ptcg/tef-es-098.png differ diff --git a/static/ptcg/tef-es-098.webp b/static/ptcg/tef-es-098.webp new file mode 100644 index 0000000..b62c7ad Binary files /dev/null and b/static/ptcg/tef-es-098.webp differ diff --git a/static/ptcg/tef-es-123.png b/static/ptcg/tef-es-123.png new file mode 100644 index 0000000..e46f267 Binary files /dev/null and b/static/ptcg/tef-es-123.png differ diff --git a/static/ptcg/tef-es-123.webp b/static/ptcg/tef-es-123.webp new file mode 100644 index 0000000..4480b94 Binary files /dev/null and b/static/ptcg/tef-es-123.webp differ diff --git a/static/ptcg/tef-es-136.png b/static/ptcg/tef-es-136.png new file mode 100644 index 0000000..6254a28 Binary files /dev/null and b/static/ptcg/tef-es-136.png differ diff --git a/static/ptcg/tef-es-136.webp b/static/ptcg/tef-es-136.webp new file mode 100644 index 0000000..c7900a2 Binary files /dev/null and b/static/ptcg/tef-es-136.webp differ diff --git a/static/ptcg/tef-es-137.png b/static/ptcg/tef-es-137.png new file mode 100644 index 0000000..91b3c87 Binary files /dev/null and b/static/ptcg/tef-es-137.png differ diff --git a/static/ptcg/tef-es-137.webp b/static/ptcg/tef-es-137.webp new file mode 100644 index 0000000..79f87df Binary files /dev/null and b/static/ptcg/tef-es-137.webp differ diff --git a/static/ptcg/tef-es-161.png b/static/ptcg/tef-es-161.png new file mode 100644 index 0000000..ce24d8a Binary files /dev/null and b/static/ptcg/tef-es-161.png differ diff --git a/static/ptcg/tef-es-161.webp b/static/ptcg/tef-es-161.webp new file mode 100644 index 0000000..f8570ee Binary files /dev/null and b/static/ptcg/tef-es-161.webp differ diff --git a/static/ptcg/twm-es-025.png b/static/ptcg/twm-es-025.png new file mode 100644 index 0000000..71e4c26 Binary files /dev/null and b/static/ptcg/twm-es-025.png differ diff --git a/static/ptcg/twm-es-025.webp b/static/ptcg/twm-es-025.webp new file mode 100644 index 0000000..c7a7c5a Binary files /dev/null and b/static/ptcg/twm-es-025.webp differ diff --git a/static/ptcg/twm-es-064.png b/static/ptcg/twm-es-064.png new file mode 100644 index 0000000..94cc6f2 Binary files /dev/null and b/static/ptcg/twm-es-064.png differ diff --git a/static/ptcg/twm-es-064.webp b/static/ptcg/twm-es-064.webp new file mode 100644 index 0000000..df3485f Binary files /dev/null and b/static/ptcg/twm-es-064.webp differ diff --git a/static/ptcg/twm-es-095.png b/static/ptcg/twm-es-095.png new file mode 100644 index 0000000..89ab199 Binary files /dev/null and b/static/ptcg/twm-es-095.png differ diff --git a/static/ptcg/twm-es-095.webp b/static/ptcg/twm-es-095.webp new file mode 100644 index 0000000..919450f Binary files /dev/null and b/static/ptcg/twm-es-095.webp differ diff --git a/static/ptcg/twm-es-130.png b/static/ptcg/twm-es-130.png new file mode 100644 index 0000000..62fd3ba Binary files /dev/null and b/static/ptcg/twm-es-130.png differ diff --git a/static/ptcg/twm-es-130.webp b/static/ptcg/twm-es-130.webp new file mode 100644 index 0000000..7d9d96a Binary files /dev/null and b/static/ptcg/twm-es-130.webp differ diff --git a/static/ptcg/twm-es-134.png b/static/ptcg/twm-es-134.png new file mode 100644 index 0000000..f4f9f1f Binary files /dev/null and b/static/ptcg/twm-es-134.png differ diff --git a/static/ptcg/twm-es-134.webp b/static/ptcg/twm-es-134.webp new file mode 100644 index 0000000..ff4c442 Binary files /dev/null and b/static/ptcg/twm-es-134.webp differ diff --git a/static/ptcg/twm-es-141.png b/static/ptcg/twm-es-141.png new file mode 100644 index 0000000..6f34351 Binary files /dev/null and b/static/ptcg/twm-es-141.png differ diff --git a/static/ptcg/twm-es-141.webp b/static/ptcg/twm-es-141.webp new file mode 100644 index 0000000..9e4ca1f Binary files /dev/null and b/static/ptcg/twm-es-141.webp differ diff --git a/static/ptcg/twm-es-145.png b/static/ptcg/twm-es-145.png new file mode 100644 index 0000000..d3c2db7 Binary files /dev/null and b/static/ptcg/twm-es-145.png differ diff --git a/static/ptcg/twm-es-145.webp b/static/ptcg/twm-es-145.webp new file mode 100644 index 0000000..575616d Binary files /dev/null and b/static/ptcg/twm-es-145.webp differ diff --git a/static/ptcg/twm-es-153.png b/static/ptcg/twm-es-153.png new file mode 100644 index 0000000..bf06b9b Binary files /dev/null and b/static/ptcg/twm-es-153.png differ diff --git a/static/ptcg/twm-es-153.webp b/static/ptcg/twm-es-153.webp new file mode 100644 index 0000000..2d23c83 Binary files /dev/null and b/static/ptcg/twm-es-153.webp differ diff --git a/static/ptcg/twm-es-155.png b/static/ptcg/twm-es-155.png new file mode 100644 index 0000000..8e18fdd Binary files /dev/null and b/static/ptcg/twm-es-155.png differ diff --git a/static/ptcg/twm-es-155.webp b/static/ptcg/twm-es-155.webp new file mode 100644 index 0000000..a6d389e Binary files /dev/null and b/static/ptcg/twm-es-155.webp differ diff --git a/static/ptcg/twm-es-165.png b/static/ptcg/twm-es-165.png new file mode 100644 index 0000000..65815a3 Binary files /dev/null and b/static/ptcg/twm-es-165.png differ diff --git a/static/ptcg/twm-es-165.webp b/static/ptcg/twm-es-165.webp new file mode 100644 index 0000000..aec97ac Binary files /dev/null and b/static/ptcg/twm-es-165.webp differ diff --git a/static/ptcg/twm-es-167.png b/static/ptcg/twm-es-167.png new file mode 100644 index 0000000..03197cc Binary files /dev/null and b/static/ptcg/twm-es-167.png differ diff --git a/static/ptcg/twm-es-167.webp b/static/ptcg/twm-es-167.webp new file mode 100644 index 0000000..e6e8569 Binary files /dev/null and b/static/ptcg/twm-es-167.webp differ diff --git a/themes/lucky/.nvimrc.lua b/themes/lucky/.nvimrc.lua new file mode 100644 index 0000000..1359b4a --- /dev/null +++ b/themes/lucky/.nvimrc.lua @@ -0,0 +1,6 @@ +vim.filetype.add({ extension = { html = "htmldjango" } }) +for _, b in pairs(vim.api.nvim_list_bufs()) do + if vim.api.nvim_get_option_value("filetype", { buf = b }) == "html" then + vim.api.nvim_set_option_value("filetype", "htmldjango", { buf = b }) + end +end diff --git a/themes/lucky/LICENSE b/themes/lucky/LICENSE new file mode 100644 index 0000000..d41c0bd --- /dev/null +++ b/themes/lucky/LICENSE @@ -0,0 +1,232 @@ +GNU GENERAL PUBLIC LICENSE +Version 3, 29 June 2007 + +Copyright © 2007 Free Software Foundation, Inc. + +Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. + +Preamble + +The GNU General Public License is a free, copyleft license for software and other kinds of works. + +The licenses for most software and other practical works are designed to take away your freedom to share and change the works. By contrast, the GNU General Public License is intended to guarantee your freedom to share and change all versions of a program--to make sure it remains free software for all its users. We, the Free Software Foundation, use the GNU General Public License for most of our software; it applies also to any other work released this way by its authors. You can apply it to your programs, too. + +When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for them if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs, and that you know you can do these things. + +To protect your rights, we need to prevent others from denying you these rights or asking you to surrender the rights. Therefore, you have certain responsibilities if you distribute copies of the software, or if you modify it: responsibilities to respect the freedom of others. + +For example, if you distribute copies of such a program, whether gratis or for a fee, you must pass on to the recipients the same freedoms that you received. You must make sure that they, too, receive or can get the source code. And you must show them these terms so they know their rights. + +Developers that use the GNU GPL protect your rights with two steps: (1) assert copyright on the software, and (2) offer you this License giving you legal permission to copy, distribute and/or modify it. + +For the developers' and authors' protection, the GPL clearly explains that there is no warranty for this free software. For both users' and authors' sake, the GPL requires that modified versions be marked as changed, so that their problems will not be attributed erroneously to authors of previous versions. + +Some devices are designed to deny users access to install or run modified versions of the software inside them, although the manufacturer can do so. This is fundamentally incompatible with the aim of protecting users' freedom to change the software. The systematic pattern of such abuse occurs in the area of products for individuals to use, which is precisely where it is most unacceptable. Therefore, we have designed this version of the GPL to prohibit the practice for those products. If such problems arise substantially in other domains, we stand ready to extend this provision to those domains in future versions of the GPL, as needed to protect the freedom of users. + +Finally, every program is threatened constantly by software patents. States should not allow patents to restrict development and use of software on general-purpose computers, but in those that do, we wish to avoid the special danger that patents applied to a free program could make it effectively proprietary. To prevent this, the GPL assures that patents cannot be used to render the program non-free. + +The precise terms and conditions for copying, distribution and modification follow. + +TERMS AND CONDITIONS + +0. Definitions. + +“This License” refers to version 3 of the GNU General Public License. + +“Copyright” also means copyright-like laws that apply to other kinds of works, such as semiconductor masks. + +“The Program” refers to any copyrightable work licensed under this License. Each licensee is addressed as “you”. “Licensees” and “recipients” may be individuals or organizations. + +To “modify” a work means to copy from or adapt all or part of the work in a fashion requiring copyright permission, other than the making of an exact copy. The resulting work is called a “modified version” of the earlier work or a work “based on” the earlier work. + +A “covered work” means either the unmodified Program or a work based on the Program. + +To “propagate” a work means to do anything with it that, without permission, would make you directly or secondarily liable for infringement under applicable copyright law, except executing it on a computer or modifying a private copy. Propagation includes copying, distribution (with or without modification), making available to the public, and in some countries other activities as well. + +To “convey” a work means any kind of propagation that enables other parties to make or receive copies. Mere interaction with a user through a computer network, with no transfer of a copy, is not conveying. + +An interactive user interface displays “Appropriate Legal Notices” to the extent that it includes a convenient and prominently visible feature that (1) displays an appropriate copyright notice, and (2) tells the user that there is no warranty for the work (except to the extent that warranties are provided), that licensees may convey the work under this License, and how to view a copy of this License. If the interface presents a list of user commands or options, such as a menu, a prominent item in the list meets this criterion. + +1. Source Code. +The “source code” for a work means the preferred form of the work for making modifications to it. “Object code” means any non-source form of a work. + +A “Standard Interface” means an interface that either is an official standard defined by a recognized standards body, or, in the case of interfaces specified for a particular programming language, one that is widely used among developers working in that language. + +The “System Libraries” of an executable work include anything, other than the work as a whole, that (a) is included in the normal form of packaging a Major Component, but which is not part of that Major Component, and (b) serves only to enable use of the work with that Major Component, or to implement a Standard Interface for which an implementation is available to the public in source code form. A “Major Component”, in this context, means a major essential component (kernel, window system, and so on) of the specific operating system (if any) on which the executable work runs, or a compiler used to produce the work, or an object code interpreter used to run it. + +The “Corresponding Source” for a work in object code form means all the source code needed to generate, install, and (for an executable work) run the object code and to modify the work, including scripts to control those activities. However, it does not include the work's System Libraries, or general-purpose tools or generally available free programs which are used unmodified in performing those activities but which are not part of the work. For example, Corresponding Source includes interface definition files associated with source files for the work, and the source code for shared libraries and dynamically linked subprograms that the work is specifically designed to require, such as by intimate data communication or control flow between those subprograms and other parts of the work. + +The Corresponding Source need not include anything that users can regenerate automatically from other parts of the Corresponding Source. + +The Corresponding Source for a work in source code form is that same work. + +2. Basic Permissions. +All rights granted under this License are granted for the term of copyright on the Program, and are irrevocable provided the stated conditions are met. This License explicitly affirms your unlimited permission to run the unmodified Program. The output from running a covered work is covered by this License only if the output, given its content, constitutes a covered work. This License acknowledges your rights of fair use or other equivalent, as provided by copyright law. + +You may make, run and propagate covered works that you do not convey, without conditions so long as your license otherwise remains in force. You may convey covered works to others for the sole purpose of having them make modifications exclusively for you, or provide you with facilities for running those works, provided that you comply with the terms of this License in conveying all material for which you do not control copyright. Those thus making or running the covered works for you must do so exclusively on your behalf, under your direction and control, on terms that prohibit them from making any copies of your copyrighted material outside their relationship with you. + +Conveying under any other circumstances is permitted solely under the conditions stated below. Sublicensing is not allowed; section 10 makes it unnecessary. + +3. Protecting Users' Legal Rights From Anti-Circumvention Law. +No covered work shall be deemed part of an effective technological measure under any applicable law fulfilling obligations under article 11 of the WIPO copyright treaty adopted on 20 December 1996, or similar laws prohibiting or restricting circumvention of such measures. + +When you convey a covered work, you waive any legal power to forbid circumvention of technological measures to the extent such circumvention is effected by exercising rights under this License with respect to the covered work, and you disclaim any intention to limit operation or modification of the work as a means of enforcing, against the work's users, your or third parties' legal rights to forbid circumvention of technological measures. + +4. Conveying Verbatim Copies. +You may convey verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice; keep intact all notices stating that this License and any non-permissive terms added in accord with section 7 apply to the code; keep intact all notices of the absence of any warranty; and give all recipients a copy of this License along with the Program. + +You may charge any price or no price for each copy that you convey, and you may offer support or warranty protection for a fee. + +5. Conveying Modified Source Versions. +You may convey a work based on the Program, or the modifications to produce it from the Program, in the form of source code under the terms of section 4, provided that you also meet all of these conditions: + + a) The work must carry prominent notices stating that you modified it, and giving a relevant date. + + b) The work must carry prominent notices stating that it is released under this License and any conditions added under section 7. This requirement modifies the requirement in section 4 to “keep intact all notices”. + + c) You must license the entire work, as a whole, under this License to anyone who comes into possession of a copy. This License will therefore apply, along with any applicable section 7 additional terms, to the whole of the work, and all its parts, regardless of how they are packaged. This License gives no permission to license the work in any other way, but it does not invalidate such permission if you have separately received it. + + d) If the work has interactive user interfaces, each must display Appropriate Legal Notices; however, if the Program has interactive interfaces that do not display Appropriate Legal Notices, your work need not make them do so. + +A compilation of a covered work with other separate and independent works, which are not by their nature extensions of the covered work, and which are not combined with it such as to form a larger program, in or on a volume of a storage or distribution medium, is called an “aggregate” if the compilation and its resulting copyright are not used to limit the access or legal rights of the compilation's users beyond what the individual works permit. Inclusion of a covered work in an aggregate does not cause this License to apply to the other parts of the aggregate. + +6. Conveying Non-Source Forms. +You may convey a covered work in object code form under the terms of sections 4 and 5, provided that you also convey the machine-readable Corresponding Source under the terms of this License, in one of these ways: + + a) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by the Corresponding Source fixed on a durable physical medium customarily used for software interchange. + + b) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by a written offer, valid for at least three years and valid for as long as you offer spare parts or customer support for that product model, to give anyone who possesses the object code either (1) a copy of the Corresponding Source for all the software in the product that is covered by this License, on a durable physical medium customarily used for software interchange, for a price no more than your reasonable cost of physically performing this conveying of source, or (2) access to copy the Corresponding Source from a network server at no charge. + + c) Convey individual copies of the object code with a copy of the written offer to provide the Corresponding Source. This alternative is allowed only occasionally and noncommercially, and only if you received the object code with such an offer, in accord with subsection 6b. + + d) Convey the object code by offering access from a designated place (gratis or for a charge), and offer equivalent access to the Corresponding Source in the same way through the same place at no further charge. You need not require recipients to copy the Corresponding Source along with the object code. If the place to copy the object code is a network server, the Corresponding Source may be on a different server (operated by you or a third party) that supports equivalent copying facilities, provided you maintain clear directions next to the object code saying where to find the Corresponding Source. Regardless of what server hosts the Corresponding Source, you remain obligated to ensure that it is available for as long as needed to satisfy these requirements. + + e) Convey the object code using peer-to-peer transmission, provided you inform other peers where the object code and Corresponding Source of the work are being offered to the general public at no charge under subsection 6d. + +A separable portion of the object code, whose source code is excluded from the Corresponding Source as a System Library, need not be included in conveying the object code work. + +A “User Product” is either (1) a “consumer product”, which means any tangible personal property which is normally used for personal, family, or household purposes, or (2) anything designed or sold for incorporation into a dwelling. In determining whether a product is a consumer product, doubtful cases shall be resolved in favor of coverage. For a particular product received by a particular user, “normally used” refers to a typical or common use of that class of product, regardless of the status of the particular user or of the way in which the particular user actually uses, or expects or is expected to use, the product. A product is a consumer product regardless of whether the product has substantial commercial, industrial or non-consumer uses, unless such uses represent the only significant mode of use of the product. + +“Installation Information” for a User Product means any methods, procedures, authorization keys, or other information required to install and execute modified versions of a covered work in that User Product from a modified version of its Corresponding Source. The information must suffice to ensure that the continued functioning of the modified object code is in no case prevented or interfered with solely because modification has been made. + +If you convey an object code work under this section in, or with, or specifically for use in, a User Product, and the conveying occurs as part of a transaction in which the right of possession and use of the User Product is transferred to the recipient in perpetuity or for a fixed term (regardless of how the transaction is characterized), the Corresponding Source conveyed under this section must be accompanied by the Installation Information. But this requirement does not apply if neither you nor any third party retains the ability to install modified object code on the User Product (for example, the work has been installed in ROM). + +The requirement to provide Installation Information does not include a requirement to continue to provide support service, warranty, or updates for a work that has been modified or installed by the recipient, or for the User Product in which it has been modified or installed. Access to a network may be denied when the modification itself materially and adversely affects the operation of the network or violates the rules and protocols for communication across the network. + +Corresponding Source conveyed, and Installation Information provided, in accord with this section must be in a format that is publicly documented (and with an implementation available to the public in source code form), and must require no special password or key for unpacking, reading or copying. + +7. Additional Terms. +“Additional permissions” are terms that supplement the terms of this License by making exceptions from one or more of its conditions. Additional permissions that are applicable to the entire Program shall be treated as though they were included in this License, to the extent that they are valid under applicable law. If additional permissions apply only to part of the Program, that part may be used separately under those permissions, but the entire Program remains governed by this License without regard to the additional permissions. + +When you convey a copy of a covered work, you may at your option remove any additional permissions from that copy, or from any part of it. (Additional permissions may be written to require their own removal in certain cases when you modify the work.) You may place additional permissions on material, added by you to a covered work, for which you have or can give appropriate copyright permission. + +Notwithstanding any other provision of this License, for material you add to a covered work, you may (if authorized by the copyright holders of that material) supplement the terms of this License with terms: + + a) Disclaiming warranty or limiting liability differently from the terms of sections 15 and 16 of this License; or + + b) Requiring preservation of specified reasonable legal notices or author attributions in that material or in the Appropriate Legal Notices displayed by works containing it; or + + c) Prohibiting misrepresentation of the origin of that material, or requiring that modified versions of such material be marked in reasonable ways as different from the original version; or + + d) Limiting the use for publicity purposes of names of licensors or authors of the material; or + + e) Declining to grant rights under trademark law for use of some trade names, trademarks, or service marks; or + + f) Requiring indemnification of licensors and authors of that material by anyone who conveys the material (or modified versions of it) with contractual assumptions of liability to the recipient, for any liability that these contractual assumptions directly impose on those licensors and authors. + +All other non-permissive additional terms are considered “further restrictions” within the meaning of section 10. If the Program as you received it, or any part of it, contains a notice stating that it is governed by this License along with a term that is a further restriction, you may remove that term. If a license document contains a further restriction but permits relicensing or conveying under this License, you may add to a covered work material governed by the terms of that license document, provided that the further restriction does not survive such relicensing or conveying. + +If you add terms to a covered work in accord with this section, you must place, in the relevant source files, a statement of the additional terms that apply to those files, or a notice indicating where to find the applicable terms. + +Additional terms, permissive or non-permissive, may be stated in the form of a separately written license, or stated as exceptions; the above requirements apply either way. + +8. Termination. +You may not propagate or modify a covered work except as expressly provided under this License. Any attempt otherwise to propagate or modify it is void, and will automatically terminate your rights under this License (including any patent licenses granted under the third paragraph of section 11). + +However, if you cease all violation of this License, then your license from a particular copyright holder is reinstated (a) provisionally, unless and until the copyright holder explicitly and finally terminates your license, and (b) permanently, if the copyright holder fails to notify you of the violation by some reasonable means prior to 60 days after the cessation. + +Moreover, your license from a particular copyright holder is reinstated permanently if the copyright holder notifies you of the violation by some reasonable means, this is the first time you have received notice of violation of this License (for any work) from that copyright holder, and you cure the violation prior to 30 days after your receipt of the notice. + +Termination of your rights under this section does not terminate the licenses of parties who have received copies or rights from you under this License. If your rights have been terminated and not permanently reinstated, you do not qualify to receive new licenses for the same material under section 10. + +9. Acceptance Not Required for Having Copies. +You are not required to accept this License in order to receive or run a copy of the Program. Ancillary propagation of a covered work occurring solely as a consequence of using peer-to-peer transmission to receive a copy likewise does not require acceptance. However, nothing other than this License grants you permission to propagate or modify any covered work. These actions infringe copyright if you do not accept this License. Therefore, by modifying or propagating a covered work, you indicate your acceptance of this License to do so. + +10. Automatic Licensing of Downstream Recipients. +Each time you convey a covered work, the recipient automatically receives a license from the original licensors, to run, modify and propagate that work, subject to this License. You are not responsible for enforcing compliance by third parties with this License. + +An “entity transaction” is a transaction transferring control of an organization, or substantially all assets of one, or subdividing an organization, or merging organizations. If propagation of a covered work results from an entity transaction, each party to that transaction who receives a copy of the work also receives whatever licenses to the work the party's predecessor in interest had or could give under the previous paragraph, plus a right to possession of the Corresponding Source of the work from the predecessor in interest, if the predecessor has it or can get it with reasonable efforts. + +You may not impose any further restrictions on the exercise of the rights granted or affirmed under this License. For example, you may not impose a license fee, royalty, or other charge for exercise of rights granted under this License, and you may not initiate litigation (including a cross-claim or counterclaim in a lawsuit) alleging that any patent claim is infringed by making, using, selling, offering for sale, or importing the Program or any portion of it. + +11. Patents. +A “contributor” is a copyright holder who authorizes use under this License of the Program or a work on which the Program is based. The work thus licensed is called the contributor's “contributor version”. + +A contributor's “essential patent claims” are all patent claims owned or controlled by the contributor, whether already acquired or hereafter acquired, that would be infringed by some manner, permitted by this License, of making, using, or selling its contributor version, but do not include claims that would be infringed only as a consequence of further modification of the contributor version. For purposes of this definition, “control” includes the right to grant patent sublicenses in a manner consistent with the requirements of this License. + +Each contributor grants you a non-exclusive, worldwide, royalty-free patent license under the contributor's essential patent claims, to make, use, sell, offer for sale, import and otherwise run, modify and propagate the contents of its contributor version. + +In the following three paragraphs, a “patent license” is any express agreement or commitment, however denominated, not to enforce a patent (such as an express permission to practice a patent or covenant not to sue for patent infringement). To “grant” such a patent license to a party means to make such an agreement or commitment not to enforce a patent against the party. + +If you convey a covered work, knowingly relying on a patent license, and the Corresponding Source of the work is not available for anyone to copy, free of charge and under the terms of this License, through a publicly available network server or other readily accessible means, then you must either (1) cause the Corresponding Source to be so available, or (2) arrange to deprive yourself of the benefit of the patent license for this particular work, or (3) arrange, in a manner consistent with the requirements of this License, to extend the patent license to downstream recipients. “Knowingly relying” means you have actual knowledge that, but for the patent license, your conveying the covered work in a country, or your recipient's use of the covered work in a country, would infringe one or more identifiable patents in that country that you have reason to believe are valid. + +If, pursuant to or in connection with a single transaction or arrangement, you convey, or propagate by procuring conveyance of, a covered work, and grant a patent license to some of the parties receiving the covered work authorizing them to use, propagate, modify or convey a specific copy of the covered work, then the patent license you grant is automatically extended to all recipients of the covered work and works based on it. + +A patent license is “discriminatory” if it does not include within the scope of its coverage, prohibits the exercise of, or is conditioned on the non-exercise of one or more of the rights that are specifically granted under this License. You may not convey a covered work if you are a party to an arrangement with a third party that is in the business of distributing software, under which you make payment to the third party based on the extent of your activity of conveying the work, and under which the third party grants, to any of the parties who would receive the covered work from you, a discriminatory patent license (a) in connection with copies of the covered work conveyed by you (or copies made from those copies), or (b) primarily for and in connection with specific products or compilations that contain the covered work, unless you entered into that arrangement, or that patent license was granted, prior to 28 March 2007. + +Nothing in this License shall be construed as excluding or limiting any implied license or other defenses to infringement that may otherwise be available to you under applicable patent law. + +12. No Surrender of Others' Freedom. +If conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot convey a covered work so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not convey it at all. For example, if you agree to terms that obligate you to collect a royalty for further conveying from those to whom you convey the Program, the only way you could satisfy both those terms and this License would be to refrain entirely from conveying the Program. + +13. Use with the GNU Affero General Public License. +Notwithstanding any other provision of this License, you have permission to link or combine any covered work with a work licensed under version 3 of the GNU Affero General Public License into a single combined work, and to convey the resulting work. The terms of this License will continue to apply to the part which is the covered work, but the special requirements of the GNU Affero General Public License, section 13, concerning interaction through a network will apply to the combination as such. + +14. Revised Versions of this License. +The Free Software Foundation may publish revised and/or new versions of the GNU General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. + +Each version is given a distinguishing version number. If the Program specifies that a certain numbered version of the GNU General Public License “or any later version” applies to it, you have the option of following the terms and conditions either of that numbered version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of the GNU General Public License, you may choose any version ever published by the Free Software Foundation. + +If the Program specifies that a proxy can decide which future versions of the GNU General Public License can be used, that proxy's public statement of acceptance of a version permanently authorizes you to choose that version for the Program. + +Later license versions may give you additional or different permissions. However, no additional obligations are imposed on any author or copyright holder as a result of your choosing to follow a later version. + +15. Disclaimer of Warranty. +THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM “AS IS” WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + +16. Limitation of Liability. +IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. + +17. Interpretation of Sections 15 and 16. +If the disclaimer of warranty and limitation of liability provided above cannot be given local legal effect according to their terms, reviewing courts shall apply local law that most closely approximates an absolute waiver of all civil liability in connection with the Program, unless a warranty or assumption of liability accompanies a copy of the Program in return for a fee. + +END OF TERMS AND CONDITIONS + +How to Apply These Terms to Your New Programs + +If you develop a new program, and you want it to be of the greatest possible use to the public, the best way to achieve this is to make it free software which everyone can redistribute and change under these terms. + +To do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most effectively state the exclusion of warranty; and each file should have at least the “copyright” line and a pointer to where the full notice is found. + + + Copyright (C) + + This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. + + This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. + + You should have received a copy of the GNU General Public License along with this program. If not, see . + +Also add information on how to contact you by electronic and paper mail. + +If the program does terminal interaction, make it output a short notice like this when it starts in an interactive mode: + + Copyright (C) + This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. + This is free software, and you are welcome to redistribute it under certain conditions; type `show c' for details. + +The hypothetical commands `show w' and `show c' should show the appropriate parts of the General Public License. Of course, your program's commands might be different; for a GUI interface, you would use an “about box”. + +You should also get your employer (if you work as a programmer) or school, if any, to sign a “copyright disclaimer” for the program, if necessary. For more information on this, and how to apply and follow the GNU GPL, see . + +The GNU General Public License does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Lesser General Public License instead of this License. But first, please read . diff --git a/themes/lucky/sass/_bulma/base/_all.sass b/themes/lucky/sass/_bulma/base/_all.sass new file mode 100644 index 0000000..a5ae0a7 --- /dev/null +++ b/themes/lucky/sass/_bulma/base/_all.sass @@ -0,0 +1,6 @@ +/* Bulma Base */ +@charset "utf-8" + +@import "minireset" +@import "generic" +@import "animations" diff --git a/themes/lucky/sass/_bulma/base/animations.sass b/themes/lucky/sass/_bulma/base/animations.sass new file mode 100644 index 0000000..a14525d --- /dev/null +++ b/themes/lucky/sass/_bulma/base/animations.sass @@ -0,0 +1,5 @@ +@keyframes spinAround + from + transform: rotate(0deg) + to + transform: rotate(359deg) diff --git a/themes/lucky/sass/_bulma/base/generic.sass b/themes/lucky/sass/_bulma/base/generic.sass new file mode 100644 index 0000000..42c736a --- /dev/null +++ b/themes/lucky/sass/_bulma/base/generic.sass @@ -0,0 +1,145 @@ +@import "../utilities/mixins" + +$body-background-color: $scheme-main !default +$body-size: 16px !default +$body-min-width: 300px !default +$body-rendering: optimizeLegibility !default +$body-family: $family-primary !default +$body-overflow-x: hidden !default +$body-overflow-y: scroll !default + +$body-color: $text !default +$body-font-size: 1em !default +$body-weight: $weight-normal !default +$body-line-height: 1.5 !default + +$code-family: $family-code !default +$code-padding: 0.25em 0.5em 0.25em !default +$code-weight: normal !default +$code-size: 0.875em !default + +$small-font-size: 0.875em !default + +$hr-background-color: $background !default +$hr-height: 2px !default +$hr-margin: 1.5rem 0 !default + +$strong-color: $text-strong !default +$strong-weight: $weight-bold !default + +$pre-font-size: 0.875em !default +$pre-padding: 1.25rem 1.5rem !default +$pre-code-font-size: 1em !default + +html + background-color: $body-background-color + font-size: $body-size + -moz-osx-font-smoothing: grayscale + -webkit-font-smoothing: antialiased + min-width: $body-min-width + overflow-x: $body-overflow-x + overflow-y: $body-overflow-y + text-rendering: $body-rendering + text-size-adjust: 100% + +article, +aside, +figure, +footer, +header, +hgroup, +section + display: block + +body, +button, +input, +optgroup, +select, +textarea + font-family: $body-family + +code, +pre + -moz-osx-font-smoothing: auto + -webkit-font-smoothing: auto + font-family: $code-family + +body + color: $body-color + font-size: $body-font-size + font-weight: $body-weight + line-height: $body-line-height + +// Inline + +a + color: $link + cursor: pointer + text-decoration: none + strong + color: currentColor + &:hover + color: $link-hover + +code + background-color: $code-background + color: $code + font-size: $code-size + font-weight: $code-weight + padding: $code-padding + +hr + background-color: $hr-background-color + border: none + display: block + height: $hr-height + margin: $hr-margin + +img + height: auto + max-width: 100% + +input[type="checkbox"], +input[type="radio"] + vertical-align: baseline + +small + font-size: $small-font-size + +span + font-style: inherit + font-weight: inherit + +strong + color: $strong-color + font-weight: $strong-weight + +// Block + +fieldset + border: none + +pre + +overflow-touch + background-color: $pre-background + color: $pre + font-size: $pre-font-size + overflow-x: auto + padding: $pre-padding + white-space: pre + word-wrap: normal + code + background-color: transparent + color: currentColor + font-size: $pre-code-font-size + padding: 0 + +table + td, + th + vertical-align: top + &:not([align]) + text-align: inherit + th + color: $text-strong diff --git a/themes/lucky/sass/_bulma/base/helpers.sass b/themes/lucky/sass/_bulma/base/helpers.sass new file mode 100644 index 0000000..e356830 --- /dev/null +++ b/themes/lucky/sass/_bulma/base/helpers.sass @@ -0,0 +1 @@ +@warn "The helpers.sass file is DEPRECATED. It has moved into its own /helpers folder. Please import sass/helpers/_all instead." diff --git a/themes/lucky/sass/_bulma/base/minireset.sass b/themes/lucky/sass/_bulma/base/minireset.sass new file mode 100644 index 0000000..aa2b6f3 --- /dev/null +++ b/themes/lucky/sass/_bulma/base/minireset.sass @@ -0,0 +1,79 @@ +/*! minireset.css v0.0.6 | MIT License | github.com/jgthms/minireset.css */ +// Blocks +html, +body, +p, +ol, +ul, +li, +dl, +dt, +dd, +blockquote, +figure, +fieldset, +legend, +textarea, +pre, +iframe, +hr, +h1, +h2, +h3, +h4, +h5, +h6 + margin: 0 + padding: 0 + +// Headings +h1, +h2, +h3, +h4, +h5, +h6 + font-size: 100% + font-weight: normal + +// List +ul + list-style: none + +// Form +button, +input, +select, +textarea + margin: 0 + +// Box sizing +html + box-sizing: border-box + +* + &, + &::before, + &::after + box-sizing: inherit + +// Media +img, +video + height: auto + max-width: 100% + +// Iframe +iframe + border: 0 + +// Table +table + border-collapse: collapse + border-spacing: 0 + +td, +th + padding: 0 + &:not([align]) + text-align: inherit diff --git a/themes/lucky/sass/_bulma/components/_all.sass b/themes/lucky/sass/_bulma/components/_all.sass new file mode 100644 index 0000000..a7062ec --- /dev/null +++ b/themes/lucky/sass/_bulma/components/_all.sass @@ -0,0 +1,15 @@ +/* Bulma Components */ +@charset "utf-8" + +@import "breadcrumb" +@import "card" +@import "dropdown" +@import "level" +@import "media" +@import "menu" +@import "message" +@import "modal" +@import "navbar" +@import "pagination" +@import "panel" +@import "tabs" diff --git a/themes/lucky/sass/_bulma/components/breadcrumb.sass b/themes/lucky/sass/_bulma/components/breadcrumb.sass new file mode 100644 index 0000000..60bb17b --- /dev/null +++ b/themes/lucky/sass/_bulma/components/breadcrumb.sass @@ -0,0 +1,77 @@ +@import "../utilities/mixins" + +$breadcrumb-item-color: $link !default +$breadcrumb-item-hover-color: $link-hover !default +$breadcrumb-item-active-color: $text-strong !default + +$breadcrumb-item-padding-vertical: 0 !default +$breadcrumb-item-padding-horizontal: 0.75em !default + +$breadcrumb-item-separator-color: $border-hover !default + +.breadcrumb + @extend %block + @extend %unselectable + font-size: $size-normal + white-space: nowrap + a + align-items: center + color: $breadcrumb-item-color + display: flex + justify-content: center + padding: $breadcrumb-item-padding-vertical $breadcrumb-item-padding-horizontal + &:hover + color: $breadcrumb-item-hover-color + li + align-items: center + display: flex + &:first-child a + +ltr-property("padding", 0, false) + &.is-active + a + color: $breadcrumb-item-active-color + cursor: default + pointer-events: none + & + li::before + color: $breadcrumb-item-separator-color + content: "\0002f" + ul, + ol + align-items: flex-start + display: flex + flex-wrap: wrap + justify-content: flex-start + .icon + &:first-child + +ltr-property("margin", 0.5em) + &:last-child + +ltr-property("margin", 0.5em, false) + // Alignment + &.is-centered + ol, + ul + justify-content: center + &.is-right + ol, + ul + justify-content: flex-end + // Sizes + &.is-small + font-size: $size-small + &.is-medium + font-size: $size-medium + &.is-large + font-size: $size-large + // Styles + &.has-arrow-separator + li + li::before + content: "\02192" + &.has-bullet-separator + li + li::before + content: "\02022" + &.has-dot-separator + li + li::before + content: "\000b7" + &.has-succeeds-separator + li + li::before + content: "\0227B" diff --git a/themes/lucky/sass/_bulma/components/card.sass b/themes/lucky/sass/_bulma/components/card.sass new file mode 100644 index 0000000..73387f3 --- /dev/null +++ b/themes/lucky/sass/_bulma/components/card.sass @@ -0,0 +1,103 @@ +@import "../utilities/mixins" + +$card-color: $text !default +$card-background-color: $scheme-main !default +$card-shadow: $shadow !default +$card-radius: 0.25rem !default + +$card-header-background-color: transparent !default +$card-header-color: $text-strong !default +$card-header-padding: 0.75rem 1rem !default +$card-header-shadow: 0 0.125em 0.25em rgba($scheme-invert, 0.1) !default +$card-header-weight: $weight-bold !default + +$card-content-background-color: transparent !default +$card-content-padding: 1.5rem !default + +$card-footer-background-color: transparent !default +$card-footer-border-top: 1px solid $border-light !default +$card-footer-padding: 0.75rem !default + +$card-media-margin: $block-spacing !default + +.card + background-color: $card-background-color + border-radius: $card-radius + box-shadow: $card-shadow + color: $card-color + max-width: 100% + position: relative + +%card-item + &:first-child + border-top-left-radius: $card-radius + border-top-right-radius: $card-radius + &:last-child + border-bottom-left-radius: $card-radius + border-bottom-right-radius: $card-radius + +.card-header + @extend %card-item + background-color: $card-header-background-color + align-items: stretch + box-shadow: $card-header-shadow + display: flex + +.card-header-title + align-items: center + color: $card-header-color + display: flex + flex-grow: 1 + font-weight: $card-header-weight + padding: $card-header-padding + &.is-centered + justify-content: center + +.card-header-icon + +reset + align-items: center + cursor: pointer + display: flex + justify-content: center + padding: $card-header-padding + +.card-image + display: block + position: relative + &:first-child + img + border-top-left-radius: $card-radius + border-top-right-radius: $card-radius + &:last-child + img + border-bottom-left-radius: $card-radius + border-bottom-right-radius: $card-radius + +.card-content + @extend %card-item + background-color: $card-content-background-color + padding: $card-content-padding + +.card-footer + @extend %card-item + background-color: $card-footer-background-color + border-top: $card-footer-border-top + align-items: stretch + display: flex + +.card-footer-item + align-items: center + display: flex + flex-basis: 0 + flex-grow: 1 + flex-shrink: 0 + justify-content: center + padding: $card-footer-padding + &:not(:last-child) + +ltr-property("border", $card-footer-border-top) + +// Combinations + +.card + .media:not(:last-child) + margin-bottom: $card-media-margin diff --git a/themes/lucky/sass/_bulma/components/dropdown.sass b/themes/lucky/sass/_bulma/components/dropdown.sass new file mode 100644 index 0000000..3743cb7 --- /dev/null +++ b/themes/lucky/sass/_bulma/components/dropdown.sass @@ -0,0 +1,83 @@ +@import "../utilities/mixins" + +$dropdown-menu-min-width: 12rem !default + +$dropdown-content-background-color: $scheme-main !default +$dropdown-content-arrow: $link !default +$dropdown-content-offset: 4px !default +$dropdown-content-padding-bottom: 0.5rem !default +$dropdown-content-padding-top: 0.5rem !default +$dropdown-content-radius: $radius !default +$dropdown-content-shadow: $shadow !default +$dropdown-content-z: 20 !default + +$dropdown-item-color: $text !default +$dropdown-item-hover-color: $scheme-invert !default +$dropdown-item-hover-background-color: $background !default +$dropdown-item-active-color: $link-invert !default +$dropdown-item-active-background-color: $link !default + +$dropdown-divider-background-color: $border-light !default + +.dropdown + display: inline-flex + position: relative + vertical-align: top + &.is-active, + &.is-hoverable:hover + .dropdown-menu + display: block + &.is-right + .dropdown-menu + left: auto + right: 0 + &.is-up + .dropdown-menu + bottom: 100% + padding-bottom: $dropdown-content-offset + padding-top: initial + top: auto + +.dropdown-menu + display: none + +ltr-position(0, false) + min-width: $dropdown-menu-min-width + padding-top: $dropdown-content-offset + position: absolute + top: 100% + z-index: $dropdown-content-z + +.dropdown-content + background-color: $dropdown-content-background-color + border-radius: $dropdown-content-radius + box-shadow: $dropdown-content-shadow + padding-bottom: $dropdown-content-padding-bottom + padding-top: $dropdown-content-padding-top + +.dropdown-item + color: $dropdown-item-color + display: block + font-size: 0.875rem + line-height: 1.5 + padding: 0.375rem 1rem + position: relative + +a.dropdown-item, +button.dropdown-item + +ltr-property("padding", 3rem) + text-align: inherit + white-space: nowrap + width: 100% + &:hover + background-color: $dropdown-item-hover-background-color + color: $dropdown-item-hover-color + &.is-active + background-color: $dropdown-item-active-background-color + color: $dropdown-item-active-color + +.dropdown-divider + background-color: $dropdown-divider-background-color + border: none + display: block + height: 1px + margin: 0.5rem 0 diff --git a/themes/lucky/sass/_bulma/components/level.sass b/themes/lucky/sass/_bulma/components/level.sass new file mode 100644 index 0000000..6793ae0 --- /dev/null +++ b/themes/lucky/sass/_bulma/components/level.sass @@ -0,0 +1,79 @@ +@import "../utilities/mixins" + +$level-item-spacing: ($block-spacing * 0.5) !default + +.level + @extend %block + align-items: center + justify-content: space-between + code + border-radius: $radius + img + display: inline-block + vertical-align: top + // Modifiers + &.is-mobile + display: flex + .level-left, + .level-right + display: flex + .level-left + .level-right + margin-top: 0 + .level-item + &:not(:last-child) + margin-bottom: 0 + +ltr-property("margin", $level-item-spacing) + &:not(.is-narrow) + flex-grow: 1 + // Responsiveness + +tablet + display: flex + & > .level-item + &:not(.is-narrow) + flex-grow: 1 + +.level-item + align-items: center + display: flex + flex-basis: auto + flex-grow: 0 + flex-shrink: 0 + justify-content: center + .title, + .subtitle + margin-bottom: 0 + // Responsiveness + +mobile + &:not(:last-child) + margin-bottom: $level-item-spacing + +.level-left, +.level-right + flex-basis: auto + flex-grow: 0 + flex-shrink: 0 + .level-item + // Modifiers + &.is-flexible + flex-grow: 1 + // Responsiveness + +tablet + &:not(:last-child) + +ltr-property("margin", $level-item-spacing) + +.level-left + align-items: center + justify-content: flex-start + // Responsiveness + +mobile + & + .level-right + margin-top: 1.5rem + +tablet + display: flex + +.level-right + align-items: center + justify-content: flex-end + // Responsiveness + +tablet + display: flex diff --git a/themes/lucky/sass/_bulma/components/media.sass b/themes/lucky/sass/_bulma/components/media.sass new file mode 100644 index 0000000..fc3f7d1 --- /dev/null +++ b/themes/lucky/sass/_bulma/components/media.sass @@ -0,0 +1,59 @@ +@import "../utilities/mixins" + +$media-border-color: bulmaRgba($border, 0.5) !default +$media-border-size: 1px !default +$media-spacing: 1rem !default +$media-spacing-large: 1.5rem !default +$media-content-spacing: 0.75rem !default +$media-level-1-spacing: 0.75rem !default +$media-level-1-content-spacing: 0.5rem !default +$media-level-2-spacing: 0.5rem !default + +.media + align-items: flex-start + display: flex + text-align: inherit + .content:not(:last-child) + margin-bottom: $media-content-spacing + .media + border-top: $media-border-size solid $media-border-color + display: flex + padding-top: $media-level-1-spacing + .content:not(:last-child), + .control:not(:last-child) + margin-bottom: $media-level-1-content-spacing + .media + padding-top: $media-level-2-spacing + & + .media + margin-top: $media-level-2-spacing + & + .media + border-top: $media-border-size solid $media-border-color + margin-top: $media-spacing + padding-top: $media-spacing + // Sizes + &.is-large + & + .media + margin-top: $media-spacing-large + padding-top: $media-spacing-large + +.media-left, +.media-right + flex-basis: auto + flex-grow: 0 + flex-shrink: 0 + +.media-left + +ltr-property("margin", $media-spacing) + +.media-right + +ltr-property("margin", $media-spacing, false) + +.media-content + flex-basis: auto + flex-grow: 1 + flex-shrink: 1 + text-align: inherit + ++mobile + .media-content + overflow-x: auto diff --git a/themes/lucky/sass/_bulma/components/menu.sass b/themes/lucky/sass/_bulma/components/menu.sass new file mode 100644 index 0000000..31dc56f --- /dev/null +++ b/themes/lucky/sass/_bulma/components/menu.sass @@ -0,0 +1,59 @@ +@import "../utilities/mixins" + +$menu-item-color: $text !default +$menu-item-radius: $radius-small !default +$menu-item-hover-color: $text-strong !default +$menu-item-hover-background-color: $background !default +$menu-item-active-color: $link-invert !default +$menu-item-active-background-color: $link !default + +$menu-list-border-left: 1px solid $border !default +$menu-list-line-height: 1.25 !default +$menu-list-link-padding: 0.5em 0.75em !default +$menu-nested-list-margin: 0.75em !default +$menu-nested-list-padding-left: 0.75em !default + +$menu-label-color: $text-light !default +$menu-label-font-size: 0.75em !default +$menu-label-letter-spacing: 0.1em !default +$menu-label-spacing: 1em !default + +.menu + font-size: $size-normal + // Sizes + &.is-small + font-size: $size-small + &.is-medium + font-size: $size-medium + &.is-large + font-size: $size-large + +.menu-list + line-height: $menu-list-line-height + a + border-radius: $menu-item-radius + color: $menu-item-color + display: block + padding: $menu-list-link-padding + &:hover + background-color: $menu-item-hover-background-color + color: $menu-item-hover-color + // Modifiers + &.is-active + background-color: $menu-item-active-background-color + color: $menu-item-active-color + li + ul + +ltr-property("border", $menu-list-border-left, false) + margin: $menu-nested-list-margin + +ltr-property("padding", $menu-nested-list-padding-left, false) + +.menu-label + color: $menu-label-color + font-size: $menu-label-font-size + letter-spacing: $menu-label-letter-spacing + text-transform: uppercase + &:not(:first-child) + margin-top: $menu-label-spacing + &:not(:last-child) + margin-bottom: $menu-label-spacing diff --git a/themes/lucky/sass/_bulma/components/message.sass b/themes/lucky/sass/_bulma/components/message.sass new file mode 100644 index 0000000..ab83780 --- /dev/null +++ b/themes/lucky/sass/_bulma/components/message.sass @@ -0,0 +1,101 @@ +@import "../utilities/mixins" + +$message-background-color: $background !default +$message-radius: $radius !default + +$message-header-background-color: $text !default +$message-header-color: $text-invert !default +$message-header-weight: $weight-bold !default +$message-header-padding: 0.75em 1em !default +$message-header-radius: $radius !default + +$message-body-border-color: $border !default +$message-body-border-width: 0 0 0 4px !default +$message-body-color: $text !default +$message-body-padding: 1.25em 1.5em !default +$message-body-radius: $radius !default + +$message-body-pre-background-color: $scheme-main !default +$message-body-pre-code-background-color: transparent !default + +$message-header-body-border-width: 0 !default +$message-colors: $colors !default + +.message + @extend %block + background-color: $message-background-color + border-radius: $message-radius + font-size: $size-normal + strong + color: currentColor + a:not(.button):not(.tag):not(.dropdown-item) + color: currentColor + text-decoration: underline + // Sizes + &.is-small + font-size: $size-small + &.is-medium + font-size: $size-medium + &.is-large + font-size: $size-large + // Colors + @each $name, $components in $message-colors + $color: nth($components, 1) + $color-invert: nth($components, 2) + $color-light: null + $color-dark: null + + @if length($components) >= 3 + $color-light: nth($components, 3) + @if length($components) >= 4 + $color-dark: nth($components, 4) + @else + $color-luminance: colorLuminance($color) + $darken-percentage: $color-luminance * 70% + $desaturate-percentage: $color-luminance * 30% + $color-dark: desaturate(darken($color, $darken-percentage), $desaturate-percentage) + @else + $color-lightning: max((100% - lightness($color)) - 2%, 0%) + $color-light: lighten($color, $color-lightning) + + &.is-#{$name} + background-color: $color-light + .message-header + background-color: $color + color: $color-invert + .message-body + border-color: $color + color: $color-dark + +.message-header + align-items: center + background-color: $message-header-background-color + border-radius: $message-header-radius $message-header-radius 0 0 + color: $message-header-color + display: flex + font-weight: $message-header-weight + justify-content: space-between + line-height: 1.25 + padding: $message-header-padding + position: relative + .delete + flex-grow: 0 + flex-shrink: 0 + +ltr-property("margin", 0.75em, false) + & + .message-body + border-width: $message-header-body-border-width + border-top-left-radius: 0 + border-top-right-radius: 0 + +.message-body + border-color: $message-body-border-color + border-radius: $message-body-radius + border-style: solid + border-width: $message-body-border-width + color: $message-body-color + padding: $message-body-padding + code, + pre + background-color: $message-body-pre-background-color + pre code + background-color: $message-body-pre-code-background-color diff --git a/themes/lucky/sass/_bulma/components/modal.sass b/themes/lucky/sass/_bulma/components/modal.sass new file mode 100644 index 0000000..fdbddd6 --- /dev/null +++ b/themes/lucky/sass/_bulma/components/modal.sass @@ -0,0 +1,117 @@ +@import "../utilities/mixins" + +$modal-z: 40 !default + +$modal-background-background-color: bulmaRgba($scheme-invert, 0.86) !default + +$modal-content-width: 640px !default +$modal-content-margin-mobile: 20px !default +$modal-content-spacing-mobile: 160px !default +$modal-content-spacing-tablet: 40px !default + +$modal-close-dimensions: 40px !default +$modal-close-right: 20px !default +$modal-close-top: 20px !default + +$modal-card-spacing: 40px !default + +$modal-card-head-background-color: $background !default +$modal-card-head-border-bottom: 1px solid $border !default +$modal-card-head-padding: 20px !default +$modal-card-head-radius: $radius-large !default + +$modal-card-title-color: $text-strong !default +$modal-card-title-line-height: 1 !default +$modal-card-title-size: $size-4 !default + +$modal-card-foot-radius: $radius-large !default +$modal-card-foot-border-top: 1px solid $border !default + +$modal-card-body-background-color: $scheme-main !default +$modal-card-body-padding: 20px !default + +$modal-breakpoint: $tablet !default + +.modal + @extend %overlay + align-items: center + display: none + flex-direction: column + justify-content: center + overflow: hidden + position: fixed + z-index: $modal-z + // Modifiers + &.is-active + display: flex + +.modal-background + @extend %overlay + background-color: $modal-background-background-color + +.modal-content, +.modal-card + margin: 0 $modal-content-margin-mobile + max-height: calc(100vh - #{$modal-content-spacing-mobile}) + overflow: auto + position: relative + width: 100% + // Responsiveness + +from($modal-breakpoint) + margin: 0 auto + max-height: calc(100vh - #{$modal-content-spacing-tablet}) + width: $modal-content-width + +.modal-close + @extend %delete + background: none + height: $modal-close-dimensions + position: fixed + +ltr-position($modal-close-right) + top: $modal-close-top + width: $modal-close-dimensions + +.modal-card + display: flex + flex-direction: column + max-height: calc(100vh - #{$modal-card-spacing}) + overflow: hidden + -ms-overflow-y: visible + +.modal-card-head, +.modal-card-foot + align-items: center + background-color: $modal-card-head-background-color + display: flex + flex-shrink: 0 + justify-content: flex-start + padding: $modal-card-head-padding + position: relative + +.modal-card-head + border-bottom: $modal-card-head-border-bottom + border-top-left-radius: $modal-card-head-radius + border-top-right-radius: $modal-card-head-radius + +.modal-card-title + color: $modal-card-title-color + flex-grow: 1 + flex-shrink: 0 + font-size: $modal-card-title-size + line-height: $modal-card-title-line-height + +.modal-card-foot + border-bottom-left-radius: $modal-card-foot-radius + border-bottom-right-radius: $modal-card-foot-radius + border-top: $modal-card-foot-border-top + .button + &:not(:last-child) + +ltr-property("margin", 0.5em) + +.modal-card-body + +overflow-touch + background-color: $modal-card-body-background-color + flex-grow: 1 + flex-shrink: 1 + overflow: auto + padding: $modal-card-body-padding diff --git a/themes/lucky/sass/_bulma/components/navbar.sass b/themes/lucky/sass/_bulma/components/navbar.sass new file mode 100644 index 0000000..f64c488 --- /dev/null +++ b/themes/lucky/sass/_bulma/components/navbar.sass @@ -0,0 +1,446 @@ +@import "../utilities/mixins" + +$navbar-background-color: $scheme-main !default +$navbar-box-shadow-size: 0 2px 0 0 !default +$navbar-box-shadow-color: $background !default +$navbar-height: 3.25rem !default +$navbar-padding-vertical: 1rem !default +$navbar-padding-horizontal: 2rem !default +$navbar-z: 30 !default +$navbar-fixed-z: 30 !default + +$navbar-item-color: $text !default +$navbar-item-hover-color: $link !default +$navbar-item-hover-background-color: $scheme-main-bis !default +$navbar-item-active-color: $scheme-invert !default +$navbar-item-active-background-color: transparent !default +$navbar-item-img-max-height: 1.75rem !default + +$navbar-burger-color: $navbar-item-color !default + +$navbar-tab-hover-background-color: transparent !default +$navbar-tab-hover-border-bottom-color: $link !default +$navbar-tab-active-color: $link !default +$navbar-tab-active-background-color: transparent !default +$navbar-tab-active-border-bottom-color: $link !default +$navbar-tab-active-border-bottom-style: solid !default +$navbar-tab-active-border-bottom-width: 3px !default + +$navbar-dropdown-background-color: $scheme-main !default +$navbar-dropdown-border-top: 2px solid $border !default +$navbar-dropdown-offset: -4px !default +$navbar-dropdown-arrow: $link !default +$navbar-dropdown-radius: $radius-large !default +$navbar-dropdown-z: 20 !default + +$navbar-dropdown-boxed-radius: $radius-large !default +$navbar-dropdown-boxed-shadow: 0 8px 8px bulmaRgba($scheme-invert, 0.1), 0 0 0 1px bulmaRgba($scheme-invert, 0.1) !default + +$navbar-dropdown-item-hover-color: $scheme-invert !default +$navbar-dropdown-item-hover-background-color: $background !default +$navbar-dropdown-item-active-color: $link !default +$navbar-dropdown-item-active-background-color: $background !default + +$navbar-divider-background-color: $background !default +$navbar-divider-height: 2px !default + +$navbar-bottom-box-shadow-size: 0 -2px 0 0 !default + +$navbar-breakpoint: $desktop !default + +$navbar-colors: $colors !default + +=navbar-fixed + left: 0 + position: fixed + right: 0 + z-index: $navbar-fixed-z + +.navbar + background-color: $navbar-background-color + min-height: $navbar-height + position: relative + z-index: $navbar-z + @each $name, $pair in $navbar-colors + $color: nth($pair, 1) + $color-invert: nth($pair, 2) + &.is-#{$name} + background-color: $color + color: $color-invert + .navbar-brand + & > .navbar-item, + .navbar-link + color: $color-invert + & > a.navbar-item, + .navbar-link + &:focus, + &:hover, + &.is-active + background-color: bulmaDarken($color, 5%) + color: $color-invert + .navbar-link + &::after + border-color: $color-invert + .navbar-burger + color: $color-invert + +from($navbar-breakpoint) + .navbar-start, + .navbar-end + & > .navbar-item, + .navbar-link + color: $color-invert + & > a.navbar-item, + .navbar-link + &:focus, + &:hover, + &.is-active + background-color: bulmaDarken($color, 5%) + color: $color-invert + .navbar-link + &::after + border-color: $color-invert + .navbar-item.has-dropdown:focus .navbar-link, + .navbar-item.has-dropdown:hover .navbar-link, + .navbar-item.has-dropdown.is-active .navbar-link + background-color: bulmaDarken($color, 5%) + color: $color-invert + .navbar-dropdown + a.navbar-item + &.is-active + background-color: $color + color: $color-invert + & > .container + align-items: stretch + display: flex + min-height: $navbar-height + width: 100% + &.has-shadow + box-shadow: $navbar-box-shadow-size $navbar-box-shadow-color + &.is-fixed-bottom, + &.is-fixed-top + +navbar-fixed + &.is-fixed-bottom + bottom: 0 + &.has-shadow + box-shadow: $navbar-bottom-box-shadow-size $navbar-box-shadow-color + &.is-fixed-top + top: 0 + +html, +body + &.has-navbar-fixed-top + padding-top: $navbar-height + &.has-navbar-fixed-bottom + padding-bottom: $navbar-height + +.navbar-brand, +.navbar-tabs + align-items: stretch + display: flex + flex-shrink: 0 + min-height: $navbar-height + +.navbar-brand + a.navbar-item + &:focus, + &:hover + background-color: transparent + +.navbar-tabs + +overflow-touch + max-width: 100vw + overflow-x: auto + overflow-y: hidden + +.navbar-burger + @extend %reset + color: $navbar-burger-color + +hamburger($navbar-height) + +ltr-property("margin", auto, false) + +.navbar-menu + display: none + +.navbar-item, +.navbar-link + color: $navbar-item-color + display: block + line-height: 1.5 + padding: 0.5rem 0.75rem + position: relative + .icon + &:only-child + margin-left: -0.25rem + margin-right: -0.25rem + +a.navbar-item, +.navbar-link + cursor: pointer + &:focus, + &:focus-within, + &:hover, + &.is-active + background-color: $navbar-item-hover-background-color + color: $navbar-item-hover-color + +.navbar-item + flex-grow: 0 + flex-shrink: 0 + img + max-height: $navbar-item-img-max-height + &.has-dropdown + padding: 0 + &.is-expanded + flex-grow: 1 + flex-shrink: 1 + &.is-tab + border-bottom: 1px solid transparent + min-height: $navbar-height + padding-bottom: calc(0.5rem - 1px) + &:focus, + &:hover + background-color: $navbar-tab-hover-background-color + border-bottom-color: $navbar-tab-hover-border-bottom-color + &.is-active + background-color: $navbar-tab-active-background-color + border-bottom-color: $navbar-tab-active-border-bottom-color + border-bottom-style: $navbar-tab-active-border-bottom-style + border-bottom-width: $navbar-tab-active-border-bottom-width + color: $navbar-tab-active-color + padding-bottom: calc(0.5rem - #{$navbar-tab-active-border-bottom-width}) + +.navbar-content + flex-grow: 1 + flex-shrink: 1 + +.navbar-link:not(.is-arrowless) + +ltr-property("padding", 2.5em) + &::after + @extend %arrow + border-color: $navbar-dropdown-arrow + margin-top: -0.375em + +ltr-position(1.125em) + +.navbar-dropdown + font-size: 0.875rem + padding-bottom: 0.5rem + padding-top: 0.5rem + .navbar-item + padding-left: 1.5rem + padding-right: 1.5rem + +.navbar-divider + background-color: $navbar-divider-background-color + border: none + display: none + height: $navbar-divider-height + margin: 0.5rem 0 + ++until($navbar-breakpoint) + .navbar > .container + display: block + .navbar-brand, + .navbar-tabs + .navbar-item + align-items: center + display: flex + .navbar-link + &::after + display: none + .navbar-menu + background-color: $navbar-background-color + box-shadow: 0 8px 16px bulmaRgba($scheme-invert, 0.1) + padding: 0.5rem 0 + &.is-active + display: block + // Fixed navbar + .navbar + &.is-fixed-bottom-touch, + &.is-fixed-top-touch + +navbar-fixed + &.is-fixed-bottom-touch + bottom: 0 + &.has-shadow + box-shadow: 0 -2px 3px bulmaRgba($scheme-invert, 0.1) + &.is-fixed-top-touch + top: 0 + &.is-fixed-top, + &.is-fixed-top-touch + .navbar-menu + +overflow-touch + max-height: calc(100vh - #{$navbar-height}) + overflow: auto + html, + body + &.has-navbar-fixed-top-touch + padding-top: $navbar-height + &.has-navbar-fixed-bottom-touch + padding-bottom: $navbar-height + ++from($navbar-breakpoint) + .navbar, + .navbar-menu, + .navbar-start, + .navbar-end + align-items: stretch + display: flex + .navbar + min-height: $navbar-height + &.is-spaced + padding: $navbar-padding-vertical $navbar-padding-horizontal + .navbar-start, + .navbar-end + align-items: center + a.navbar-item, + .navbar-link + border-radius: $radius + &.is-transparent + a.navbar-item, + .navbar-link + &:focus, + &:hover, + &.is-active + background-color: transparent !important + .navbar-item.has-dropdown + &.is-active, + &.is-hoverable:focus, + &.is-hoverable:focus-within, + &.is-hoverable:hover + .navbar-link + background-color: transparent !important + .navbar-dropdown + a.navbar-item + &:focus, + &:hover + background-color: $navbar-dropdown-item-hover-background-color + color: $navbar-dropdown-item-hover-color + &.is-active + background-color: $navbar-dropdown-item-active-background-color + color: $navbar-dropdown-item-active-color + .navbar-burger + display: none + .navbar-item, + .navbar-link + align-items: center + display: flex + .navbar-item + &.has-dropdown + align-items: stretch + &.has-dropdown-up + .navbar-link::after + transform: rotate(135deg) translate(0.25em, -0.25em) + .navbar-dropdown + border-bottom: $navbar-dropdown-border-top + border-radius: $navbar-dropdown-radius $navbar-dropdown-radius 0 0 + border-top: none + bottom: 100% + box-shadow: 0 -8px 8px bulmaRgba($scheme-invert, 0.1) + top: auto + &.is-active, + &.is-hoverable:focus, + &.is-hoverable:focus-within, + &.is-hoverable:hover + .navbar-dropdown + display: block + .navbar.is-spaced &, + &.is-boxed + opacity: 1 + pointer-events: auto + transform: translateY(0) + .navbar-menu + flex-grow: 1 + flex-shrink: 0 + .navbar-start + justify-content: flex-start + +ltr-property("margin", auto) + .navbar-end + justify-content: flex-end + +ltr-property("margin", auto, false) + .navbar-dropdown + background-color: $navbar-dropdown-background-color + border-bottom-left-radius: $navbar-dropdown-radius + border-bottom-right-radius: $navbar-dropdown-radius + border-top: $navbar-dropdown-border-top + box-shadow: 0 8px 8px bulmaRgba($scheme-invert, 0.1) + display: none + font-size: 0.875rem + +ltr-position(0, false) + min-width: 100% + position: absolute + top: 100% + z-index: $navbar-dropdown-z + .navbar-item + padding: 0.375rem 1rem + white-space: nowrap + a.navbar-item + +ltr-property("padding", 3rem) + &:focus, + &:hover + background-color: $navbar-dropdown-item-hover-background-color + color: $navbar-dropdown-item-hover-color + &.is-active + background-color: $navbar-dropdown-item-active-background-color + color: $navbar-dropdown-item-active-color + .navbar.is-spaced &, + &.is-boxed + border-radius: $navbar-dropdown-boxed-radius + border-top: none + box-shadow: $navbar-dropdown-boxed-shadow + display: block + opacity: 0 + pointer-events: none + top: calc(100% + (#{$navbar-dropdown-offset})) + transform: translateY(-5px) + transition-duration: $speed + transition-property: opacity, transform + &.is-right + left: auto + right: 0 + .navbar-divider + display: block + .navbar > .container, + .container > .navbar + .navbar-brand + +ltr-property("margin", -.75rem, false) + .navbar-menu + +ltr-property("margin", -.75rem) + // Fixed navbar + .navbar + &.is-fixed-bottom-desktop, + &.is-fixed-top-desktop + +navbar-fixed + &.is-fixed-bottom-desktop + bottom: 0 + &.has-shadow + box-shadow: 0 -2px 3px bulmaRgba($scheme-invert, 0.1) + &.is-fixed-top-desktop + top: 0 + html, + body + &.has-navbar-fixed-top-desktop + padding-top: $navbar-height + &.has-navbar-fixed-bottom-desktop + padding-bottom: $navbar-height + &.has-spaced-navbar-fixed-top + padding-top: $navbar-height + ($navbar-padding-vertical * 2) + &.has-spaced-navbar-fixed-bottom + padding-bottom: $navbar-height + ($navbar-padding-vertical * 2) + // Hover/Active states + a.navbar-item, + .navbar-link + &.is-active + color: $navbar-item-active-color + &.is-active:not(:focus):not(:hover) + background-color: $navbar-item-active-background-color + .navbar-item.has-dropdown + &:focus, + &:hover, + &.is-active + .navbar-link + background-color: $navbar-item-hover-background-color + +// Combination + +.hero + &.is-fullheight-with-navbar + min-height: calc(100vh - #{$navbar-height}) diff --git a/themes/lucky/sass/_bulma/components/pagination.sass b/themes/lucky/sass/_bulma/components/pagination.sass new file mode 100644 index 0000000..950949d --- /dev/null +++ b/themes/lucky/sass/_bulma/components/pagination.sass @@ -0,0 +1,167 @@ +@import "../utilities/controls" +@import "../utilities/mixins" + +$pagination-color: $text-strong !default +$pagination-border-color: $border !default +$pagination-margin: -0.25rem !default +$pagination-min-width: $control-height !default + +$pagination-item-font-size: 1em !default +$pagination-item-margin: 0.25rem !default +$pagination-item-padding-left: 0.5em !default +$pagination-item-padding-right: 0.5em !default + +$pagination-nav-padding-left: 0.75em !default +$pagination-nav-padding-right: 0.75em !default + +$pagination-hover-color: $link-hover !default +$pagination-hover-border-color: $link-hover-border !default + +$pagination-focus-color: $link-focus !default +$pagination-focus-border-color: $link-focus-border !default + +$pagination-active-color: $link-active !default +$pagination-active-border-color: $link-active-border !default + +$pagination-disabled-color: $text-light !default +$pagination-disabled-background-color: $border !default +$pagination-disabled-border-color: $border !default + +$pagination-current-color: $link-invert !default +$pagination-current-background-color: $link !default +$pagination-current-border-color: $link !default + +$pagination-ellipsis-color: $grey-light !default + +$pagination-shadow-inset: inset 0 1px 2px rgba($scheme-invert, 0.2) !default + +.pagination + @extend %block + font-size: $size-normal + margin: $pagination-margin + // Sizes + &.is-small + font-size: $size-small + &.is-medium + font-size: $size-medium + &.is-large + font-size: $size-large + &.is-rounded + .pagination-previous, + .pagination-next + padding-left: 1em + padding-right: 1em + border-radius: $radius-rounded + .pagination-link + border-radius: $radius-rounded + +.pagination, +.pagination-list + align-items: center + display: flex + justify-content: center + text-align: center + +.pagination-previous, +.pagination-next, +.pagination-link, +.pagination-ellipsis + @extend %control + @extend %unselectable + font-size: $pagination-item-font-size + justify-content: center + margin: $pagination-item-margin + padding-left: $pagination-item-padding-left + padding-right: $pagination-item-padding-right + text-align: center + +.pagination-previous, +.pagination-next, +.pagination-link + border-color: $pagination-border-color + color: $pagination-color + min-width: $pagination-min-width + &:hover + border-color: $pagination-hover-border-color + color: $pagination-hover-color + &:focus + border-color: $pagination-focus-border-color + &:active + box-shadow: $pagination-shadow-inset + &[disabled], + &.is-disabled + background-color: $pagination-disabled-background-color + border-color: $pagination-disabled-border-color + box-shadow: none + color: $pagination-disabled-color + opacity: 0.5 + +.pagination-previous, +.pagination-next + padding-left: $pagination-nav-padding-left + padding-right: $pagination-nav-padding-right + white-space: nowrap + +.pagination-link + &.is-current + background-color: $pagination-current-background-color + border-color: $pagination-current-border-color + color: $pagination-current-color + +.pagination-ellipsis + color: $pagination-ellipsis-color + pointer-events: none + +.pagination-list + flex-wrap: wrap + li + list-style: none + ++mobile + .pagination + flex-wrap: wrap + .pagination-previous, + .pagination-next + flex-grow: 1 + flex-shrink: 1 + .pagination-list + li + flex-grow: 1 + flex-shrink: 1 + ++tablet + .pagination-list + flex-grow: 1 + flex-shrink: 1 + justify-content: flex-start + order: 1 + .pagination-previous, + .pagination-next, + .pagination-link, + .pagination-ellipsis + margin-bottom: 0 + margin-top: 0 + .pagination-previous + order: 2 + .pagination-next + order: 3 + .pagination + justify-content: space-between + margin-bottom: 0 + margin-top: 0 + &.is-centered + .pagination-previous + order: 1 + .pagination-list + justify-content: center + order: 2 + .pagination-next + order: 3 + &.is-right + .pagination-previous + order: 1 + .pagination-next + order: 2 + .pagination-list + justify-content: flex-end + order: 3 diff --git a/themes/lucky/sass/_bulma/components/panel.sass b/themes/lucky/sass/_bulma/components/panel.sass new file mode 100644 index 0000000..afaffcd --- /dev/null +++ b/themes/lucky/sass/_bulma/components/panel.sass @@ -0,0 +1,121 @@ +@import "../utilities/mixins" + +$panel-margin: $block-spacing !default +$panel-item-border: 1px solid $border-light !default +$panel-radius: $radius-large !default +$panel-shadow: $shadow !default + +$panel-heading-background-color: $border-light !default +$panel-heading-color: $text-strong !default +$panel-heading-line-height: 1.25 !default +$panel-heading-padding: 0.75em 1em !default +$panel-heading-radius: $radius !default +$panel-heading-size: 1.25em !default +$panel-heading-weight: $weight-bold !default + +$panel-tabs-font-size: 0.875em !default +$panel-tab-border-bottom: 1px solid $border !default +$panel-tab-active-border-bottom-color: $link-active-border !default +$panel-tab-active-color: $link-active !default + +$panel-list-item-color: $text !default +$panel-list-item-hover-color: $link !default + +$panel-block-color: $text-strong !default +$panel-block-hover-background-color: $background !default +$panel-block-active-border-left-color: $link !default +$panel-block-active-color: $link-active !default +$panel-block-active-icon-color: $link !default + +$panel-icon-color: $text-light !default +$panel-colors: $colors !default + +.panel + border-radius: $panel-radius + box-shadow: $panel-shadow + font-size: $size-normal + &:not(:last-child) + margin-bottom: $panel-margin + // Colors + @each $name, $components in $panel-colors + $color: nth($components, 1) + $color-invert: nth($components, 2) + &.is-#{$name} + .panel-heading + background-color: $color + color: $color-invert + .panel-tabs a.is-active + border-bottom-color: $color + .panel-block.is-active .panel-icon + color: $color + +.panel-tabs, +.panel-block + &:not(:last-child) + border-bottom: $panel-item-border + +.panel-heading + background-color: $panel-heading-background-color + border-radius: $panel-radius $panel-radius 0 0 + color: $panel-heading-color + font-size: $panel-heading-size + font-weight: $panel-heading-weight + line-height: $panel-heading-line-height + padding: $panel-heading-padding + +.panel-tabs + align-items: flex-end + display: flex + font-size: $panel-tabs-font-size + justify-content: center + a + border-bottom: $panel-tab-border-bottom + margin-bottom: -1px + padding: 0.5em + // Modifiers + &.is-active + border-bottom-color: $panel-tab-active-border-bottom-color + color: $panel-tab-active-color + +.panel-list + a + color: $panel-list-item-color + &:hover + color: $panel-list-item-hover-color + +.panel-block + align-items: center + color: $panel-block-color + display: flex + justify-content: flex-start + padding: 0.5em 0.75em + input[type="checkbox"] + +ltr-property("margin", 0.75em) + & > .control + flex-grow: 1 + flex-shrink: 1 + width: 100% + &.is-wrapped + flex-wrap: wrap + &.is-active + border-left-color: $panel-block-active-border-left-color + color: $panel-block-active-color + .panel-icon + color: $panel-block-active-icon-color + &:last-child + border-bottom-left-radius: $panel-radius + border-bottom-right-radius: $panel-radius + +a.panel-block, +label.panel-block + cursor: pointer + &:hover + background-color: $panel-block-hover-background-color + +.panel-icon + +fa(14px, 1em) + color: $panel-icon-color + +ltr-property("margin", 0.75em) + .fa + font-size: inherit + line-height: inherit diff --git a/themes/lucky/sass/_bulma/components/tabs.sass b/themes/lucky/sass/_bulma/components/tabs.sass new file mode 100644 index 0000000..2cb6a54 --- /dev/null +++ b/themes/lucky/sass/_bulma/components/tabs.sass @@ -0,0 +1,176 @@ +@import "../utilities/mixins" + +$tabs-border-bottom-color: $border !default +$tabs-border-bottom-style: solid !default +$tabs-border-bottom-width: 1px !default +$tabs-link-color: $text !default +$tabs-link-hover-border-bottom-color: $text-strong !default +$tabs-link-hover-color: $text-strong !default +$tabs-link-active-border-bottom-color: $link !default +$tabs-link-active-color: $link !default +$tabs-link-padding: 0.5em 1em !default + +$tabs-boxed-link-radius: $radius !default +$tabs-boxed-link-hover-background-color: $background !default +$tabs-boxed-link-hover-border-bottom-color: $border !default + +$tabs-boxed-link-active-background-color: $scheme-main !default +$tabs-boxed-link-active-border-color: $border !default +$tabs-boxed-link-active-border-bottom-color: transparent !default + +$tabs-toggle-link-border-color: $border !default +$tabs-toggle-link-border-style: solid !default +$tabs-toggle-link-border-width: 1px !default +$tabs-toggle-link-hover-background-color: $background !default +$tabs-toggle-link-hover-border-color: $border-hover !default +$tabs-toggle-link-radius: $radius !default +$tabs-toggle-link-active-background-color: $link !default +$tabs-toggle-link-active-border-color: $link !default +$tabs-toggle-link-active-color: $link-invert !default + +.tabs + @extend %block + +overflow-touch + @extend %unselectable + align-items: stretch + display: flex + font-size: $size-normal + justify-content: space-between + overflow: hidden + overflow-x: auto + white-space: nowrap + a + align-items: center + border-bottom-color: $tabs-border-bottom-color + border-bottom-style: $tabs-border-bottom-style + border-bottom-width: $tabs-border-bottom-width + color: $tabs-link-color + display: flex + justify-content: center + margin-bottom: -#{$tabs-border-bottom-width} + padding: $tabs-link-padding + vertical-align: top + &:hover + border-bottom-color: $tabs-link-hover-border-bottom-color + color: $tabs-link-hover-color + li + display: block + &.is-active + a + border-bottom-color: $tabs-link-active-border-bottom-color + color: $tabs-link-active-color + ul + align-items: center + border-bottom-color: $tabs-border-bottom-color + border-bottom-style: $tabs-border-bottom-style + border-bottom-width: $tabs-border-bottom-width + display: flex + flex-grow: 1 + flex-shrink: 0 + justify-content: flex-start + &.is-left + padding-right: 0.75em + &.is-center + flex: none + justify-content: center + padding-left: 0.75em + padding-right: 0.75em + &.is-right + justify-content: flex-end + padding-left: 0.75em + .icon + &:first-child + +ltr-property("margin", 0.5em) + &:last-child + +ltr-property("margin", 0.5em, false) + // Alignment + &.is-centered + ul + justify-content: center + &.is-right + ul + justify-content: flex-end + // Styles + &.is-boxed + a + border: 1px solid transparent + +ltr + border-radius: $tabs-boxed-link-radius $tabs-boxed-link-radius 0 0 + +rtl + border-radius: 0 0 $tabs-boxed-link-radius $tabs-boxed-link-radius + &:hover + background-color: $tabs-boxed-link-hover-background-color + border-bottom-color: $tabs-boxed-link-hover-border-bottom-color + li + &.is-active + a + background-color: $tabs-boxed-link-active-background-color + border-color: $tabs-boxed-link-active-border-color + border-bottom-color: $tabs-boxed-link-active-border-bottom-color !important + &.is-fullwidth + li + flex-grow: 1 + flex-shrink: 0 + &.is-toggle + a + border-color: $tabs-toggle-link-border-color + border-style: $tabs-toggle-link-border-style + border-width: $tabs-toggle-link-border-width + margin-bottom: 0 + position: relative + &:hover + background-color: $tabs-toggle-link-hover-background-color + border-color: $tabs-toggle-link-hover-border-color + z-index: 2 + li + & + li + +ltr-property("margin", -#{$tabs-toggle-link-border-width}, false) + &:first-child a + +ltr + border-top-left-radius: $tabs-toggle-link-radius + border-bottom-left-radius: $tabs-toggle-link-radius + +rtl + border-top-right-radius: $tabs-toggle-link-radius + border-bottom-right-radius: $tabs-toggle-link-radius + &:last-child a + +ltr + border-top-right-radius: $tabs-toggle-link-radius + border-bottom-right-radius: $tabs-toggle-link-radius + +rtl + border-top-left-radius: $tabs-toggle-link-radius + border-bottom-left-radius: $tabs-toggle-link-radius + &.is-active + a + background-color: $tabs-toggle-link-active-background-color + border-color: $tabs-toggle-link-active-border-color + color: $tabs-toggle-link-active-color + z-index: 1 + ul + border-bottom: none + &.is-toggle-rounded + li + &:first-child a + +ltr + border-bottom-left-radius: $radius-rounded + border-top-left-radius: $radius-rounded + padding-left: 1.25em + +rtl + border-bottom-right-radius: $radius-rounded + border-top-right-radius: $radius-rounded + padding-right: 1.25em + &:last-child a + +ltr + border-bottom-right-radius: $radius-rounded + border-top-right-radius: $radius-rounded + padding-right: 1.25em + +rtl + border-bottom-left-radius: $radius-rounded + border-top-left-radius: $radius-rounded + padding-left: 1.25em + // Sizes + &.is-small + font-size: $size-small + &.is-medium + font-size: $size-medium + &.is-large + font-size: $size-large diff --git a/themes/lucky/sass/_bulma/elements/_all.sass b/themes/lucky/sass/_bulma/elements/_all.sass new file mode 100644 index 0000000..511047a --- /dev/null +++ b/themes/lucky/sass/_bulma/elements/_all.sass @@ -0,0 +1,16 @@ +/* Bulma Elements */ +@charset "utf-8" + +@import "box" +@import "button" +@import "container" +@import "content" +@import "icon" +@import "image" +@import "notification" +@import "progress" +@import "table" +@import "tag" +@import "title" + +@import "other" diff --git a/themes/lucky/sass/_bulma/elements/box.sass b/themes/lucky/sass/_bulma/elements/box.sass new file mode 100644 index 0000000..8552430 --- /dev/null +++ b/themes/lucky/sass/_bulma/elements/box.sass @@ -0,0 +1,26 @@ +@import "../utilities/mixins" + +$box-color: $text !default +$box-background-color: $scheme-main !default +$box-radius: $radius-large !default +$box-shadow: $shadow !default +$box-padding: 1.25rem !default + +$box-link-hover-shadow: 0 0.5em 1em -0.125em rgba($scheme-invert, 0.1), 0 0 0 1px $link !default +$box-link-active-shadow: inset 0 1px 2px rgba($scheme-invert, 0.2), 0 0 0 1px $link !default + +.box + @extend %block + background-color: $box-background-color + border-radius: $box-radius + box-shadow: $box-shadow + color: $box-color + display: block + padding: $box-padding + +a.box + &:hover, + &:focus + box-shadow: $box-link-hover-shadow + &:active + box-shadow: $box-link-active-shadow diff --git a/themes/lucky/sass/_bulma/elements/button.sass b/themes/lucky/sass/_bulma/elements/button.sass new file mode 100644 index 0000000..6308064 --- /dev/null +++ b/themes/lucky/sass/_bulma/elements/button.sass @@ -0,0 +1,357 @@ +@import "../utilities/controls" +@import "../utilities/mixins" + +$button-color: $text-strong !default +$button-background-color: $scheme-main !default +$button-family: false !default + +$button-border-color: $border !default +$button-border-width: $control-border-width !default + +$button-padding-vertical: calc(0.5em - #{$button-border-width}) !default +$button-padding-horizontal: 1em !default + +$button-hover-color: $link-hover !default +$button-hover-border-color: $link-hover-border !default + +$button-focus-color: $link-focus !default +$button-focus-border-color: $link-focus-border !default +$button-focus-box-shadow-size: 0 0 0 0.125em !default +$button-focus-box-shadow-color: bulmaRgba($link, 0.25) !default + +$button-active-color: $link-active !default +$button-active-border-color: $link-active-border !default + +$button-text-color: $text !default +$button-text-decoration: underline !default +$button-text-hover-background-color: $background !default +$button-text-hover-color: $text-strong !default + +$button-ghost-background: none !default +$button-ghost-border-color: transparent !default +$button-ghost-color: $link !default +$button-ghost-decoration: none !default +$button-ghost-hover-color: $link !default +$button-ghost-hover-decoration: underline !default + +$button-disabled-background-color: $scheme-main !default +$button-disabled-border-color: $border !default +$button-disabled-shadow: none !default +$button-disabled-opacity: 0.5 !default + +$button-static-color: $text-light !default +$button-static-background-color: $scheme-main-ter !default +$button-static-border-color: $border !default + +$button-colors: $colors !default +$button-responsive-sizes: ("mobile": ("small": ($size-small * 0.75), "normal": ($size-small * 0.875), "medium": $size-small, "large": $size-normal), "tablet-only": ("small": ($size-small * 0.875), "normal": ($size-small), "medium": $size-normal, "large": $size-medium)) !default + +// The button sizes use mixins so they can be used at different breakpoints +=button-small + &:not(.is-rounded) + border-radius: $radius-small + font-size: $size-small +=button-normal + font-size: $size-normal +=button-medium + font-size: $size-medium +=button-large + font-size: $size-large + +.button + @extend %control + @extend %unselectable + background-color: $button-background-color + border-color: $button-border-color + border-width: $button-border-width + color: $button-color + cursor: pointer + @if $button-family + font-family: $button-family + justify-content: center + padding-bottom: $button-padding-vertical + padding-left: $button-padding-horizontal + padding-right: $button-padding-horizontal + padding-top: $button-padding-vertical + text-align: center + white-space: nowrap + strong + color: inherit + .icon + &, + &.is-small, + &.is-medium, + &.is-large + height: 1.5em + width: 1.5em + &:first-child:not(:last-child) + +ltr-property("margin", calc(#{-0.5 * $button-padding-horizontal} - #{$button-border-width}), false) + +ltr-property("margin", $button-padding-horizontal * 0.25) + &:last-child:not(:first-child) + +ltr-property("margin", $button-padding-horizontal * 0.25, false) + +ltr-property("margin", calc(#{-0.5 * $button-padding-horizontal} - #{$button-border-width})) + &:first-child:last-child + margin-left: calc(#{-0.5 * $button-padding-horizontal} - #{$button-border-width}) + margin-right: calc(#{-0.5 * $button-padding-horizontal} - #{$button-border-width}) + // States + &:hover, + &.is-hovered + border-color: $button-hover-border-color + color: $button-hover-color + &:focus, + &.is-focused + border-color: $button-focus-border-color + color: $button-focus-color + &:not(:active) + box-shadow: $button-focus-box-shadow-size $button-focus-box-shadow-color + &:active, + &.is-active + border-color: $button-active-border-color + color: $button-active-color + // Colors + &.is-text + background-color: transparent + border-color: transparent + color: $button-text-color + text-decoration: $button-text-decoration + &:hover, + &.is-hovered, + &:focus, + &.is-focused + background-color: $button-text-hover-background-color + color: $button-text-hover-color + &:active, + &.is-active + background-color: bulmaDarken($button-text-hover-background-color, 5%) + color: $button-text-hover-color + &[disabled], + fieldset[disabled] & + background-color: transparent + border-color: transparent + box-shadow: none + &.is-ghost + background: $button-ghost-background + border-color: $button-ghost-border-color + color: $button-ghost-color + text-decoration: $button-ghost-decoration + &:hover, + &.is-hovered + color: $button-ghost-hover-color + text-decoration: $button-ghost-hover-decoration + @each $name, $pair in $button-colors + $color: nth($pair, 1) + $color-invert: nth($pair, 2) + &.is-#{$name} + background-color: $color + border-color: transparent + color: $color-invert + &:hover, + &.is-hovered + background-color: bulmaDarken($color, 2.5%) + border-color: transparent + color: $color-invert + &:focus, + &.is-focused + border-color: transparent + color: $color-invert + &:not(:active) + box-shadow: $button-focus-box-shadow-size bulmaRgba($color, 0.25) + &:active, + &.is-active + background-color: bulmaDarken($color, 5%) + border-color: transparent + color: $color-invert + &[disabled], + fieldset[disabled] & + background-color: $color + border-color: $color + box-shadow: none + &.is-inverted + background-color: $color-invert + color: $color + &:hover, + &.is-hovered + background-color: bulmaDarken($color-invert, 5%) + &[disabled], + fieldset[disabled] & + background-color: $color-invert + border-color: transparent + box-shadow: none + color: $color + &.is-loading + &::after + border-color: transparent transparent $color-invert $color-invert !important + &.is-outlined + background-color: transparent + border-color: $color + color: $color + &:hover, + &.is-hovered, + &:focus, + &.is-focused + background-color: $color + border-color: $color + color: $color-invert + &.is-loading + &::after + border-color: transparent transparent $color $color !important + &:hover, + &.is-hovered, + &:focus, + &.is-focused + &::after + border-color: transparent transparent $color-invert $color-invert !important + &[disabled], + fieldset[disabled] & + background-color: transparent + border-color: $color + box-shadow: none + color: $color + &.is-inverted.is-outlined + background-color: transparent + border-color: $color-invert + color: $color-invert + &:hover, + &.is-hovered, + &:focus, + &.is-focused + background-color: $color-invert + color: $color + &.is-loading + &:hover, + &.is-hovered, + &:focus, + &.is-focused + &::after + border-color: transparent transparent $color $color !important + &[disabled], + fieldset[disabled] & + background-color: transparent + border-color: $color-invert + box-shadow: none + color: $color-invert + // If light and dark colors are provided + @if length($pair) >= 4 + $color-light: nth($pair, 3) + $color-dark: nth($pair, 4) + &.is-light + background-color: $color-light + color: $color-dark + &:hover, + &.is-hovered + background-color: bulmaDarken($color-light, 2.5%) + border-color: transparent + color: $color-dark + &:active, + &.is-active + background-color: bulmaDarken($color-light, 5%) + border-color: transparent + color: $color-dark + // Sizes + &.is-small + +button-small + &.is-normal + +button-normal + &.is-medium + +button-medium + &.is-large + +button-large + // Modifiers + &[disabled], + fieldset[disabled] & + background-color: $button-disabled-background-color + border-color: $button-disabled-border-color + box-shadow: $button-disabled-shadow + opacity: $button-disabled-opacity + &.is-fullwidth + display: flex + width: 100% + &.is-loading + color: transparent !important + pointer-events: none + &::after + @extend %loader + +center(1em) + position: absolute !important + &.is-static + background-color: $button-static-background-color + border-color: $button-static-border-color + color: $button-static-color + box-shadow: none + pointer-events: none + &.is-rounded + border-radius: $radius-rounded + padding-left: calc(#{$button-padding-horizontal} + 0.25em) + padding-right: calc(#{$button-padding-horizontal} + 0.25em) + +.buttons + align-items: center + display: flex + flex-wrap: wrap + justify-content: flex-start + .button + margin-bottom: 0.5rem + &:not(:last-child):not(.is-fullwidth) + +ltr-property("margin", 0.5rem) + &:last-child + margin-bottom: -0.5rem + &:not(:last-child) + margin-bottom: 1rem + // Sizes + &.are-small + .button:not(.is-normal):not(.is-medium):not(.is-large) + +button-small + &.are-medium + .button:not(.is-small):not(.is-normal):not(.is-large) + +button-medium + &.are-large + .button:not(.is-small):not(.is-normal):not(.is-medium) + +button-large + &.has-addons + .button + &:not(:first-child) + border-bottom-left-radius: 0 + border-top-left-radius: 0 + &:not(:last-child) + border-bottom-right-radius: 0 + border-top-right-radius: 0 + +ltr-property("margin", -1px) + &:last-child + +ltr-property("margin", 0) + &:hover, + &.is-hovered + z-index: 2 + &:focus, + &.is-focused, + &:active, + &.is-active, + &.is-selected + z-index: 3 + &:hover + z-index: 4 + &.is-expanded + flex-grow: 1 + flex-shrink: 1 + &.is-centered + justify-content: center + &:not(.has-addons) + .button:not(.is-fullwidth) + margin-left: 0.25rem + margin-right: 0.25rem + &.is-right + justify-content: flex-end + &:not(.has-addons) + .button:not(.is-fullwidth) + margin-left: 0.25rem + margin-right: 0.25rem + +@each $bp-name, $bp-sizes in $button-responsive-sizes + +breakpoint($bp-name) + @each $size, $value in $bp-sizes + @if $size != "normal" + .button.is-responsive.is-#{$size} + font-size: $value + @else + .button.is-responsive, + .button.is-responsive.is-normal + font-size: $value diff --git a/themes/lucky/sass/_bulma/elements/container.sass b/themes/lucky/sass/_bulma/elements/container.sass new file mode 100644 index 0000000..c13011e --- /dev/null +++ b/themes/lucky/sass/_bulma/elements/container.sass @@ -0,0 +1,29 @@ +@import "../utilities/mixins" + +$container-offset: (2 * $gap) !default +$container-max-width: $fullhd !default + +.container + flex-grow: 1 + margin: 0 auto + position: relative + width: auto + &.is-fluid + max-width: none !important + padding-left: $gap + padding-right: $gap + width: 100% + +desktop + max-width: $desktop - $container-offset + +until-widescreen + &.is-widescreen:not(.is-max-desktop) + max-width: min($widescreen, $container-max-width) - $container-offset + +until-fullhd + &.is-fullhd:not(.is-max-desktop):not(.is-max-widescreen) + max-width: min($fullhd, $container-max-width) - $container-offset + +widescreen + &:not(.is-max-desktop) + max-width: min($widescreen, $container-max-width) - $container-offset + +fullhd + &:not(.is-max-desktop):not(.is-max-widescreen) + max-width: min($fullhd, $container-max-width) - $container-offset diff --git a/themes/lucky/sass/_bulma/elements/content.sass b/themes/lucky/sass/_bulma/elements/content.sass new file mode 100644 index 0000000..3f709ad --- /dev/null +++ b/themes/lucky/sass/_bulma/elements/content.sass @@ -0,0 +1,162 @@ +@import "../utilities/mixins" + +$content-heading-color: $text-strong !default +$content-heading-weight: $weight-semibold !default +$content-heading-line-height: 1.125 !default + +$content-block-margin-bottom: 1em !default + +$content-blockquote-background-color: $background !default +$content-blockquote-border-left: 5px solid $border !default +$content-blockquote-padding: 1.25em 1.5em !default + +$content-pre-padding: 1.25em 1.5em !default + +$content-table-cell-border: 1px solid $border !default +$content-table-cell-border-width: 0 0 1px !default +$content-table-cell-padding: 0.5em 0.75em !default +$content-table-cell-heading-color: $text-strong !default +$content-table-head-cell-border-width: 0 0 2px !default +$content-table-head-cell-color: $text-strong !default +$content-table-body-last-row-cell-border-bottom-width: 0 !default +$content-table-foot-cell-border-width: 2px 0 0 !default +$content-table-foot-cell-color: $text-strong !default + +.content + @extend %block + // Inline + li + li + margin-top: 0.25em + // Block + p, + dl, + ol, + ul, + blockquote, + pre, + table + &:not(:last-child) + margin-bottom: $content-block-margin-bottom + h1, + h2, + h3, + h4, + h5, + h6 + color: $content-heading-color + font-weight: $content-heading-weight + line-height: $content-heading-line-height + h1 + font-size: 2em + margin-bottom: 0.5em + &:not(:first-child) + margin-top: 1em + h2 + font-size: 1.75em + margin-bottom: 0.5714em + &:not(:first-child) + margin-top: 1.1428em + h3 + font-size: 1.5em + margin-bottom: 0.6666em + &:not(:first-child) + margin-top: 1.3333em + h4 + font-size: 1.25em + margin-bottom: 0.8em + h5 + font-size: 1.125em + margin-bottom: 0.8888em + h6 + font-size: 1em + margin-bottom: 1em + blockquote + background-color: $content-blockquote-background-color + +ltr-property("border", $content-blockquote-border-left, false) + padding: $content-blockquote-padding + ol + list-style-position: outside + +ltr-property("margin", 2em, false) + margin-top: 1em + &:not([type]) + list-style-type: decimal + &.is-lower-alpha + list-style-type: lower-alpha + &.is-lower-roman + list-style-type: lower-roman + &.is-upper-alpha + list-style-type: upper-alpha + &.is-upper-roman + list-style-type: upper-roman + ul + list-style: disc outside + +ltr-property("margin", 2em, false) + margin-top: 1em + ul + list-style-type: circle + margin-top: 0.5em + ul + list-style-type: square + dd + +ltr-property("margin", 2em, false) + figure + margin-left: 2em + margin-right: 2em + text-align: center + &:not(:first-child) + margin-top: 2em + &:not(:last-child) + margin-bottom: 2em + img + display: inline-block + figcaption + font-style: italic + pre + +overflow-touch + overflow-x: auto + padding: $content-pre-padding + white-space: pre + word-wrap: normal + sup, + sub + font-size: 75% + table + width: 100% + td, + th + border: $content-table-cell-border + border-width: $content-table-cell-border-width + padding: $content-table-cell-padding + vertical-align: top + th + color: $content-table-cell-heading-color + &:not([align]) + text-align: inherit + thead + td, + th + border-width: $content-table-head-cell-border-width + color: $content-table-head-cell-color + tfoot + td, + th + border-width: $content-table-foot-cell-border-width + color: $content-table-foot-cell-color + tbody + tr + &:last-child + td, + th + border-bottom-width: $content-table-body-last-row-cell-border-bottom-width + .tabs + li + li + margin-top: 0 + // Sizes + &.is-small + font-size: $size-small + &.is-normal + font-size: $size-normal + &.is-medium + font-size: $size-medium + &.is-large + font-size: $size-large diff --git a/themes/lucky/sass/_bulma/elements/form.sass b/themes/lucky/sass/_bulma/elements/form.sass new file mode 100644 index 0000000..3122dc4 --- /dev/null +++ b/themes/lucky/sass/_bulma/elements/form.sass @@ -0,0 +1 @@ +@warn "The form.sass file is DEPRECATED. It has moved into its own /form folder. Please import sass/form/_all instead." diff --git a/themes/lucky/sass/_bulma/elements/icon.sass b/themes/lucky/sass/_bulma/elements/icon.sass new file mode 100644 index 0000000..0befe2b --- /dev/null +++ b/themes/lucky/sass/_bulma/elements/icon.sass @@ -0,0 +1,46 @@ +$icon-dimensions: 1.5rem !default +$icon-dimensions-small: 1rem !default +$icon-dimensions-medium: 2rem !default +$icon-dimensions-large: 3rem !default +$icon-text-spacing: 0.25em !default + +.icon + align-items: center + display: inline-flex + justify-content: center + height: $icon-dimensions + width: $icon-dimensions + // Sizes + &.is-small + height: $icon-dimensions-small + width: $icon-dimensions-small + &.is-medium + height: $icon-dimensions-medium + width: $icon-dimensions-medium + &.is-large + height: $icon-dimensions-large + width: $icon-dimensions-large + +.icon-text + align-items: flex-start + color: inherit + display: inline-flex + flex-wrap: wrap + line-height: $icon-dimensions + vertical-align: top + .icon + flex-grow: 0 + flex-shrink: 0 + &:not(:last-child) + +ltr + margin-right: $icon-text-spacing + +rtl + margin-left: $icon-text-spacing + &:not(:first-child) + +ltr + margin-left: $icon-text-spacing + +rtl + margin-right: $icon-text-spacing + +div.icon-text + display: flex diff --git a/themes/lucky/sass/_bulma/elements/image.sass b/themes/lucky/sass/_bulma/elements/image.sass new file mode 100644 index 0000000..fc46541 --- /dev/null +++ b/themes/lucky/sass/_bulma/elements/image.sass @@ -0,0 +1,73 @@ +@import "../utilities/mixins" + +$dimensions: 16 24 32 48 64 96 128 !default + +.image + display: block + position: relative + img + display: block + height: auto + width: 100% + &.is-rounded + border-radius: $radius-rounded + &.is-fullwidth + width: 100% + // Ratio + &.is-square, + &.is-1by1, + &.is-5by4, + &.is-4by3, + &.is-3by2, + &.is-5by3, + &.is-16by9, + &.is-2by1, + &.is-3by1, + &.is-4by5, + &.is-3by4, + &.is-2by3, + &.is-3by5, + &.is-9by16, + &.is-1by2, + &.is-1by3 + img, + .has-ratio + @extend %overlay + height: 100% + width: 100% + &.is-square, + &.is-1by1 + padding-top: 100% + &.is-5by4 + padding-top: 80% + &.is-4by3 + padding-top: 75% + &.is-3by2 + padding-top: 66.6666% + &.is-5by3 + padding-top: 60% + &.is-16by9 + padding-top: 56.25% + &.is-2by1 + padding-top: 50% + &.is-3by1 + padding-top: 33.3333% + &.is-4by5 + padding-top: 125% + &.is-3by4 + padding-top: 133.3333% + &.is-2by3 + padding-top: 150% + &.is-3by5 + padding-top: 166.6666% + &.is-9by16 + padding-top: 177.7777% + &.is-1by2 + padding-top: 200% + &.is-1by3 + padding-top: 300% + // Sizes + @each $dimension in $dimensions + &.is-#{$dimension}x#{$dimension} + height: $dimension * 1px + width: $dimension * 1px diff --git a/themes/lucky/sass/_bulma/elements/notification.sass b/themes/lucky/sass/_bulma/elements/notification.sass new file mode 100644 index 0000000..f5c6021 --- /dev/null +++ b/themes/lucky/sass/_bulma/elements/notification.sass @@ -0,0 +1,52 @@ +@import "../utilities/mixins" + +$notification-background-color: $background !default +$notification-code-background-color: $scheme-main !default +$notification-radius: $radius !default +$notification-padding: 1.25rem 2.5rem 1.25rem 1.5rem !default +$notification-padding-ltr: 1.25rem 2.5rem 1.25rem 1.5rem !default +$notification-padding-rtl: 1.25rem 1.5rem 1.25rem 2.5rem !default + +$notification-colors: $colors !default + +.notification + @extend %block + background-color: $notification-background-color + border-radius: $notification-radius + position: relative + +ltr + padding: $notification-padding-ltr + +rtl + padding: $notification-padding-rtl + a:not(.button):not(.dropdown-item) + color: currentColor + text-decoration: underline + strong + color: currentColor + code, + pre + background: $notification-code-background-color + pre code + background: transparent + & > .delete + +ltr-position(0.5rem) + position: absolute + top: 0.5rem + .title, + .subtitle, + .content + color: currentColor + // Colors + @each $name, $pair in $notification-colors + $color: nth($pair, 1) + $color-invert: nth($pair, 2) + &.is-#{$name} + background-color: $color + color: $color-invert + // If light and dark colors are provided + @if length($pair) >= 4 + $color-light: nth($pair, 3) + $color-dark: nth($pair, 4) + &.is-light + background-color: $color-light + color: $color-dark diff --git a/themes/lucky/sass/_bulma/elements/other.sass b/themes/lucky/sass/_bulma/elements/other.sass new file mode 100644 index 0000000..e83f361 --- /dev/null +++ b/themes/lucky/sass/_bulma/elements/other.sass @@ -0,0 +1,31 @@ +@import "../utilities/mixins" + +.block + @extend %block + +.delete + @extend %delete + +.heading + display: block + font-size: 11px + letter-spacing: 1px + margin-bottom: 5px + text-transform: uppercase + +.loader + @extend %loader + +.number + align-items: center + background-color: $background + border-radius: $radius-rounded + display: inline-flex + font-size: $size-medium + height: 2em + justify-content: center + margin-right: 1.5rem + min-width: 2.5em + padding: 0.25rem 0.5rem + text-align: center + vertical-align: top diff --git a/themes/lucky/sass/_bulma/elements/progress.sass b/themes/lucky/sass/_bulma/elements/progress.sass new file mode 100644 index 0000000..4daeb80 --- /dev/null +++ b/themes/lucky/sass/_bulma/elements/progress.sass @@ -0,0 +1,73 @@ +@import "../utilities/mixins" + +$progress-bar-background-color: $border-light !default +$progress-value-background-color: $text !default +$progress-border-radius: $radius-rounded !default + +$progress-indeterminate-duration: 1.5s !default + +$progress-colors: $colors !default + +.progress + @extend %block + -moz-appearance: none + -webkit-appearance: none + border: none + border-radius: $progress-border-radius + display: block + height: $size-normal + overflow: hidden + padding: 0 + width: 100% + &::-webkit-progress-bar + background-color: $progress-bar-background-color + &::-webkit-progress-value + background-color: $progress-value-background-color + &::-moz-progress-bar + background-color: $progress-value-background-color + &::-ms-fill + background-color: $progress-value-background-color + border: none + // Colors + @each $name, $pair in $progress-colors + $color: nth($pair, 1) + &.is-#{$name} + &::-webkit-progress-value + background-color: $color + &::-moz-progress-bar + background-color: $color + &::-ms-fill + background-color: $color + &:indeterminate + background-image: linear-gradient(to right, $color 30%, $progress-bar-background-color 30%) + + &:indeterminate + animation-duration: $progress-indeterminate-duration + animation-iteration-count: infinite + animation-name: moveIndeterminate + animation-timing-function: linear + background-color: $progress-bar-background-color + background-image: linear-gradient(to right, $text 30%, $progress-bar-background-color 30%) + background-position: top left + background-repeat: no-repeat + background-size: 150% 150% + &::-webkit-progress-bar + background-color: transparent + &::-moz-progress-bar + background-color: transparent + &::-ms-fill + animation-name: none + + // Sizes + &.is-small + height: $size-small + &.is-medium + height: $size-medium + &.is-large + height: $size-large + +@keyframes moveIndeterminate + from + background-position: 200% 0 + to + background-position: -200% 0 diff --git a/themes/lucky/sass/_bulma/elements/table.sass b/themes/lucky/sass/_bulma/elements/table.sass new file mode 100644 index 0000000..f47d212 --- /dev/null +++ b/themes/lucky/sass/_bulma/elements/table.sass @@ -0,0 +1,134 @@ +@import "../utilities/mixins" + +$table-color: $text-strong !default +$table-background-color: $scheme-main !default + +$table-cell-border: 1px solid $border !default +$table-cell-border-width: 0 0 1px !default +$table-cell-padding: 0.5em 0.75em !default +$table-cell-heading-color: $text-strong !default +$table-cell-text-align: left !default + +$table-head-cell-border-width: 0 0 2px !default +$table-head-cell-color: $text-strong !default +$table-foot-cell-border-width: 2px 0 0 !default +$table-foot-cell-color: $text-strong !default + +$table-head-background-color: transparent !default +$table-body-background-color: transparent !default +$table-foot-background-color: transparent !default + +$table-row-hover-background-color: $scheme-main-bis !default + +$table-row-active-background-color: $primary !default +$table-row-active-color: $primary-invert !default + +$table-striped-row-even-background-color: $scheme-main-bis !default +$table-striped-row-even-hover-background-color: $scheme-main-ter !default + +$table-colors: $colors !default + +.table + @extend %block + background-color: $table-background-color + color: $table-color + td, + th + border: $table-cell-border + border-width: $table-cell-border-width + padding: $table-cell-padding + vertical-align: top + // Colors + @each $name, $pair in $table-colors + $color: nth($pair, 1) + $color-invert: nth($pair, 2) + &.is-#{$name} + background-color: $color + border-color: $color + color: $color-invert + // Modifiers + &.is-narrow + white-space: nowrap + width: 1% + &.is-selected + background-color: $table-row-active-background-color + color: $table-row-active-color + a, + strong + color: currentColor + &.is-vcentered + vertical-align: middle + th + color: $table-cell-heading-color + &:not([align]) + text-align: $table-cell-text-align + tr + &.is-selected + background-color: $table-row-active-background-color + color: $table-row-active-color + a, + strong + color: currentColor + td, + th + border-color: $table-row-active-color + color: currentColor + thead + background-color: $table-head-background-color + td, + th + border-width: $table-head-cell-border-width + color: $table-head-cell-color + tfoot + background-color: $table-foot-background-color + td, + th + border-width: $table-foot-cell-border-width + color: $table-foot-cell-color + tbody + background-color: $table-body-background-color + tr + &:last-child + td, + th + border-bottom-width: 0 + // Modifiers + &.is-bordered + td, + th + border-width: 1px + tr + &:last-child + td, + th + border-bottom-width: 1px + &.is-fullwidth + width: 100% + &.is-hoverable + tbody + tr:not(.is-selected) + &:hover + background-color: $table-row-hover-background-color + &.is-striped + tbody + tr:not(.is-selected) + &:hover + background-color: $table-row-hover-background-color + &:nth-child(even) + background-color: $table-striped-row-even-hover-background-color + &.is-narrow + td, + th + padding: 0.25em 0.5em + &.is-striped + tbody + tr:not(.is-selected) + &:nth-child(even) + background-color: $table-striped-row-even-background-color + +.table-container + @extend %block + +overflow-touch + overflow: auto + overflow-y: hidden + max-width: 100% diff --git a/themes/lucky/sass/_bulma/elements/tag.sass b/themes/lucky/sass/_bulma/elements/tag.sass new file mode 100644 index 0000000..392daee --- /dev/null +++ b/themes/lucky/sass/_bulma/elements/tag.sass @@ -0,0 +1,140 @@ +@import "../utilities/mixins" + +$tag-background-color: $background !default +$tag-color: $text !default +$tag-radius: $radius !default +$tag-delete-margin: 1px !default + +$tag-colors: $colors !default + +.tags + align-items: center + display: flex + flex-wrap: wrap + justify-content: flex-start + .tag + margin-bottom: 0.5rem + &:not(:last-child) + +ltr-property("margin", 0.5rem) + &:last-child + margin-bottom: -0.5rem + &:not(:last-child) + margin-bottom: 1rem + // Sizes + &.are-medium + .tag:not(.is-normal):not(.is-large) + font-size: $size-normal + &.are-large + .tag:not(.is-normal):not(.is-medium) + font-size: $size-medium + &.is-centered + justify-content: center + .tag + margin-right: 0.25rem + margin-left: 0.25rem + &.is-right + justify-content: flex-end + .tag + &:not(:first-child) + margin-left: 0.5rem + &:not(:last-child) + margin-right: 0 + &.has-addons + .tag + +ltr-property("margin", 0) + &:not(:first-child) + +ltr-property("margin", 0, false) + +ltr + border-top-left-radius: 0 + border-bottom-left-radius: 0 + +rtl + border-top-right-radius: 0 + border-bottom-right-radius: 0 + &:not(:last-child) + +ltr + border-top-right-radius: 0 + border-bottom-right-radius: 0 + +rtl + border-top-left-radius: 0 + border-bottom-left-radius: 0 + +.tag:not(body) + align-items: center + background-color: $tag-background-color + border-radius: $tag-radius + color: $tag-color + display: inline-flex + font-size: $size-small + height: 2em + justify-content: center + line-height: 1.5 + padding-left: 0.75em + padding-right: 0.75em + white-space: nowrap + .delete + +ltr-property("margin", 0.25rem, false) + +ltr-property("margin", -0.375rem) + // Colors + @each $name, $pair in $tag-colors + $color: nth($pair, 1) + $color-invert: nth($pair, 2) + &.is-#{$name} + background-color: $color + color: $color-invert + // If a light and dark colors are provided + @if length($pair) > 3 + $color-light: nth($pair, 3) + $color-dark: nth($pair, 4) + &.is-light + background-color: $color-light + color: $color-dark + // Sizes + &.is-normal + font-size: $size-small + &.is-medium + font-size: $size-normal + &.is-large + font-size: $size-medium + .icon + &:first-child:not(:last-child) + +ltr-property("margin", -0.375em, false) + +ltr-property("margin", 0.1875em) + &:last-child:not(:first-child) + +ltr-property("margin", 0.1875em, false) + +ltr-property("margin", -0.375em) + &:first-child:last-child + +ltr-property("margin", -0.375em, false) + +ltr-property("margin", -0.375em) + // Modifiers + &.is-delete + +ltr-property("margin", $tag-delete-margin, false) + padding: 0 + position: relative + width: 2em + &::before, + &::after + background-color: currentColor + content: "" + display: block + left: 50% + position: absolute + top: 50% + transform: translateX(-50%) translateY(-50%) rotate(45deg) + transform-origin: center center + &::before + height: 1px + width: 50% + &::after + height: 50% + width: 1px + &:hover, + &:focus + background-color: darken($tag-background-color, 5%) + &:active + background-color: darken($tag-background-color, 10%) + &.is-rounded + border-radius: $radius-rounded + +a.tag + &:hover + text-decoration: underline diff --git a/themes/lucky/sass/_bulma/elements/title.sass b/themes/lucky/sass/_bulma/elements/title.sass new file mode 100644 index 0000000..022420c --- /dev/null +++ b/themes/lucky/sass/_bulma/elements/title.sass @@ -0,0 +1,70 @@ +@import "../utilities/mixins" + +$title-color: $text-strong !default +$title-family: false !default +$title-size: $size-3 !default +$title-weight: $weight-semibold !default +$title-line-height: 1.125 !default +$title-strong-color: inherit !default +$title-strong-weight: inherit !default +$title-sub-size: 0.75em !default +$title-sup-size: 0.75em !default + +$subtitle-color: $text !default +$subtitle-family: false !default +$subtitle-size: $size-5 !default +$subtitle-weight: $weight-normal !default +$subtitle-line-height: 1.25 !default +$subtitle-strong-color: $text-strong !default +$subtitle-strong-weight: $weight-semibold !default +$subtitle-negative-margin: -1.25rem !default + +.title, +.subtitle + @extend %block + word-break: break-word + em, + span + font-weight: inherit + sub + font-size: $title-sub-size + sup + font-size: $title-sup-size + .tag + vertical-align: middle + +.title + color: $title-color + @if $title-family + font-family: $title-family + font-size: $title-size + font-weight: $title-weight + line-height: $title-line-height + strong + color: $title-strong-color + font-weight: $title-strong-weight + &:not(.is-spaced) + .subtitle + margin-top: $subtitle-negative-margin + // Sizes + @each $size in $sizes + $i: index($sizes, $size) + &.is-#{$i} + font-size: $size + +.subtitle + color: $subtitle-color + @if $subtitle-family + font-family: $subtitle-family + font-size: $subtitle-size + font-weight: $subtitle-weight + line-height: $subtitle-line-height + strong + color: $subtitle-strong-color + font-weight: $subtitle-strong-weight + &:not(.is-spaced) + .title + margin-top: $subtitle-negative-margin + // Sizes + @each $size in $sizes + $i: index($sizes, $size) + &.is-#{$i} + font-size: $size diff --git a/themes/lucky/sass/_bulma/form/_all.sass b/themes/lucky/sass/_bulma/form/_all.sass new file mode 100644 index 0000000..0a15f80 --- /dev/null +++ b/themes/lucky/sass/_bulma/form/_all.sass @@ -0,0 +1,9 @@ +/* Bulma Form */ +@charset "utf-8" + +@import "shared" +@import "input-textarea" +@import "checkbox-radio" +@import "select" +@import "file" +@import "tools" diff --git a/themes/lucky/sass/_bulma/form/checkbox-radio.sass b/themes/lucky/sass/_bulma/form/checkbox-radio.sass new file mode 100644 index 0000000..f033d11 --- /dev/null +++ b/themes/lucky/sass/_bulma/form/checkbox-radio.sass @@ -0,0 +1,22 @@ +%checkbox-radio + cursor: pointer + display: inline-block + line-height: 1.25 + position: relative + input + cursor: pointer + &:hover + color: $input-hover-color + &[disabled], + fieldset[disabled] &, + input[disabled] + color: $input-disabled-color + cursor: not-allowed + +.checkbox + @extend %checkbox-radio + +.radio + @extend %checkbox-radio + & + .radio + +ltr-property("margin", 0.5em, false) diff --git a/themes/lucky/sass/_bulma/form/file.sass b/themes/lucky/sass/_bulma/form/file.sass new file mode 100644 index 0000000..9b84c84 --- /dev/null +++ b/themes/lucky/sass/_bulma/form/file.sass @@ -0,0 +1,184 @@ +$file-border-color: $border !default +$file-radius: $radius !default + +$file-cta-background-color: $scheme-main-ter !default +$file-cta-color: $text !default +$file-cta-hover-color: $text-strong !default +$file-cta-active-color: $text-strong !default + +$file-name-border-color: $border !default +$file-name-border-style: solid !default +$file-name-border-width: 1px 1px 1px 0 !default +$file-name-max-width: 16em !default + +$file-colors: $form-colors !default + +.file + @extend %unselectable + align-items: stretch + display: flex + justify-content: flex-start + position: relative + // Colors + @each $name, $pair in $file-colors + $color: nth($pair, 1) + $color-invert: nth($pair, 2) + &.is-#{$name} + .file-cta + background-color: $color + border-color: transparent + color: $color-invert + &:hover, + &.is-hovered + .file-cta + background-color: bulmaDarken($color, 2.5%) + border-color: transparent + color: $color-invert + &:focus, + &.is-focused + .file-cta + border-color: transparent + box-shadow: 0 0 0.5em bulmaRgba($color, 0.25) + color: $color-invert + &:active, + &.is-active + .file-cta + background-color: bulmaDarken($color, 5%) + border-color: transparent + color: $color-invert + // Sizes + &.is-small + font-size: $size-small + &.is-normal + font-size: $size-normal + &.is-medium + font-size: $size-medium + .file-icon + .fa + font-size: 21px + &.is-large + font-size: $size-large + .file-icon + .fa + font-size: 28px + // Modifiers + &.has-name + .file-cta + border-bottom-right-radius: 0 + border-top-right-radius: 0 + .file-name + border-bottom-left-radius: 0 + border-top-left-radius: 0 + &.is-empty + .file-cta + border-radius: $file-radius + .file-name + display: none + &.is-boxed + .file-label + flex-direction: column + .file-cta + flex-direction: column + height: auto + padding: 1em 3em + .file-name + border-width: 0 1px 1px + .file-icon + height: 1.5em + width: 1.5em + .fa + font-size: 21px + &.is-small + .file-icon .fa + font-size: 14px + &.is-medium + .file-icon .fa + font-size: 28px + &.is-large + .file-icon .fa + font-size: 35px + &.has-name + .file-cta + border-radius: $file-radius $file-radius 0 0 + .file-name + border-radius: 0 0 $file-radius $file-radius + border-width: 0 1px 1px + &.is-centered + justify-content: center + &.is-fullwidth + .file-label + width: 100% + .file-name + flex-grow: 1 + max-width: none + &.is-right + justify-content: flex-end + .file-cta + border-radius: 0 $file-radius $file-radius 0 + .file-name + border-radius: $file-radius 0 0 $file-radius + border-width: 1px 0 1px 1px + order: -1 + +.file-label + align-items: stretch + display: flex + cursor: pointer + justify-content: flex-start + overflow: hidden + position: relative + &:hover + .file-cta + background-color: bulmaDarken($file-cta-background-color, 2.5%) + color: $file-cta-hover-color + .file-name + border-color: bulmaDarken($file-name-border-color, 2.5%) + &:active + .file-cta + background-color: bulmaDarken($file-cta-background-color, 5%) + color: $file-cta-active-color + .file-name + border-color: bulmaDarken($file-name-border-color, 5%) + +.file-input + height: 100% + left: 0 + opacity: 0 + outline: none + position: absolute + top: 0 + width: 100% + +.file-cta, +.file-name + @extend %control + border-color: $file-border-color + border-radius: $file-radius + font-size: 1em + padding-left: 1em + padding-right: 1em + white-space: nowrap + +.file-cta + background-color: $file-cta-background-color + color: $file-cta-color + +.file-name + border-color: $file-name-border-color + border-style: $file-name-border-style + border-width: $file-name-border-width + display: block + max-width: $file-name-max-width + overflow: hidden + text-align: inherit + text-overflow: ellipsis + +.file-icon + align-items: center + display: flex + height: 1em + justify-content: center + +ltr-property("margin", 0.5em) + width: 1em + .fa + font-size: 14px diff --git a/themes/lucky/sass/_bulma/form/input-textarea.sass b/themes/lucky/sass/_bulma/form/input-textarea.sass new file mode 100644 index 0000000..8d842a0 --- /dev/null +++ b/themes/lucky/sass/_bulma/form/input-textarea.sass @@ -0,0 +1,66 @@ +$textarea-padding: $control-padding-horizontal !default +$textarea-max-height: 40em !default +$textarea-min-height: 8em !default + +$textarea-colors: $form-colors !default + +%input-textarea + @extend %input + box-shadow: $input-shadow + max-width: 100% + width: 100% + &[readonly] + box-shadow: none + // Colors + @each $name, $pair in $textarea-colors + $color: nth($pair, 1) + &.is-#{$name} + border-color: $color + &:focus, + &.is-focused, + &:active, + &.is-active + box-shadow: $input-focus-box-shadow-size bulmaRgba($color, 0.25) + // Sizes + &.is-small + +control-small + &.is-medium + +control-medium + &.is-large + +control-large + // Modifiers + &.is-fullwidth + display: block + width: 100% + &.is-inline + display: inline + width: auto + +.input + @extend %input-textarea + &.is-rounded + border-radius: $radius-rounded + padding-left: calc(#{$control-padding-horizontal} + 0.375em) + padding-right: calc(#{$control-padding-horizontal} + 0.375em) + &.is-static + background-color: transparent + border-color: transparent + box-shadow: none + padding-left: 0 + padding-right: 0 + +.textarea + @extend %input-textarea + display: block + max-width: 100% + min-width: 100% + padding: $textarea-padding + resize: vertical + &:not([rows]) + max-height: $textarea-max-height + min-height: $textarea-min-height + &[rows] + height: initial + // Modifiers + &.has-fixed-size + resize: none diff --git a/themes/lucky/sass/_bulma/form/select.sass b/themes/lucky/sass/_bulma/form/select.sass new file mode 100644 index 0000000..951b735 --- /dev/null +++ b/themes/lucky/sass/_bulma/form/select.sass @@ -0,0 +1,88 @@ +$select-colors: $form-colors !default + +.select + display: inline-block + max-width: 100% + position: relative + vertical-align: top + &:not(.is-multiple) + height: $input-height + &:not(.is-multiple):not(.is-loading) + &::after + @extend %arrow + border-color: $input-arrow + +ltr-position(1.125em) + z-index: 4 + &.is-rounded + select + border-radius: $radius-rounded + +ltr-property("padding", 1em, false) + select + @extend %input + cursor: pointer + display: block + font-size: 1em + max-width: 100% + outline: none + &::-ms-expand + display: none + &[disabled]:hover, + fieldset[disabled] &:hover + border-color: $input-disabled-border-color + &:not([multiple]) + +ltr-property("padding", 2.5em) + &[multiple] + height: auto + padding: 0 + option + padding: 0.5em 1em + // States + &:not(.is-multiple):not(.is-loading):hover + &::after + border-color: $input-hover-color + // Colors + @each $name, $pair in $select-colors + $color: nth($pair, 1) + &.is-#{$name} + &:not(:hover)::after + border-color: $color + select + border-color: $color + &:hover, + &.is-hovered + border-color: bulmaDarken($color, 5%) + &:focus, + &.is-focused, + &:active, + &.is-active + box-shadow: $input-focus-box-shadow-size bulmaRgba($color, 0.25) + // Sizes + &.is-small + +control-small + &.is-medium + +control-medium + &.is-large + +control-large + // Modifiers + &.is-disabled + &::after + border-color: $input-disabled-color !important + opacity: 0.5 + &.is-fullwidth + width: 100% + select + width: 100% + &.is-loading + &::after + @extend %loader + margin-top: 0 + position: absolute + +ltr-position(0.625em) + top: 0.625em + transform: none + &.is-small:after + font-size: $size-small + &.is-medium:after + font-size: $size-medium + &.is-large:after + font-size: $size-large diff --git a/themes/lucky/sass/_bulma/form/shared.sass b/themes/lucky/sass/_bulma/form/shared.sass new file mode 100644 index 0000000..422d7aa --- /dev/null +++ b/themes/lucky/sass/_bulma/form/shared.sass @@ -0,0 +1,60 @@ +@import "../utilities/controls" +@import "../utilities/mixins" + +$form-colors: $colors !default + +$input-color: $text-strong !default +$input-background-color: $scheme-main !default +$input-border-color: $border !default +$input-height: $control-height !default +$input-shadow: inset 0 0.0625em 0.125em rgba($scheme-invert, 0.05) !default +$input-placeholder-color: bulmaRgba($input-color, 0.3) !default + +$input-hover-color: $text-strong !default +$input-hover-border-color: $border-hover !default + +$input-focus-color: $text-strong !default +$input-focus-border-color: $link !default +$input-focus-box-shadow-size: 0 0 0 0.125em !default +$input-focus-box-shadow-color: bulmaRgba($link, 0.25) !default + +$input-disabled-color: $text-light !default +$input-disabled-background-color: $background !default +$input-disabled-border-color: $background !default +$input-disabled-placeholder-color: bulmaRgba($input-disabled-color, 0.3) !default + +$input-arrow: $link !default + +$input-icon-color: $border !default +$input-icon-active-color: $text !default + +$input-radius: $radius !default + +=input + @extend %control + background-color: $input-background-color + border-color: $input-border-color + border-radius: $input-radius + color: $input-color + +placeholder + color: $input-placeholder-color + &:hover, + &.is-hovered + border-color: $input-hover-border-color + &:focus, + &.is-focused, + &:active, + &.is-active + border-color: $input-focus-border-color + box-shadow: $input-focus-box-shadow-size $input-focus-box-shadow-color + &[disabled], + fieldset[disabled] & + background-color: $input-disabled-background-color + border-color: $input-disabled-border-color + box-shadow: none + color: $input-disabled-color + +placeholder + color: $input-disabled-placeholder-color + +%input + +input diff --git a/themes/lucky/sass/_bulma/form/tools.sass b/themes/lucky/sass/_bulma/form/tools.sass new file mode 100644 index 0000000..73b09b6 --- /dev/null +++ b/themes/lucky/sass/_bulma/form/tools.sass @@ -0,0 +1,215 @@ +$label-color: $text-strong !default +$label-weight: $weight-bold !default + +$help-size: $size-small !default + +$label-colors: $form-colors !default + +.label + color: $label-color + display: block + font-size: $size-normal + font-weight: $label-weight + &:not(:last-child) + margin-bottom: 0.5em + // Sizes + &.is-small + font-size: $size-small + &.is-medium + font-size: $size-medium + &.is-large + font-size: $size-large + +.help + display: block + font-size: $help-size + margin-top: 0.25rem + @each $name, $pair in $label-colors + $color: nth($pair, 1) + &.is-#{$name} + color: $color + +// Containers + +.field + &:not(:last-child) + margin-bottom: 0.75rem + // Modifiers + &.has-addons + display: flex + justify-content: flex-start + .control + &:not(:last-child) + +ltr-property("margin", -1px) + &:not(:first-child):not(:last-child) + .button, + .input, + .select select + border-radius: 0 + &:first-child:not(:only-child) + .button, + .input, + .select select + +ltr + border-bottom-right-radius: 0 + border-top-right-radius: 0 + +rtl + border-bottom-left-radius: 0 + border-top-left-radius: 0 + &:last-child:not(:only-child) + .button, + .input, + .select select + +ltr + border-bottom-left-radius: 0 + border-top-left-radius: 0 + +rtl + border-bottom-right-radius: 0 + border-top-right-radius: 0 + .button, + .input, + .select select + &:not([disabled]) + &:hover, + &.is-hovered + z-index: 2 + &:focus, + &.is-focused, + &:active, + &.is-active + z-index: 3 + &:hover + z-index: 4 + &.is-expanded + flex-grow: 1 + flex-shrink: 1 + &.has-addons-centered + justify-content: center + &.has-addons-right + justify-content: flex-end + &.has-addons-fullwidth + .control + flex-grow: 1 + flex-shrink: 0 + &.is-grouped + display: flex + justify-content: flex-start + & > .control + flex-shrink: 0 + &:not(:last-child) + margin-bottom: 0 + +ltr-property("margin", 0.75rem) + &.is-expanded + flex-grow: 1 + flex-shrink: 1 + &.is-grouped-centered + justify-content: center + &.is-grouped-right + justify-content: flex-end + &.is-grouped-multiline + flex-wrap: wrap + & > .control + &:last-child, + &:not(:last-child) + margin-bottom: 0.75rem + &:last-child + margin-bottom: -0.75rem + &:not(:last-child) + margin-bottom: 0 + &.is-horizontal + +tablet + display: flex + +.field-label + .label + font-size: inherit + +mobile + margin-bottom: 0.5rem + +tablet + flex-basis: 0 + flex-grow: 1 + flex-shrink: 0 + +ltr-property("margin", 1.5rem) + text-align: right + &.is-small + font-size: $size-small + padding-top: 0.375em + &.is-normal + padding-top: 0.375em + &.is-medium + font-size: $size-medium + padding-top: 0.375em + &.is-large + font-size: $size-large + padding-top: 0.375em + +.field-body + .field .field + margin-bottom: 0 + +tablet + display: flex + flex-basis: 0 + flex-grow: 5 + flex-shrink: 1 + .field + margin-bottom: 0 + & > .field + flex-shrink: 1 + &:not(.is-narrow) + flex-grow: 1 + &:not(:last-child) + +ltr-property("margin", 0.75rem) + +.control + box-sizing: border-box + clear: both + font-size: $size-normal + position: relative + text-align: inherit + // Modifiers + &.has-icons-left, + &.has-icons-right + .input, + .select + &:focus + & ~ .icon + color: $input-icon-active-color + &.is-small ~ .icon + font-size: $size-small + &.is-medium ~ .icon + font-size: $size-medium + &.is-large ~ .icon + font-size: $size-large + .icon + color: $input-icon-color + height: $input-height + pointer-events: none + position: absolute + top: 0 + width: $input-height + z-index: 4 + &.has-icons-left + .input, + .select select + padding-left: $input-height + .icon.is-left + left: 0 + &.has-icons-right + .input, + .select select + padding-right: $input-height + .icon.is-right + right: 0 + &.is-loading + &::after + @extend %loader + position: absolute !important + +ltr-position(0.625em) + top: 0.625em + z-index: 4 + &.is-small:after + font-size: $size-small + &.is-medium:after + font-size: $size-medium + &.is-large:after + font-size: $size-large diff --git a/themes/lucky/sass/_bulma/grid/_all.sass b/themes/lucky/sass/_bulma/grid/_all.sass new file mode 100644 index 0000000..0b5ed31 --- /dev/null +++ b/themes/lucky/sass/_bulma/grid/_all.sass @@ -0,0 +1,5 @@ +/* Bulma Grid */ +@charset "utf-8" + +@import "columns" +@import "tiles" diff --git a/themes/lucky/sass/_bulma/grid/columns.sass b/themes/lucky/sass/_bulma/grid/columns.sass new file mode 100644 index 0000000..e66112b --- /dev/null +++ b/themes/lucky/sass/_bulma/grid/columns.sass @@ -0,0 +1,513 @@ +@import "../utilities/mixins" + +$column-gap: 0.75rem !default + +.column + display: block + flex-basis: 0 + flex-grow: 1 + flex-shrink: 1 + padding: $column-gap + .columns.is-mobile > &.is-narrow + flex: none + width: unset + .columns.is-mobile > &.is-full + flex: none + width: 100% + .columns.is-mobile > &.is-three-quarters + flex: none + width: 75% + .columns.is-mobile > &.is-two-thirds + flex: none + width: 66.6666% + .columns.is-mobile > &.is-half + flex: none + width: 50% + .columns.is-mobile > &.is-one-third + flex: none + width: 33.3333% + .columns.is-mobile > &.is-one-quarter + flex: none + width: 25% + .columns.is-mobile > &.is-one-fifth + flex: none + width: 20% + .columns.is-mobile > &.is-two-fifths + flex: none + width: 40% + .columns.is-mobile > &.is-three-fifths + flex: none + width: 60% + .columns.is-mobile > &.is-four-fifths + flex: none + width: 80% + .columns.is-mobile > &.is-offset-three-quarters + +ltr-property("margin", 75%, false) + .columns.is-mobile > &.is-offset-two-thirds + +ltr-property("margin", 66.6666%, false) + .columns.is-mobile > &.is-offset-half + +ltr-property("margin", 50%, false) + .columns.is-mobile > &.is-offset-one-third + +ltr-property("margin", 33.3333%, false) + .columns.is-mobile > &.is-offset-one-quarter + +ltr-property("margin", 25%, false) + .columns.is-mobile > &.is-offset-one-fifth + +ltr-property("margin", 20%, false) + .columns.is-mobile > &.is-offset-two-fifths + +ltr-property("margin", 40%, false) + .columns.is-mobile > &.is-offset-three-fifths + +ltr-property("margin", 60%, false) + .columns.is-mobile > &.is-offset-four-fifths + +ltr-property("margin", 80%, false) + @for $i from 0 through 12 + .columns.is-mobile > &.is-#{$i} + flex: none + width: percentage(divide($i, 12)) + .columns.is-mobile > &.is-offset-#{$i} + +ltr-property("margin", percentage(divide($i, 12)), false) + +mobile + &.is-narrow-mobile + flex: none + width: unset + &.is-full-mobile + flex: none + width: 100% + &.is-three-quarters-mobile + flex: none + width: 75% + &.is-two-thirds-mobile + flex: none + width: 66.6666% + &.is-half-mobile + flex: none + width: 50% + &.is-one-third-mobile + flex: none + width: 33.3333% + &.is-one-quarter-mobile + flex: none + width: 25% + &.is-one-fifth-mobile + flex: none + width: 20% + &.is-two-fifths-mobile + flex: none + width: 40% + &.is-three-fifths-mobile + flex: none + width: 60% + &.is-four-fifths-mobile + flex: none + width: 80% + &.is-offset-three-quarters-mobile + +ltr-property("margin", 75%, false) + &.is-offset-two-thirds-mobile + +ltr-property("margin", 66.6666%, false) + &.is-offset-half-mobile + +ltr-property("margin", 50%, false) + &.is-offset-one-third-mobile + +ltr-property("margin", 33.3333%, false) + &.is-offset-one-quarter-mobile + +ltr-property("margin", 25%, false) + &.is-offset-one-fifth-mobile + +ltr-property("margin", 20%, false) + &.is-offset-two-fifths-mobile + +ltr-property("margin", 40%, false) + &.is-offset-three-fifths-mobile + +ltr-property("margin", 60%, false) + &.is-offset-four-fifths-mobile + +ltr-property("margin", 80%, false) + @for $i from 0 through 12 + &.is-#{$i}-mobile + flex: none + width: percentage(divide($i, 12)) + &.is-offset-#{$i}-mobile + +ltr-property("margin", percentage(divide($i, 12)), false) + +tablet + &.is-narrow, + &.is-narrow-tablet + flex: none + width: unset + &.is-full, + &.is-full-tablet + flex: none + width: 100% + &.is-three-quarters, + &.is-three-quarters-tablet + flex: none + width: 75% + &.is-two-thirds, + &.is-two-thirds-tablet + flex: none + width: 66.6666% + &.is-half, + &.is-half-tablet + flex: none + width: 50% + &.is-one-third, + &.is-one-third-tablet + flex: none + width: 33.3333% + &.is-one-quarter, + &.is-one-quarter-tablet + flex: none + width: 25% + &.is-one-fifth, + &.is-one-fifth-tablet + flex: none + width: 20% + &.is-two-fifths, + &.is-two-fifths-tablet + flex: none + width: 40% + &.is-three-fifths, + &.is-three-fifths-tablet + flex: none + width: 60% + &.is-four-fifths, + &.is-four-fifths-tablet + flex: none + width: 80% + &.is-offset-three-quarters, + &.is-offset-three-quarters-tablet + +ltr-property("margin", 75%, false) + &.is-offset-two-thirds, + &.is-offset-two-thirds-tablet + +ltr-property("margin", 66.6666%, false) + &.is-offset-half, + &.is-offset-half-tablet + +ltr-property("margin", 50%, false) + &.is-offset-one-third, + &.is-offset-one-third-tablet + +ltr-property("margin", 33.3333%, false) + &.is-offset-one-quarter, + &.is-offset-one-quarter-tablet + +ltr-property("margin", 25%, false) + &.is-offset-one-fifth, + &.is-offset-one-fifth-tablet + +ltr-property("margin", 20%, false) + &.is-offset-two-fifths, + &.is-offset-two-fifths-tablet + +ltr-property("margin", 40%, false) + &.is-offset-three-fifths, + &.is-offset-three-fifths-tablet + +ltr-property("margin", 60%, false) + &.is-offset-four-fifths, + &.is-offset-four-fifths-tablet + +ltr-property("margin", 80%, false) + @for $i from 0 through 12 + &.is-#{$i}, + &.is-#{$i}-tablet + flex: none + width: percentage(divide($i, 12)) + &.is-offset-#{$i}, + &.is-offset-#{$i}-tablet + +ltr-property("margin", percentage(divide($i, 12)), false) + +touch + &.is-narrow-touch + flex: none + width: unset + &.is-full-touch + flex: none + width: 100% + &.is-three-quarters-touch + flex: none + width: 75% + &.is-two-thirds-touch + flex: none + width: 66.6666% + &.is-half-touch + flex: none + width: 50% + &.is-one-third-touch + flex: none + width: 33.3333% + &.is-one-quarter-touch + flex: none + width: 25% + &.is-one-fifth-touch + flex: none + width: 20% + &.is-two-fifths-touch + flex: none + width: 40% + &.is-three-fifths-touch + flex: none + width: 60% + &.is-four-fifths-touch + flex: none + width: 80% + &.is-offset-three-quarters-touch + +ltr-property("margin", 75%, false) + &.is-offset-two-thirds-touch + +ltr-property("margin", 66.6666%, false) + &.is-offset-half-touch + +ltr-property("margin", 50%, false) + &.is-offset-one-third-touch + +ltr-property("margin", 33.3333%, false) + &.is-offset-one-quarter-touch + +ltr-property("margin", 25%, false) + &.is-offset-one-fifth-touch + +ltr-property("margin", 20%, false) + &.is-offset-two-fifths-touch + +ltr-property("margin", 40%, false) + &.is-offset-three-fifths-touch + +ltr-property("margin", 60%, false) + &.is-offset-four-fifths-touch + +ltr-property("margin", 80%, false) + @for $i from 0 through 12 + &.is-#{$i}-touch + flex: none + width: percentage(divide($i, 12)) + &.is-offset-#{$i}-touch + +ltr-property("margin", percentage(divide($i, 12)), false) + +desktop + &.is-narrow-desktop + flex: none + width: unset + &.is-full-desktop + flex: none + width: 100% + &.is-three-quarters-desktop + flex: none + width: 75% + &.is-two-thirds-desktop + flex: none + width: 66.6666% + &.is-half-desktop + flex: none + width: 50% + &.is-one-third-desktop + flex: none + width: 33.3333% + &.is-one-quarter-desktop + flex: none + width: 25% + &.is-one-fifth-desktop + flex: none + width: 20% + &.is-two-fifths-desktop + flex: none + width: 40% + &.is-three-fifths-desktop + flex: none + width: 60% + &.is-four-fifths-desktop + flex: none + width: 80% + &.is-offset-three-quarters-desktop + +ltr-property("margin", 75%, false) + &.is-offset-two-thirds-desktop + +ltr-property("margin", 66.6666%, false) + &.is-offset-half-desktop + +ltr-property("margin", 50%, false) + &.is-offset-one-third-desktop + +ltr-property("margin", 33.3333%, false) + &.is-offset-one-quarter-desktop + +ltr-property("margin", 25%, false) + &.is-offset-one-fifth-desktop + +ltr-property("margin", 20%, false) + &.is-offset-two-fifths-desktop + +ltr-property("margin", 40%, false) + &.is-offset-three-fifths-desktop + +ltr-property("margin", 60%, false) + &.is-offset-four-fifths-desktop + +ltr-property("margin", 80%, false) + @for $i from 0 through 12 + &.is-#{$i}-desktop + flex: none + width: percentage(divide($i, 12)) + &.is-offset-#{$i}-desktop + +ltr-property("margin", percentage(divide($i, 12)), false) + +widescreen + &.is-narrow-widescreen + flex: none + width: unset + &.is-full-widescreen + flex: none + width: 100% + &.is-three-quarters-widescreen + flex: none + width: 75% + &.is-two-thirds-widescreen + flex: none + width: 66.6666% + &.is-half-widescreen + flex: none + width: 50% + &.is-one-third-widescreen + flex: none + width: 33.3333% + &.is-one-quarter-widescreen + flex: none + width: 25% + &.is-one-fifth-widescreen + flex: none + width: 20% + &.is-two-fifths-widescreen + flex: none + width: 40% + &.is-three-fifths-widescreen + flex: none + width: 60% + &.is-four-fifths-widescreen + flex: none + width: 80% + &.is-offset-three-quarters-widescreen + +ltr-property("margin", 75%, false) + &.is-offset-two-thirds-widescreen + +ltr-property("margin", 66.6666%, false) + &.is-offset-half-widescreen + +ltr-property("margin", 50%, false) + &.is-offset-one-third-widescreen + +ltr-property("margin", 33.3333%, false) + &.is-offset-one-quarter-widescreen + +ltr-property("margin", 25%, false) + &.is-offset-one-fifth-widescreen + +ltr-property("margin", 20%, false) + &.is-offset-two-fifths-widescreen + +ltr-property("margin", 40%, false) + &.is-offset-three-fifths-widescreen + +ltr-property("margin", 60%, false) + &.is-offset-four-fifths-widescreen + +ltr-property("margin", 80%, false) + @for $i from 0 through 12 + &.is-#{$i}-widescreen + flex: none + width: percentage(divide($i, 12)) + &.is-offset-#{$i}-widescreen + +ltr-property("margin", percentage(divide($i, 12)), false) + +fullhd + &.is-narrow-fullhd + flex: none + width: unset + &.is-full-fullhd + flex: none + width: 100% + &.is-three-quarters-fullhd + flex: none + width: 75% + &.is-two-thirds-fullhd + flex: none + width: 66.6666% + &.is-half-fullhd + flex: none + width: 50% + &.is-one-third-fullhd + flex: none + width: 33.3333% + &.is-one-quarter-fullhd + flex: none + width: 25% + &.is-one-fifth-fullhd + flex: none + width: 20% + &.is-two-fifths-fullhd + flex: none + width: 40% + &.is-three-fifths-fullhd + flex: none + width: 60% + &.is-four-fifths-fullhd + flex: none + width: 80% + &.is-offset-three-quarters-fullhd + +ltr-property("margin", 75%, false) + &.is-offset-two-thirds-fullhd + +ltr-property("margin", 66.6666%, false) + &.is-offset-half-fullhd + +ltr-property("margin", 50%, false) + &.is-offset-one-third-fullhd + +ltr-property("margin", 33.3333%, false) + &.is-offset-one-quarter-fullhd + +ltr-property("margin", 25%, false) + &.is-offset-one-fifth-fullhd + +ltr-property("margin", 20%, false) + &.is-offset-two-fifths-fullhd + +ltr-property("margin", 40%, false) + &.is-offset-three-fifths-fullhd + +ltr-property("margin", 60%, false) + &.is-offset-four-fifths-fullhd + +ltr-property("margin", 80%, false) + @for $i from 0 through 12 + &.is-#{$i}-fullhd + flex: none + width: percentage(divide($i, 12)) + &.is-offset-#{$i}-fullhd + +ltr-property("margin", percentage(divide($i, 12)), false) + +.columns + +ltr-property("margin", (-$column-gap), false) + +ltr-property("margin", (-$column-gap)) + margin-top: (-$column-gap) + &:last-child + margin-bottom: (-$column-gap) + &:not(:last-child) + margin-bottom: calc(1.5rem - #{$column-gap}) + // Modifiers + &.is-centered + justify-content: center + &.is-gapless + +ltr-property("margin", 0, false) + +ltr-property("margin", 0) + margin-top: 0 + & > .column + margin: 0 + padding: 0 !important + &:not(:last-child) + margin-bottom: 1.5rem + &:last-child + margin-bottom: 0 + &.is-mobile + display: flex + &.is-multiline + flex-wrap: wrap + &.is-vcentered + align-items: center + // Responsiveness + +tablet + &:not(.is-desktop) + display: flex + +desktop + // Modifiers + &.is-desktop + display: flex + +@if $variable-columns + .columns.is-variable + --columnGap: 0.75rem + +ltr-property("margin", calc(-1 * var(--columnGap)), false) + +ltr-property("margin", calc(-1 * var(--columnGap))) + > .column + padding-left: var(--columnGap) + padding-right: var(--columnGap) + @for $i from 0 through 8 + &.is-#{$i} + --columnGap: #{$i * 0.25rem} + +mobile + &.is-#{$i}-mobile + --columnGap: #{$i * 0.25rem} + +tablet + &.is-#{$i}-tablet + --columnGap: #{$i * 0.25rem} + +tablet-only + &.is-#{$i}-tablet-only + --columnGap: #{$i * 0.25rem} + +touch + &.is-#{$i}-touch + --columnGap: #{$i * 0.25rem} + +desktop + &.is-#{$i}-desktop + --columnGap: #{$i * 0.25rem} + +desktop-only + &.is-#{$i}-desktop-only + --columnGap: #{$i * 0.25rem} + +widescreen + &.is-#{$i}-widescreen + --columnGap: #{$i * 0.25rem} + +widescreen-only + &.is-#{$i}-widescreen-only + --columnGap: #{$i * 0.25rem} + +fullhd + &.is-#{$i}-fullhd + --columnGap: #{$i * 0.25rem} diff --git a/themes/lucky/sass/_bulma/grid/tiles.sass b/themes/lucky/sass/_bulma/grid/tiles.sass new file mode 100644 index 0000000..d22d738 --- /dev/null +++ b/themes/lucky/sass/_bulma/grid/tiles.sass @@ -0,0 +1,36 @@ +@import "../utilities/mixins" + +$tile-spacing: 0.75rem !default + +.tile + align-items: stretch + display: block + flex-basis: 0 + flex-grow: 1 + flex-shrink: 1 + min-height: min-content + // Modifiers + &.is-ancestor + margin-left: $tile-spacing * -1 + margin-right: $tile-spacing * -1 + margin-top: $tile-spacing * -1 + &:last-child + margin-bottom: $tile-spacing * -1 + &:not(:last-child) + margin-bottom: $tile-spacing + &.is-child + margin: 0 !important + &.is-parent + padding: $tile-spacing + &.is-vertical + flex-direction: column + & > .tile.is-child:not(:last-child) + margin-bottom: 1.5rem !important + // Responsiveness + +tablet + &:not(.is-child) + display: flex + @for $i from 1 through 12 + &.is-#{$i} + flex: none + width: (divide($i, 12)) * 100% diff --git a/themes/lucky/sass/_bulma/helpers/_all.sass b/themes/lucky/sass/_bulma/helpers/_all.sass new file mode 100644 index 0000000..d673da6 --- /dev/null +++ b/themes/lucky/sass/_bulma/helpers/_all.sass @@ -0,0 +1,12 @@ +/* Bulma Helpers */ +@charset "utf-8" + +@import "color" +@import "flexbox" +@import "float" +@import "other" +@import "overflow" +@import "position" +@import "spacing" +@import "typography" +@import "visibility" diff --git a/themes/lucky/sass/_bulma/helpers/color.sass b/themes/lucky/sass/_bulma/helpers/color.sass new file mode 100644 index 0000000..b7a8a50 --- /dev/null +++ b/themes/lucky/sass/_bulma/helpers/color.sass @@ -0,0 +1,39 @@ +@import "../utilities/derived-variables" + +@each $name, $pair in $colors + $color: nth($pair, 1) + .has-text-#{$name} + color: $color !important + a.has-text-#{$name} + &:hover, + &:focus + color: bulmaDarken($color, 10%) !important + .has-background-#{$name} + background-color: $color !important + @if length($pair) >= 4 + $color-light: nth($pair, 3) + $color-dark: nth($pair, 4) + // Light + .has-text-#{$name}-light + color: $color-light !important + a.has-text-#{$name}-light + &:hover, + &:focus + color: bulmaDarken($color-light, 10%) !important + .has-background-#{$name}-light + background-color: $color-light !important + // Dark + .has-text-#{$name}-dark + color: $color-dark !important + a.has-text-#{$name}-dark + &:hover, + &:focus + color: bulmaLighten($color-dark, 10%) !important + .has-background-#{$name}-dark + background-color: $color-dark !important + +@each $name, $shade in $shades + .has-text-#{$name} + color: $shade !important + .has-background-#{$name} + background-color: $shade !important diff --git a/themes/lucky/sass/_bulma/helpers/flexbox.sass b/themes/lucky/sass/_bulma/helpers/flexbox.sass new file mode 100644 index 0000000..2538a2d --- /dev/null +++ b/themes/lucky/sass/_bulma/helpers/flexbox.sass @@ -0,0 +1,35 @@ +$flex-direction-values: row, row-reverse, column, column-reverse +@each $value in $flex-direction-values + .is-flex-direction-#{$value} + flex-direction: $value !important + +$flex-wrap-values: nowrap, wrap, wrap-reverse +@each $value in $flex-wrap-values + .is-flex-wrap-#{$value} + flex-wrap: $value !important + +$justify-content-values: flex-start, flex-end, center, space-between, space-around, space-evenly, start, end, left, right +@each $value in $justify-content-values + .is-justify-content-#{$value} + justify-content: $value !important + +$align-content-values: flex-start, flex-end, center, space-between, space-around, space-evenly, stretch, start, end, baseline +@each $value in $align-content-values + .is-align-content-#{$value} + align-content: $value !important + +$align-items-values: stretch, flex-start, flex-end, center, baseline, start, end, self-start, self-end +@each $value in $align-items-values + .is-align-items-#{$value} + align-items: $value !important + +$align-self-values: auto, flex-start, flex-end, center, baseline, stretch +@each $value in $align-self-values + .is-align-self-#{$value} + align-self: $value !important + +$flex-operators: grow, shrink +@each $operator in $flex-operators + @for $i from 0 through 5 + .is-flex-#{$operator}-#{$i} + flex-#{$operator}: $i !important diff --git a/themes/lucky/sass/_bulma/helpers/float.sass b/themes/lucky/sass/_bulma/helpers/float.sass new file mode 100644 index 0000000..f62f24e --- /dev/null +++ b/themes/lucky/sass/_bulma/helpers/float.sass @@ -0,0 +1,10 @@ +@import "../utilities/mixins" + +.is-clearfix + +clearfix + +.is-pulled-left + float: left !important + +.is-pulled-right + float: right !important diff --git a/themes/lucky/sass/_bulma/helpers/other.sass b/themes/lucky/sass/_bulma/helpers/other.sass new file mode 100644 index 0000000..6e2e63c --- /dev/null +++ b/themes/lucky/sass/_bulma/helpers/other.sass @@ -0,0 +1,14 @@ +@import "../utilities/mixins" + +.is-radiusless + border-radius: 0 !important + +.is-shadowless + box-shadow: none !important + +.is-clickable + cursor: pointer !important + pointer-events: all !important + +.is-unselectable + @extend %unselectable diff --git a/themes/lucky/sass/_bulma/helpers/overflow.sass b/themes/lucky/sass/_bulma/helpers/overflow.sass new file mode 100644 index 0000000..ef1e3ef --- /dev/null +++ b/themes/lucky/sass/_bulma/helpers/overflow.sass @@ -0,0 +1,2 @@ +.is-clipped + overflow: hidden !important diff --git a/themes/lucky/sass/_bulma/helpers/position.sass b/themes/lucky/sass/_bulma/helpers/position.sass new file mode 100644 index 0000000..4b8fda4 --- /dev/null +++ b/themes/lucky/sass/_bulma/helpers/position.sass @@ -0,0 +1,7 @@ +@import "../utilities/mixins" + +.is-overlay + @extend %overlay + +.is-relative + position: relative !important diff --git a/themes/lucky/sass/_bulma/helpers/spacing.sass b/themes/lucky/sass/_bulma/helpers/spacing.sass new file mode 100644 index 0000000..0237c73 --- /dev/null +++ b/themes/lucky/sass/_bulma/helpers/spacing.sass @@ -0,0 +1,31 @@ +.is-marginless + margin: 0 !important + +.is-paddingless + padding: 0 !important + +$spacing-shortcuts: ("margin": "m", "padding": "p") !default +$spacing-directions: ("top": "t", "right": "r", "bottom": "b", "left": "l") !default +$spacing-horizontal: "x" !default +$spacing-vertical: "y" !default +$spacing-values: ("0": 0, "1": 0.25rem, "2": 0.5rem, "3": 0.75rem, "4": 1rem, "5": 1.5rem, "6": 3rem, "auto": auto) !default + +@each $property, $shortcut in $spacing-shortcuts + @each $name, $value in $spacing-values + // All directions + .#{$shortcut}-#{$name} + #{$property}: $value !important + // Cardinal directions + @each $direction, $suffix in $spacing-directions + .#{$shortcut}#{$suffix}-#{$name} + #{$property}-#{$direction}: $value !important + // Horizontal axis + @if $spacing-horizontal != null + .#{$shortcut}#{$spacing-horizontal}-#{$name} + #{$property}-left: $value !important + #{$property}-right: $value !important + // Vertical axis + @if $spacing-vertical != null + .#{$shortcut}#{$spacing-vertical}-#{$name} + #{$property}-top: $value !important + #{$property}-bottom: $value !important diff --git a/themes/lucky/sass/_bulma/helpers/typography.sass b/themes/lucky/sass/_bulma/helpers/typography.sass new file mode 100644 index 0000000..dceca77 --- /dev/null +++ b/themes/lucky/sass/_bulma/helpers/typography.sass @@ -0,0 +1,103 @@ +@import "../utilities/mixins" + +=typography-size($target:'') + @each $size in $sizes + $i: index($sizes, $size) + .is-size-#{$i}#{if($target == '', '', '-' + $target)} + font-size: $size !important + ++typography-size() + ++mobile + +typography-size('mobile') + ++tablet + +typography-size('tablet') + ++touch + +typography-size('touch') + ++desktop + +typography-size('desktop') + ++widescreen + +typography-size('widescreen') + ++fullhd + +typography-size('fullhd') + +$alignments: ('centered': 'center', 'justified': 'justify', 'left': 'left', 'right': 'right') + +@each $alignment, $text-align in $alignments + .has-text-#{$alignment} + text-align: #{$text-align} !important + +@each $alignment, $text-align in $alignments + +mobile + .has-text-#{$alignment}-mobile + text-align: #{$text-align} !important + +tablet + .has-text-#{$alignment}-tablet + text-align: #{$text-align} !important + +tablet-only + .has-text-#{$alignment}-tablet-only + text-align: #{$text-align} !important + +touch + .has-text-#{$alignment}-touch + text-align: #{$text-align} !important + +desktop + .has-text-#{$alignment}-desktop + text-align: #{$text-align} !important + +desktop-only + .has-text-#{$alignment}-desktop-only + text-align: #{$text-align} !important + +widescreen + .has-text-#{$alignment}-widescreen + text-align: #{$text-align} !important + +widescreen-only + .has-text-#{$alignment}-widescreen-only + text-align: #{$text-align} !important + +fullhd + .has-text-#{$alignment}-fullhd + text-align: #{$text-align} !important + +.is-capitalized + text-transform: capitalize !important + +.is-lowercase + text-transform: lowercase !important + +.is-uppercase + text-transform: uppercase !important + +.is-italic + font-style: italic !important + +.is-underlined + text-decoration: underline !important + +.has-text-weight-light + font-weight: $weight-light !important +.has-text-weight-normal + font-weight: $weight-normal !important +.has-text-weight-medium + font-weight: $weight-medium !important +.has-text-weight-semibold + font-weight: $weight-semibold !important +.has-text-weight-bold + font-weight: $weight-bold !important + +.is-family-primary + font-family: $family-primary !important + +.is-family-secondary + font-family: $family-secondary !important + +.is-family-sans-serif + font-family: $family-sans-serif !important + +.is-family-monospace + font-family: $family-monospace !important + +.is-family-code + font-family: $family-code !important diff --git a/themes/lucky/sass/_bulma/helpers/visibility.sass b/themes/lucky/sass/_bulma/helpers/visibility.sass new file mode 100644 index 0000000..a1bb0d5 --- /dev/null +++ b/themes/lucky/sass/_bulma/helpers/visibility.sass @@ -0,0 +1,122 @@ +@import "../utilities/mixins" + +$displays: 'block' 'flex' 'inline' 'inline-block' 'inline-flex' + +@each $display in $displays + .is-#{$display} + display: #{$display} !important + +mobile + .is-#{$display}-mobile + display: #{$display} !important + +tablet + .is-#{$display}-tablet + display: #{$display} !important + +tablet-only + .is-#{$display}-tablet-only + display: #{$display} !important + +touch + .is-#{$display}-touch + display: #{$display} !important + +desktop + .is-#{$display}-desktop + display: #{$display} !important + +desktop-only + .is-#{$display}-desktop-only + display: #{$display} !important + +widescreen + .is-#{$display}-widescreen + display: #{$display} !important + +widescreen-only + .is-#{$display}-widescreen-only + display: #{$display} !important + +fullhd + .is-#{$display}-fullhd + display: #{$display} !important + +.is-hidden + display: none !important + +.is-sr-only + border: none !important + clip: rect(0, 0, 0, 0) !important + height: 0.01em !important + overflow: hidden !important + padding: 0 !important + position: absolute !important + white-space: nowrap !important + width: 0.01em !important + ++mobile + .is-hidden-mobile + display: none !important + ++tablet + .is-hidden-tablet + display: none !important + ++tablet-only + .is-hidden-tablet-only + display: none !important + ++touch + .is-hidden-touch + display: none !important + ++desktop + .is-hidden-desktop + display: none !important + ++desktop-only + .is-hidden-desktop-only + display: none !important + ++widescreen + .is-hidden-widescreen + display: none !important + ++widescreen-only + .is-hidden-widescreen-only + display: none !important + ++fullhd + .is-hidden-fullhd + display: none !important + +.is-invisible + visibility: hidden !important + ++mobile + .is-invisible-mobile + visibility: hidden !important + ++tablet + .is-invisible-tablet + visibility: hidden !important + ++tablet-only + .is-invisible-tablet-only + visibility: hidden !important + ++touch + .is-invisible-touch + visibility: hidden !important + ++desktop + .is-invisible-desktop + visibility: hidden !important + ++desktop-only + .is-invisible-desktop-only + visibility: hidden !important + ++widescreen + .is-invisible-widescreen + visibility: hidden !important + ++widescreen-only + .is-invisible-widescreen-only + visibility: hidden !important + ++fullhd + .is-invisible-fullhd + visibility: hidden !important diff --git a/themes/lucky/sass/_bulma/layout/_all.sass b/themes/lucky/sass/_bulma/layout/_all.sass new file mode 100644 index 0000000..4d1df5b --- /dev/null +++ b/themes/lucky/sass/_bulma/layout/_all.sass @@ -0,0 +1,6 @@ +/* Bulma Layout */ +@charset "utf-8" + +@import "hero" +@import "section" +@import "footer" diff --git a/themes/lucky/sass/_bulma/layout/footer.sass b/themes/lucky/sass/_bulma/layout/footer.sass new file mode 100644 index 0000000..4e9187e --- /dev/null +++ b/themes/lucky/sass/_bulma/layout/footer.sass @@ -0,0 +1,11 @@ +@import "../utilities/derived-variables" + +$footer-background-color: $scheme-main-bis !default +$footer-color: false !default +$footer-padding: 3rem 1.5rem 6rem !default + +.footer + background-color: $footer-background-color + padding: $footer-padding + @if $footer-color + color: $footer-color diff --git a/themes/lucky/sass/_bulma/layout/hero.sass b/themes/lucky/sass/_bulma/layout/hero.sass new file mode 100644 index 0000000..bd2312c --- /dev/null +++ b/themes/lucky/sass/_bulma/layout/hero.sass @@ -0,0 +1,153 @@ +@import "../utilities/mixins" + +$hero-body-padding: 3rem 1.5rem !default +$hero-body-padding-tablet: 3rem 3rem !default +$hero-body-padding-small: 1.5rem !default +$hero-body-padding-medium: 9rem 4.5rem !default +$hero-body-padding-large: 18rem 6rem !default + +$hero-colors: $colors !default + +// Main container +.hero + align-items: stretch + display: flex + flex-direction: column + justify-content: space-between + .navbar + background: none + .tabs + ul + border-bottom: none + // Colors + @each $name, $pair in $hero-colors + $color: nth($pair, 1) + $color-invert: nth($pair, 2) + &.is-#{$name} + background-color: $color + color: $color-invert + a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current), + strong + color: inherit + .title + color: $color-invert + .subtitle + color: bulmaRgba($color-invert, 0.9) + a:not(.button), + strong + color: $color-invert + .navbar-menu + +touch + background-color: $color + .navbar-item, + .navbar-link + color: bulmaRgba($color-invert, 0.7) + a.navbar-item, + .navbar-link + &:hover, + &.is-active + background-color: bulmaDarken($color, 5%) + color: $color-invert + .tabs + a + color: $color-invert + opacity: 0.9 + &:hover + opacity: 1 + li + &.is-active a + color: $color !important + opacity: 1 + &.is-boxed, + &.is-toggle + a + color: $color-invert + &:hover + background-color: bulmaRgba($scheme-invert, 0.1) + li.is-active a + &, + &:hover + background-color: $color-invert + border-color: $color-invert + color: $color + // Modifiers + @if type-of($color) == 'color' + &.is-bold + $gradient-top-left: darken(saturate(adjust-hue($color, -10deg), 10%), 10%) + $gradient-bottom-right: lighten(saturate(adjust-hue($color, 10deg), 5%), 5%) + background-image: linear-gradient(141deg, $gradient-top-left 0%, $color 71%, $gradient-bottom-right 100%) + +mobile + .navbar-menu + background-image: linear-gradient(141deg, $gradient-top-left 0%, $color 71%, $gradient-bottom-right 100%) + // Sizes + &.is-small + .hero-body + padding: $hero-body-padding-small + &.is-medium + +tablet + .hero-body + padding: $hero-body-padding-medium + &.is-large + +tablet + .hero-body + padding: $hero-body-padding-large + &.is-halfheight, + &.is-fullheight, + &.is-fullheight-with-navbar + .hero-body + align-items: center + display: flex + & > .container + flex-grow: 1 + flex-shrink: 1 + &.is-halfheight + min-height: 50vh + &.is-fullheight + min-height: 100vh + +// Components + +.hero-video + @extend %overlay + overflow: hidden + video + left: 50% + min-height: 100% + min-width: 100% + position: absolute + top: 50% + transform: translate3d(-50%, -50%, 0) + // Modifiers + &.is-transparent + opacity: 0.3 + // Responsiveness + +mobile + display: none + +.hero-buttons + margin-top: 1.5rem + // Responsiveness + +mobile + .button + display: flex + &:not(:last-child) + margin-bottom: 0.75rem + +tablet + display: flex + justify-content: center + .button:not(:last-child) + +ltr-property("margin", 1.5rem) + +// Containers + +.hero-head, +.hero-foot + flex-grow: 0 + flex-shrink: 0 + +.hero-body + flex-grow: 1 + flex-shrink: 0 + padding: $hero-body-padding + +tablet + padding: $hero-body-padding-tablet diff --git a/themes/lucky/sass/_bulma/layout/section.sass b/themes/lucky/sass/_bulma/layout/section.sass new file mode 100644 index 0000000..9c5a9f4 --- /dev/null +++ b/themes/lucky/sass/_bulma/layout/section.sass @@ -0,0 +1,17 @@ +@import "../utilities/mixins" + +$section-padding: 3rem 1.5rem !default +$section-padding-desktop: 3rem 3rem !default +$section-padding-medium: 9rem 4.5rem !default +$section-padding-large: 18rem 6rem !default + +.section + padding: $section-padding + // Responsiveness + +desktop + padding: $section-padding-desktop + // Sizes + &.is-medium + padding: $section-padding-medium + &.is-large + padding: $section-padding-large diff --git a/themes/lucky/sass/_bulma/utilities/_all.sass b/themes/lucky/sass/_bulma/utilities/_all.sass new file mode 100644 index 0000000..51cf348 --- /dev/null +++ b/themes/lucky/sass/_bulma/utilities/_all.sass @@ -0,0 +1,9 @@ +/* Bulma Utilities */ +@charset "utf-8" + +@import "initial-variables" +@import "functions" +@import "derived-variables" +@import "mixins" +@import "controls" +@import "extends" diff --git a/themes/lucky/sass/_bulma/utilities/animations.sass b/themes/lucky/sass/_bulma/utilities/animations.sass new file mode 100644 index 0000000..1872e08 --- /dev/null +++ b/themes/lucky/sass/_bulma/utilities/animations.sass @@ -0,0 +1 @@ +@warn "The animations.sass file has MOVED. It is now in the /base folder. Please import sass/base/animations instead." diff --git a/themes/lucky/sass/_bulma/utilities/controls.sass b/themes/lucky/sass/_bulma/utilities/controls.sass new file mode 100644 index 0000000..4c738c7 --- /dev/null +++ b/themes/lucky/sass/_bulma/utilities/controls.sass @@ -0,0 +1,49 @@ +@import "derived-variables" + +$control-radius: $radius !default +$control-radius-small: $radius-small !default + +$control-border-width: 1px !default + +$control-height: 2.5em !default +$control-line-height: 1.5 !default + +$control-padding-vertical: calc(0.5em - #{$control-border-width}) !default +$control-padding-horizontal: calc(0.75em - #{$control-border-width}) !default + +=control + -moz-appearance: none + -webkit-appearance: none + align-items: center + border: $control-border-width solid transparent + border-radius: $control-radius + box-shadow: none + display: inline-flex + font-size: $size-normal + height: $control-height + justify-content: flex-start + line-height: $control-line-height + padding-bottom: $control-padding-vertical + padding-left: $control-padding-horizontal + padding-right: $control-padding-horizontal + padding-top: $control-padding-vertical + position: relative + vertical-align: top + // States + &:focus, + &.is-focused, + &:active, + &.is-active + outline: none + &[disabled], + fieldset[disabled] & + cursor: not-allowed + +// The controls sizes use mixins so they can be used at different breakpoints +=control-small + border-radius: $control-radius-small + font-size: $size-small +=control-medium + font-size: $size-medium +=control-large + font-size: $size-large diff --git a/themes/lucky/sass/_bulma/utilities/derived-variables.sass b/themes/lucky/sass/_bulma/utilities/derived-variables.sass new file mode 100644 index 0000000..cefc8f1 --- /dev/null +++ b/themes/lucky/sass/_bulma/utilities/derived-variables.sass @@ -0,0 +1,114 @@ +@import "initial-variables" +@import "functions" + +$primary: $turquoise !default + +$info: $cyan !default +$success: $green !default +$warning: $yellow !default +$danger: $red !default + +$light: $white-ter !default +$dark: $grey-darker !default + +// Invert colors + +$orange-invert: findColorInvert($orange) !default +$yellow-invert: findColorInvert($yellow) !default +$green-invert: findColorInvert($green) !default +$turquoise-invert: findColorInvert($turquoise) !default +$cyan-invert: findColorInvert($cyan) !default +$blue-invert: findColorInvert($blue) !default +$purple-invert: findColorInvert($purple) !default +$red-invert: findColorInvert($red) !default + +$primary-invert: findColorInvert($primary) !default +$primary-light: findLightColor($primary) !default +$primary-dark: findDarkColor($primary) !default +$info-invert: findColorInvert($info) !default +$info-light: findLightColor($info) !default +$info-dark: findDarkColor($info) !default +$success-invert: findColorInvert($success) !default +$success-light: findLightColor($success) !default +$success-dark: findDarkColor($success) !default +$warning-invert: findColorInvert($warning) !default +$warning-light: findLightColor($warning) !default +$warning-dark: findDarkColor($warning) !default +$danger-invert: findColorInvert($danger) !default +$danger-light: findLightColor($danger) !default +$danger-dark: findDarkColor($danger) !default +$light-invert: findColorInvert($light) !default +$dark-invert: findColorInvert($dark) !default + +// General colors + +$scheme-main: $white !default +$scheme-main-bis: $white-bis !default +$scheme-main-ter: $white-ter !default +$scheme-invert: $black !default +$scheme-invert-bis: $black-bis !default +$scheme-invert-ter: $black-ter !default + +$background: $white-ter !default + +$border: $grey-lighter !default +$border-hover: $grey-light !default +$border-light: $grey-lightest !default +$border-light-hover: $grey-light !default + +// Text colors + +$text: $grey-dark !default +$text-invert: findColorInvert($text) !default +$text-light: $grey !default +$text-strong: $grey-darker !default + +// Code colors + +$code: darken($red, 15%) !default +$code-background: $background !default + +$pre: $text !default +$pre-background: $background !default + +// Link colors + +$link: $blue !default +$link-invert: findColorInvert($link) !default +$link-light: findLightColor($link) !default +$link-dark: findDarkColor($link) !default +$link-visited: $purple !default + +$link-hover: $grey-darker !default +$link-hover-border: $grey-light !default + +$link-focus: $grey-darker !default +$link-focus-border: $blue !default + +$link-active: $grey-darker !default +$link-active-border: $grey-dark !default + +// Typography + +$family-primary: $family-sans-serif !default +$family-secondary: $family-sans-serif !default +$family-code: $family-monospace !default + +$size-small: $size-7 !default +$size-normal: $size-6 !default +$size-medium: $size-5 !default +$size-large: $size-4 !default + +// Effects + +$shadow: 0 0.5em 1em -0.125em rgba($scheme-invert, 0.1), 0 0px 0 1px rgba($scheme-invert, 0.02) !default + +// Lists and maps +$custom-colors: null !default +$custom-shades: null !default + +$colors: mergeColorMaps(("white": ($white, $black), "black": ($black, $white), "light": ($light, $light-invert), "dark": ($dark, $dark-invert), "primary": ($primary, $primary-invert, $primary-light, $primary-dark), "link": ($link, $link-invert, $link-light, $link-dark), "info": ($info, $info-invert, $info-light, $info-dark), "success": ($success, $success-invert, $success-light, $success-dark), "warning": ($warning, $warning-invert, $warning-light, $warning-dark), "danger": ($danger, $danger-invert, $danger-light, $danger-dark)), $custom-colors) !default + +$shades: mergeColorMaps(("black-bis": $black-bis, "black-ter": $black-ter, "grey-darker": $grey-darker, "grey-dark": $grey-dark, "grey": $grey, "grey-light": $grey-light, "grey-lighter": $grey-lighter, "white-ter": $white-ter, "white-bis": $white-bis), $custom-shades) !default + +$sizes: $size-1 $size-2 $size-3 $size-4 $size-5 $size-6 $size-7 !default diff --git a/themes/lucky/sass/_bulma/utilities/extends.sass b/themes/lucky/sass/_bulma/utilities/extends.sass new file mode 100644 index 0000000..c994fc1 --- /dev/null +++ b/themes/lucky/sass/_bulma/utilities/extends.sass @@ -0,0 +1,25 @@ +@import "mixins" + +%control + +control + +%unselectable + +unselectable + +%arrow + +arrow + +%block + +block + +%delete + +delete + +%loader + +loader + +%overlay + +overlay + +%reset + +reset diff --git a/themes/lucky/sass/_bulma/utilities/functions.sass b/themes/lucky/sass/_bulma/utilities/functions.sass new file mode 100644 index 0000000..eeea6f2 --- /dev/null +++ b/themes/lucky/sass/_bulma/utilities/functions.sass @@ -0,0 +1,135 @@ +@function mergeColorMaps($bulma-colors, $custom-colors) + // We return at least Bulma's hard-coded colors + $merged-colors: $bulma-colors + + // We want a map as input + @if type-of($custom-colors) == 'map' + @each $name, $components in $custom-colors + // The color name should be a string + // and the components either a single color + // or a colors list with at least one element + @if type-of($name) == 'string' and (type-of($components) == 'list' or type-of($components) == 'color') and length($components) >= 1 + $color-base: null + $color-invert: null + $color-light: null + $color-dark: null + $value: null + + // The param can either be a single color + // or a list of 2 colors + @if type-of($components) == 'color' + $color-base: $components + $color-invert: findColorInvert($color-base) + $color-light: findLightColor($color-base) + $color-dark: findDarkColor($color-base) + @else if type-of($components) == 'list' + $color-base: nth($components, 1) + // If Invert, Light and Dark are provided + @if length($components) > 3 + $color-invert: nth($components, 2) + $color-light: nth($components, 3) + $color-dark: nth($components, 4) + // If only Invert and Light are provided + @else if length($components) > 2 + $color-invert: nth($components, 2) + $color-light: nth($components, 3) + $color-dark: findDarkColor($color-base) + // If only Invert is provided + @else + $color-invert: nth($components, 2) + $color-light: findLightColor($color-base) + $color-dark: findDarkColor($color-base) + + $value: ($color-base, $color-invert, $color-light, $color-dark) + + // We only want to merge the map if the color base is an actual color + @if type-of($color-base) == 'color' + // We merge this colors elements as map with Bulma's colors map + // (we can override them this way, no multiple definition for the same name) + // $merged-colors: map_merge($merged-colors, ($name: ($color-base, $color-invert, $color-light, $color-dark))) + $merged-colors: map_merge($merged-colors, ($name: $value)) + + @return $merged-colors + +@function powerNumber($number, $exp) + $value: 1 + @if $exp > 0 + @for $i from 1 through $exp + $value: $value * $number + @else if $exp < 0 + @for $i from 1 through -$exp + $value: divide($value, $number) + @return $value + +@function colorLuminance($color) + @if type-of($color) != 'color' + @return 0.55 + $color-rgb: ('red': red($color),'green': green($color),'blue': blue($color)) + @each $name, $value in $color-rgb + $adjusted: 0 + $value: divide($value, 255) + @if $value < 0.03928 + $value: divide($value, 12.92) + @else + $value: divide(($value + .055), 1.055) + $value: powerNumber($value, 2) + $color-rgb: map-merge($color-rgb, ($name: $value)) + @return (map-get($color-rgb, 'red') * .2126) + (map-get($color-rgb, 'green') * .7152) + (map-get($color-rgb, 'blue') * .0722) + +@function findColorInvert($color) + @if (colorLuminance($color) > 0.55) + @return rgba(#000, 0.7) + @else + @return #fff + +@function findLightColor($color, $l: 96%) + @if type-of($color) == 'color' + $l: 96% + @if lightness($color) > 96% + $l: lightness($color) + @return change-color($color, $lightness: $l) + @return $background + +@function findDarkColor($color, $base-l: 29%) + @if type-of($color) == 'color' + $luminance: colorLuminance($color) + $luminance-delta: (0.53 - $luminance) + $target-l: round($base-l + ($luminance-delta * 53)) + @return change-color($color, $lightness: max($base-l, $target-l)) + @return $text-strong + +@function bulmaRgba($color, $alpha) + @if type-of($color) != 'color' + @return $color + @return rgba($color, $alpha) + +@function bulmaDarken($color, $amount) + @if type-of($color) != 'color' + @return $color + @return darken($color, $amount) + +@function bulmaLighten($color, $amount) + @if type-of($color) != 'color' + @return $color + @return lighten($color, $amount) + +// Custom divide function by @mdo from https://github.com/twbs/bootstrap/pull/34245 +// Replaces old slash division deprecated in Dart Sass +@function divide($dividend, $divisor, $precision: 10) + $sign: if($dividend > 0 and $divisor > 0, 1, -1) + $dividend: abs($dividend) + $divisor: abs($divisor) + $quotient: 0 + $remainder: $dividend + @if $dividend == 0 + @return 0 + @if $divisor == 0 + @error "Cannot divide by 0" + @if $divisor == 1 + @return $dividend + @while $remainder >= $divisor + $quotient: $quotient + 1 + $remainder: $remainder - $divisor + @if $remainder > 0 and $precision > 0 + $remainder: divide($remainder * 10, $divisor, $precision - 1) * .1 + @return ($quotient + $remainder) * $sign diff --git a/themes/lucky/sass/_bulma/utilities/initial-variables.sass b/themes/lucky/sass/_bulma/utilities/initial-variables.sass new file mode 100644 index 0000000..3c2d282 --- /dev/null +++ b/themes/lucky/sass/_bulma/utilities/initial-variables.sass @@ -0,0 +1,79 @@ +// Colors + +$black: hsl(0, 0%, 4%) !default +$black-bis: hsl(0, 0%, 7%) !default +$black-ter: hsl(0, 0%, 14%) !default + +$grey-darker: hsl(0, 0%, 21%) !default +$grey-dark: hsl(0, 0%, 29%) !default +$grey: hsl(0, 0%, 48%) !default +$grey-light: hsl(0, 0%, 71%) !default +$grey-lighter: hsl(0, 0%, 86%) !default +$grey-lightest: hsl(0, 0%, 93%) !default + +$white-ter: hsl(0, 0%, 96%) !default +$white-bis: hsl(0, 0%, 98%) !default +$white: hsl(0, 0%, 100%) !default + +$orange: hsl(14, 100%, 53%) !default +$yellow: hsl(44, 100%, 77%) !default +$green: hsl(153, 53%, 53%) !default +$turquoise: hsl(171, 100%, 41%) !default +$cyan: hsl(207, 61%, 53%) !default +$blue: hsl(229, 53%, 53%) !default +$purple: hsl(271, 100%, 71%) !default +$red: hsl(348, 86%, 61%) !default + +// Typography + +$family-sans-serif: BlinkMacSystemFont, -apple-system, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", "Helvetica", "Arial", sans-serif !default +$family-monospace: monospace !default +$render-mode: optimizeLegibility !default + +$size-1: 3rem !default +$size-2: 2.5rem !default +$size-3: 2rem !default +$size-4: 1.5rem !default +$size-5: 1.25rem !default +$size-6: 1rem !default +$size-7: 0.75rem !default + +$weight-light: 300 !default +$weight-normal: 400 !default +$weight-medium: 500 !default +$weight-semibold: 600 !default +$weight-bold: 700 !default + +// Spacing + +$block-spacing: 1.5rem !default + +// Responsiveness + +// The container horizontal gap, which acts as the offset for breakpoints +$gap: 32px !default +// 960, 1152, and 1344 have been chosen because they are divisible by both 12 and 16 +$tablet: 769px !default +// 960px container + 4rem +$desktop: 960px + (2 * $gap) !default +// 1152px container + 4rem +$widescreen: 1152px + (2 * $gap) !default +$widescreen-enabled: true !default +// 1344px container + 4rem +$fullhd: 1344px + (2 * $gap) !default +$fullhd-enabled: true !default +$breakpoints: ("mobile": ("until": $tablet), "tablet": ("from": $tablet), "tablet-only": ("from": $tablet, "until": $desktop), "touch": ("from": $desktop), "desktop": ("from": $desktop), "desktop-only": ("from": $desktop, "until": $widescreen), "until-widescreen": ("until": $widescreen), "widescreen": ("from": $widescreen), "widescreen-only": ("from": $widescreen, "until": $fullhd), "until-fullhd": ("until": $fullhd), "fullhd": ("from": $fullhd)) !default + +// Miscellaneous + +$easing: ease-out !default +$radius-small: 2px !default +$radius: 4px !default +$radius-large: 6px !default +$radius-rounded: 9999px !default +$speed: 86ms !default + +// Flags + +$variable-columns: true !default +$rtl: false !default diff --git a/themes/lucky/sass/_bulma/utilities/mixins.sass b/themes/lucky/sass/_bulma/utilities/mixins.sass new file mode 100644 index 0000000..10cbae3 --- /dev/null +++ b/themes/lucky/sass/_bulma/utilities/mixins.sass @@ -0,0 +1,303 @@ +@import "derived-variables" + +=clearfix + &::after + clear: both + content: " " + display: table + +=center($width, $height: 0) + position: absolute + @if $height != 0 + left: calc(50% - (#{$width} * 0.5)) + top: calc(50% - (#{$height} * 0.5)) + @else + left: calc(50% - (#{$width} * 0.5)) + top: calc(50% - (#{$width} * 0.5)) + +=fa($size, $dimensions) + display: inline-block + font-size: $size + height: $dimensions + line-height: $dimensions + text-align: center + vertical-align: top + width: $dimensions + +=hamburger($dimensions) + -moz-appearance: none + -webkit-appearance: none + appearance: none + background: none + border: none + cursor: pointer + display: block + height: $dimensions + position: relative + width: $dimensions + span + background-color: currentColor + display: block + height: 1px + left: calc(50% - 8px) + position: absolute + transform-origin: center + transition-duration: $speed + transition-property: background-color, opacity, transform + transition-timing-function: $easing + width: 16px + &:nth-child(1) + top: calc(50% - 6px) + &:nth-child(2) + top: calc(50% - 1px) + &:nth-child(3) + top: calc(50% + 4px) + &:hover + background-color: bulmaRgba(black, 0.05) + // Modifers + &.is-active + span + &:nth-child(1) + transform: translateY(5px) rotate(45deg) + &:nth-child(2) + opacity: 0 + &:nth-child(3) + transform: translateY(-5px) rotate(-45deg) + +=overflow-touch + -webkit-overflow-scrolling: touch + +=placeholder + $placeholders: ':-moz' ':-webkit-input' '-moz' '-ms-input' + @each $placeholder in $placeholders + &:#{$placeholder}-placeholder + @content + +=reset + -moz-appearance: none + -webkit-appearance: none + appearance: none + background: none + border: none + color: currentColor + font-family: inherit + font-size: 1em + margin: 0 + padding: 0 + +// Responsiveness + +=from($device) + @media screen and (min-width: $device) + @content + +=until($device) + @media screen and (max-width: $device - 1px) + @content + +=between($from, $until) + @media screen and (min-width: $from) and (max-width: $until - 1px) + @content + +=mobile + @media screen and (max-width: $tablet - 1px) + @content + +=tablet + @media screen and (min-width: $tablet), print + @content + +=tablet-only + @media screen and (min-width: $tablet) and (max-width: $desktop - 1px) + @content + +=touch + @media screen and (max-width: $desktop - 1px) + @content + +=desktop + @media screen and (min-width: $desktop) + @content + +=desktop-only + @if $widescreen-enabled + @media screen and (min-width: $desktop) and (max-width: $widescreen - 1px) + @content + +=until-widescreen + @if $widescreen-enabled + @media screen and (max-width: $widescreen - 1px) + @content + +=widescreen + @if $widescreen-enabled + @media screen and (min-width: $widescreen) + @content + +=widescreen-only + @if $widescreen-enabled and $fullhd-enabled + @media screen and (min-width: $widescreen) and (max-width: $fullhd - 1px) + @content + +=until-fullhd + @if $fullhd-enabled + @media screen and (max-width: $fullhd - 1px) + @content + +=fullhd + @if $fullhd-enabled + @media screen and (min-width: $fullhd) + @content + +=breakpoint($name) + $breakpoint: map-get($breakpoints, $name) + @if $breakpoint + $from: map-get($breakpoint, "from") + $until: map-get($breakpoint, "until") + @if $from and $until + +between($from, $until) + @content + @else if $from + +from($from) + @content + @else if $until + +until($until) + @content + +=ltr + @if not $rtl + @content + +=rtl + @if $rtl + @content + +=ltr-property($property, $spacing, $right: true) + $normal: if($right, "right", "left") + $opposite: if($right, "left", "right") + @if $rtl + #{$property}-#{$opposite}: $spacing + @else + #{$property}-#{$normal}: $spacing + +=ltr-position($spacing, $right: true) + $normal: if($right, "right", "left") + $opposite: if($right, "left", "right") + @if $rtl + #{$opposite}: $spacing + @else + #{$normal}: $spacing + +// Placeholders + +=unselectable + -webkit-touch-callout: none + -webkit-user-select: none + -moz-user-select: none + -ms-user-select: none + user-select: none + +=arrow($color: transparent) + border: 3px solid $color + border-radius: 2px + border-right: 0 + border-top: 0 + content: " " + display: block + height: 0.625em + margin-top: -0.4375em + pointer-events: none + position: absolute + top: 50% + transform: rotate(-45deg) + transform-origin: center + width: 0.625em + +=block($spacing: $block-spacing) + &:not(:last-child) + margin-bottom: $spacing + +=delete + +unselectable + -moz-appearance: none + -webkit-appearance: none + background-color: bulmaRgba($scheme-invert, 0.2) + border: none + border-radius: $radius-rounded + cursor: pointer + pointer-events: auto + display: inline-block + flex-grow: 0 + flex-shrink: 0 + font-size: 0 + height: 20px + max-height: 20px + max-width: 20px + min-height: 20px + min-width: 20px + outline: none + position: relative + vertical-align: top + width: 20px + &::before, + &::after + background-color: $scheme-main + content: "" + display: block + left: 50% + position: absolute + top: 50% + transform: translateX(-50%) translateY(-50%) rotate(45deg) + transform-origin: center center + &::before + height: 2px + width: 50% + &::after + height: 50% + width: 2px + &:hover, + &:focus + background-color: bulmaRgba($scheme-invert, 0.3) + &:active + background-color: bulmaRgba($scheme-invert, 0.4) + // Sizes + &.is-small + height: 16px + max-height: 16px + max-width: 16px + min-height: 16px + min-width: 16px + width: 16px + &.is-medium + height: 24px + max-height: 24px + max-width: 24px + min-height: 24px + min-width: 24px + width: 24px + &.is-large + height: 32px + max-height: 32px + max-width: 32px + min-height: 32px + min-width: 32px + width: 32px + +=loader + animation: spinAround 500ms infinite linear + border: 2px solid $grey-lighter + border-radius: $radius-rounded + border-right-color: transparent + border-top-color: transparent + content: "" + display: block + height: 1em + position: relative + width: 1em + +=overlay($offset: 0) + bottom: $offset + left: $offset + position: absolute + right: $offset + top: $offset diff --git a/themes/lucky/sass/fonts.scss b/themes/lucky/sass/fonts.scss new file mode 100644 index 0000000..ef9ac9f --- /dev/null +++ b/themes/lucky/sass/fonts.scss @@ -0,0 +1,71 @@ +/* --- Fonts --- */ + +@font-face { + font-family: CharisSILW; + font-display: swap; + src: local('Charis SIL'), local('Charis-SIL'), local('CharisSIL'), url(../font/CharisSIL-R.woff2); +} + +@font-face { + font-family: CharisSILW; + font-style: italic; + font-display: swap; + src: local('Charis SIL Italic'), local('Charis-SIL-Italic'), local('CharisSILItalic'), url(../font/CharisSIL-I.woff2); +} + +@font-face { + font-family: CharisSILW; + font-weight: bold; + font-display: swap; + src: local('Charis SIL Bold'), local('Charis-SIL-Bold'), local('CharisSILBold'), url(../font/CharisSIL-B.woff2); +} + +@font-face { + font-family: CharisSILW; + font-weight: bold; + font-style: italic; + font-display: swap; + src: local('Charis SIL Bold Italic'), local('Charis-SIL-BoldItalic'), local('CharisSILBoldItalic'), url(../font/CharisSIL-BI.woff2); +} + +@font-face { + font-family: FiraSans; + font-display: swap; + src: local('Fira Sans'), local('FiraSans'), local('Fira-Sans'), url(../font/FiraSans-Regular.woff2); +} + +@font-face { + font-family: FiraSans; + font-style: italic; + font-display: swap; + src: local('Fira Sans Italic'), local('FiraSansItalic'), local('Fira-Sans-Italic'), url(../font/FiraSans-Italic.woff2); +} + +@font-face { + font-family: FiraSans; + font-weight: bold; + font-display: swap; + src: local('Fira Sans Bold'), local('FiraSansBold'), local('Fira-Sans-Bold'), url(../font/FiraSans-Bold.woff2); +} + +@font-face { + font-family: FiraSans; + font-weight: bold; + font-style: italic; + font-display: swap; + src: local('Fira Sans Bold Italic'), local('FiraSansBoldItalic'), local('Fira-Sans-BoldItalic'), url(../font/FiraSans-BoldItalic.woff2); +} + +@font-face { + font-family: FiraSans; + font-weight: bold; + font-style: italic; + font-display: swap; + src: local('Fira Sans Bold Italic'), local('FiraSansBoldItalic'), local('Fira-Sans-BoldItalic'), url(../font/FiraSans-BoldItalic.woff2); +} + +@font-face { + font-family: FiraCode; + font-display: swap; + src: local('Fira Code VF'), local('FiraCodeVF'), url(../font/FiraCode-VF.woff2); +} diff --git a/themes/lucky/sass/forkawesome/_animated.scss b/themes/lucky/sass/forkawesome/_animated.scss new file mode 100644 index 0000000..543d5b3 --- /dev/null +++ b/themes/lucky/sass/forkawesome/_animated.scss @@ -0,0 +1,34 @@ +// Spinning Icons +// -------------------------- + +.#{$fa-css-prefix}-spin { + -webkit-animation: #{$fa-css-prefix}-spin 2s infinite linear; + animation: #{$fa-css-prefix}-spin 2s infinite linear; +} + +.#{$fa-css-prefix}-pulse { + -webkit-animation: #{$fa-css-prefix}-spin 1s infinite steps(8); + animation: #{$fa-css-prefix}-spin 1s infinite steps(8); +} + +@-webkit-keyframes #{$fa-css-prefix}-spin { + 0% { + -webkit-transform: rotate(0deg); + transform: rotate(0deg); + } + 100% { + -webkit-transform: rotate(359deg); + transform: rotate(359deg); + } +} + +@keyframes #{$fa-css-prefix}-spin { + 0% { + -webkit-transform: rotate(0deg); + transform: rotate(0deg); + } + 100% { + -webkit-transform: rotate(359deg); + transform: rotate(359deg); + } +} diff --git a/themes/lucky/sass/forkawesome/_bordered-pulled.scss b/themes/lucky/sass/forkawesome/_bordered-pulled.scss new file mode 100644 index 0000000..d4b85a0 --- /dev/null +++ b/themes/lucky/sass/forkawesome/_bordered-pulled.scss @@ -0,0 +1,25 @@ +// Bordered & Pulled +// ------------------------- + +.#{$fa-css-prefix}-border { + padding: .2em .25em .15em; + border: solid .08em $fa-border-color; + border-radius: .1em; +} + +.#{$fa-css-prefix}-pull-left { float: left; } +.#{$fa-css-prefix}-pull-right { float: right; } + +.#{$fa-css-prefix} { + &.#{$fa-css-prefix}-pull-left { margin-right: .3em; } + &.#{$fa-css-prefix}-pull-right { margin-left: .3em; } +} + +/* Deprecated as of 4.4.0 */ +.pull-right { float: right; } +.pull-left { float: left; } + +.#{$fa-css-prefix} { + &.pull-left { margin-right: .3em; } + &.pull-right { margin-left: .3em; } +} diff --git a/themes/lucky/sass/forkawesome/_core.scss b/themes/lucky/sass/forkawesome/_core.scss new file mode 100644 index 0000000..e5a87b5 --- /dev/null +++ b/themes/lucky/sass/forkawesome/_core.scss @@ -0,0 +1,12 @@ +// Base Class Definition +// ------------------------- + +.#{$fa-css-prefix} { + display: inline-block; + font: normal normal normal #{$fa-font-size-base}/#{$fa-line-height-base} #{$fa-font-family}; // shortening font declaration + font-size: inherit; // can't have font-size inherit on line above, so need to override + text-rendering: auto; // optimizelegibility throws things off #1094 + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; + +} diff --git a/themes/lucky/sass/forkawesome/_fixed-width.scss b/themes/lucky/sass/forkawesome/_fixed-width.scss new file mode 100644 index 0000000..b221c98 --- /dev/null +++ b/themes/lucky/sass/forkawesome/_fixed-width.scss @@ -0,0 +1,6 @@ +// Fixed Width Icons +// ------------------------- +.#{$fa-css-prefix}-fw { + width: (18em / 14); + text-align: center; +} diff --git a/themes/lucky/sass/forkawesome/_functions.scss b/themes/lucky/sass/forkawesome/_functions.scss new file mode 100644 index 0000000..7ef2336 --- /dev/null +++ b/themes/lucky/sass/forkawesome/_functions.scss @@ -0,0 +1,11 @@ +// Functions +// -------------------------- + +// Helper function which adds quotes to preserve unicode values in CSS output. +// +// See: https://github.com/sass/sass/issues/1395 +// See: https://stackoverflow.com/questions/30421570/sass-unicode-escape-is-not-preserved-in-css-file + +@function fa-content($fa-var) { + @return unquote("\"#{$fa-var}\""); +} diff --git a/themes/lucky/sass/forkawesome/_icons.scss b/themes/lucky/sass/forkawesome/_icons.scss new file mode 100644 index 0000000..a6256a3 --- /dev/null +++ b/themes/lucky/sass/forkawesome/_icons.scss @@ -0,0 +1,879 @@ +/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen + readers do not read off random characters that represent icons */ + +//.#{$fa-css-prefix}-glass:before { content: $fa-var-glass; } +//.#{$fa-css-prefix}-music:before { content: $fa-var-music; } +//.#{$fa-css-prefix}-search:before { content: $fa-var-search; } +//.#{$fa-css-prefix}-envelope-o:before { content: $fa-var-envelope-o; } +//.#{$fa-css-prefix}-heart:before { content: $fa-var-heart; } +//.#{$fa-css-prefix}-star:before { content: $fa-var-star; } +//.#{$fa-css-prefix}-star-o:before { content: $fa-var-star-o; } +//.#{$fa-css-prefix}-user:before { content: $fa-var-user; } +//.#{$fa-css-prefix}-film:before { content: $fa-var-film; } +//.#{$fa-css-prefix}-th-large:before { content: $fa-var-th-large; } +//.#{$fa-css-prefix}-th:before { content: $fa-var-th; } +//.#{$fa-css-prefix}-th-list:before { content: $fa-var-th-list; } +//.#{$fa-css-prefix}-check:before { content: $fa-var-check; } +//.#{$fa-css-prefix}-remove:before, +//.#{$fa-css-prefix}-close:before, +//.#{$fa-css-prefix}-times:before { content: $fa-var-times; } +//.#{$fa-css-prefix}-search-plus:before { content: $fa-var-search-plus; } +//.#{$fa-css-prefix}-search-minus:before { content: $fa-var-search-minus; } +//.#{$fa-css-prefix}-power-off:before { content: $fa-var-power-off; } +//.#{$fa-css-prefix}-signal:before { content: $fa-var-signal; } +//.#{$fa-css-prefix}-gear:before, +//.#{$fa-css-prefix}-cog:before { content: $fa-var-cog; } +//.#{$fa-css-prefix}-trash-o:before { content: $fa-var-trash-o; } +//.#{$fa-css-prefix}-home:before { content: $fa-var-home; } +//.#{$fa-css-prefix}-file-o:before { content: $fa-var-file-o; } +//.#{$fa-css-prefix}-clock-o:before { content: $fa-var-clock-o; } +//.#{$fa-css-prefix}-road:before { content: $fa-var-road; } +//.#{$fa-css-prefix}-download:before { content: $fa-var-download; } +//.#{$fa-css-prefix}-arrow-circle-o-down:before { content: $fa-var-arrow-circle-o-down; } +//.#{$fa-css-prefix}-arrow-circle-o-up:before { content: $fa-var-arrow-circle-o-up; } +//.#{$fa-css-prefix}-inbox:before { content: $fa-var-inbox; } +//.#{$fa-css-prefix}-play-circle-o:before { content: $fa-var-play-circle-o; } +//.#{$fa-css-prefix}-rotate-right:before, +//.#{$fa-css-prefix}-repeat:before { content: $fa-var-repeat; } +//.#{$fa-css-prefix}-sync:before, +//.#{$fa-css-prefix}-refresh:before { content: $fa-var-refresh; } +//.#{$fa-css-prefix}-list-alt:before { content: $fa-var-list-alt; } +//.#{$fa-css-prefix}-lock:before { content: $fa-var-lock; } +//.#{$fa-css-prefix}-flag:before { content: $fa-var-flag; } +//.#{$fa-css-prefix}-headphones:before { content: $fa-var-headphones; } +//.#{$fa-css-prefix}-volume-off:before { content: $fa-var-volume-off; } +//.#{$fa-css-prefix}-volume-down:before { content: $fa-var-volume-down; } +//.#{$fa-css-prefix}-volume-up:before { content: $fa-var-volume-up; } +//.#{$fa-css-prefix}-qrcode:before { content: $fa-var-qrcode; } +//.#{$fa-css-prefix}-barcode:before { content: $fa-var-barcode; } +//.#{$fa-css-prefix}-tag:before { content: $fa-var-tag; } +//.#{$fa-css-prefix}-tags:before { content: $fa-var-tags; } +//.#{$fa-css-prefix}-book:before { content: $fa-var-book; } +//.#{$fa-css-prefix}-bookmark:before { content: $fa-var-bookmark; } +//.#{$fa-css-prefix}-print:before { content: $fa-var-print; } +//.#{$fa-css-prefix}-camera:before { content: $fa-var-camera; } +//.#{$fa-css-prefix}-font:before { content: $fa-var-font; } +//.#{$fa-css-prefix}-bold:before { content: $fa-var-bold; } +//.#{$fa-css-prefix}-italic:before { content: $fa-var-italic; } +//.#{$fa-css-prefix}-text-height:before { content: $fa-var-text-height; } +//.#{$fa-css-prefix}-text-width:before { content: $fa-var-text-width; } +//.#{$fa-css-prefix}-align-left:before { content: $fa-var-align-left; } +//.#{$fa-css-prefix}-align-center:before { content: $fa-var-align-center; } +//.#{$fa-css-prefix}-align-right:before { content: $fa-var-align-right; } +//.#{$fa-css-prefix}-align-justify:before { content: $fa-var-align-justify; } +//.#{$fa-css-prefix}-list:before { content: $fa-var-list; } +//.#{$fa-css-prefix}-dedent:before, +//.#{$fa-css-prefix}-outdent:before { content: $fa-var-outdent; } +//.#{$fa-css-prefix}-indent:before { content: $fa-var-indent; } +//.#{$fa-css-prefix}-video:before, +//.#{$fa-css-prefix}-video-camera:before { content: $fa-var-video-camera; } +//.#{$fa-css-prefix}-photo:before, +//.#{$fa-css-prefix}-image:before, +//.#{$fa-css-prefix}-picture-o:before { content: $fa-var-picture-o; } +//.#{$fa-css-prefix}-pencil:before { content: $fa-var-pencil; } +//.#{$fa-css-prefix}-map-marker:before { content: $fa-var-map-marker; } +//.#{$fa-css-prefix}-adjust:before { content: $fa-var-adjust; } +//.#{$fa-css-prefix}-tint:before { content: $fa-var-tint; } +//.#{$fa-css-prefix}-edit:before, +//.#{$fa-css-prefix}-pencil-square-o:before { content: $fa-var-pencil-square-o; } +//.#{$fa-css-prefix}-share-square-o:before { content: $fa-var-share-square-o; } +//.#{$fa-css-prefix}-check-square-o:before { content: $fa-var-check-square-o; } +//.#{$fa-css-prefix}-arrows:before { content: $fa-var-arrows; } +//.#{$fa-css-prefix}-step-backward:before { content: $fa-var-step-backward; } +//.#{$fa-css-prefix}-fast-backward:before { content: $fa-var-fast-backward; } +//.#{$fa-css-prefix}-backward:before { content: $fa-var-backward; } +//.#{$fa-css-prefix}-play:before { content: $fa-var-play; } +//.#{$fa-css-prefix}-pause:before { content: $fa-var-pause; } +//.#{$fa-css-prefix}-stop:before { content: $fa-var-stop; } +//.#{$fa-css-prefix}-forward:before { content: $fa-var-forward; } +//.#{$fa-css-prefix}-fast-forward:before { content: $fa-var-fast-forward; } +//.#{$fa-css-prefix}-step-forward:before { content: $fa-var-step-forward; } +//.#{$fa-css-prefix}-eject:before { content: $fa-var-eject; } +//.#{$fa-css-prefix}-chevron-left:before { content: $fa-var-chevron-left; } +//.#{$fa-css-prefix}-chevron-right:before { content: $fa-var-chevron-right; } +//.#{$fa-css-prefix}-plus-circle:before { content: $fa-var-plus-circle; } +//.#{$fa-css-prefix}-minus-circle:before { content: $fa-var-minus-circle; } +//.#{$fa-css-prefix}-times-circle:before { content: $fa-var-times-circle; } +//.#{$fa-css-prefix}-check-circle:before { content: $fa-var-check-circle; } +//.#{$fa-css-prefix}-question-circle:before { content: $fa-var-question-circle; } +//.#{$fa-css-prefix}-info-circle:before { content: $fa-var-info-circle; } +//.#{$fa-css-prefix}-crosshairs:before { content: $fa-var-crosshairs; } +//.#{$fa-css-prefix}-times-circle-o:before { content: $fa-var-times-circle-o; } +//.#{$fa-css-prefix}-check-circle-o:before { content: $fa-var-check-circle-o; } +//.#{$fa-css-prefix}-ban:before { content: $fa-var-ban; } +//.#{$fa-css-prefix}-arrow-left:before { content: $fa-var-arrow-left; } +//.#{$fa-css-prefix}-arrow-right:before { content: $fa-var-arrow-right; } +//.#{$fa-css-prefix}-arrow-up:before { content: $fa-var-arrow-up; } +//.#{$fa-css-prefix}-arrow-down:before { content: $fa-var-arrow-down; } +//.#{$fa-css-prefix}-mail-forward:before, +//.#{$fa-css-prefix}-share:before { content: $fa-var-share; } +//.#{$fa-css-prefix}-expand:before { content: $fa-var-expand; } +//.#{$fa-css-prefix}-compress:before { content: $fa-var-compress; } +//.#{$fa-css-prefix}-plus:before { content: $fa-var-plus; } +//.#{$fa-css-prefix}-minus:before { content: $fa-var-minus; } +//.#{$fa-css-prefix}-asterisk:before { content: $fa-var-asterisk; } +//.#{$fa-css-prefix}-exclamation-circle:before { content: $fa-var-exclamation-circle; } +//.#{$fa-css-prefix}-gift:before { content: $fa-var-gift; } +//.#{$fa-css-prefix}-leaf:before { content: $fa-var-leaf; } +//.#{$fa-css-prefix}-fire:before { content: $fa-var-fire; } +//.#{$fa-css-prefix}-eye:before { content: $fa-var-eye; } +//.#{$fa-css-prefix}-eye-slash:before { content: $fa-var-eye-slash; } +//.#{$fa-css-prefix}-warning:before, +//.#{$fa-css-prefix}-exclamation-triangle:before { content: $fa-var-exclamation-triangle; } +//.#{$fa-css-prefix}-plane:before { content: $fa-var-plane; } +.#{$fa-css-prefix}-calendar:before { content: $fa-var-calendar; } +//.#{$fa-css-prefix}-random:before { content: $fa-var-random; } +//.#{$fa-css-prefix}-comment:before { content: $fa-var-comment; } +//.#{$fa-css-prefix}-magnet:before { content: $fa-var-magnet; } +//.#{$fa-css-prefix}-chevron-up:before { content: $fa-var-chevron-up; } +//.#{$fa-css-prefix}-chevron-down:before { content: $fa-var-chevron-down; } +//.#{$fa-css-prefix}-retweet:before { content: $fa-var-retweet; } +//.#{$fa-css-prefix}-shopping-cart:before { content: $fa-var-shopping-cart; } +//.#{$fa-css-prefix}-folder:before { content: $fa-var-folder; } +//.#{$fa-css-prefix}-folder-open:before { content: $fa-var-folder-open; } +//.#{$fa-css-prefix}-arrows-v:before { content: $fa-var-arrows-v; } +//.#{$fa-css-prefix}-arrows-h:before { content: $fa-var-arrows-h; } +//.#{$fa-css-prefix}-bar-chart-o:before, +//.#{$fa-css-prefix}-bar-chart:before { content: $fa-var-bar-chart; } +//.#{$fa-css-prefix}-twitter-square:before { content: $fa-var-twitter-square; } +//.#{$fa-css-prefix}-facebook-square:before { content: $fa-var-facebook-square; } +//.#{$fa-css-prefix}-camera-retro:before { content: $fa-var-camera-retro; } +//.#{$fa-css-prefix}-key:before { content: $fa-var-key; } +//.#{$fa-css-prefix}-gears:before, +//.#{$fa-css-prefix}-cogs:before { content: $fa-var-cogs; } +//.#{$fa-css-prefix}-comments:before { content: $fa-var-comments; } +//.#{$fa-css-prefix}-thumbs-o-up:before { content: $fa-var-thumbs-o-up; } +//.#{$fa-css-prefix}-thumbs-o-down:before { content: $fa-var-thumbs-o-down; } +//.#{$fa-css-prefix}-star-half:before { content: $fa-var-star-half; } +//.#{$fa-css-prefix}-heart-o:before { content: $fa-var-heart-o; } +//.#{$fa-css-prefix}-sign-out:before { content: $fa-var-sign-out; } +//.#{$fa-css-prefix}-linkedin-square:before { content: $fa-var-linkedin-square; } +//.#{$fa-css-prefix}-thumb-tack:before { content: $fa-var-thumb-tack; } +//.#{$fa-css-prefix}-external-link:before { content: $fa-var-external-link; } +//.#{$fa-css-prefix}-sign-in:before { content: $fa-var-sign-in; } +//.#{$fa-css-prefix}-trophy:before { content: $fa-var-trophy; } +//.#{$fa-css-prefix}-github-square:before { content: $fa-var-github-square; } +//.#{$fa-css-prefix}-upload:before { content: $fa-var-upload; } +//.#{$fa-css-prefix}-lemon-o:before { content: $fa-var-lemon-o; } +//.#{$fa-css-prefix}-phone:before { content: $fa-var-phone; } +//.#{$fa-css-prefix}-square-o:before { content: $fa-var-square-o; } +//.#{$fa-css-prefix}-bookmark-o:before { content: $fa-var-bookmark-o; } +//.#{$fa-css-prefix}-phone-square:before { content: $fa-var-phone-square; } +.#{$fa-css-prefix}-twitter:before { content: $fa-var-twitter; } +//.#{$fa-css-prefix}-facebook-f:before, +.#{$fa-css-prefix}-facebook:before { content: $fa-var-facebook; } +.#{$fa-css-prefix}-github:before { content: $fa-var-github; } +//.#{$fa-css-prefix}-unlock:before { content: $fa-var-unlock; } +//.#{$fa-css-prefix}-credit-card:before { content: $fa-var-credit-card; } +//.#{$fa-css-prefix}-feed:before, +//.#{$fa-css-prefix}-rss:before { content: $fa-var-rss; } +//.#{$fa-css-prefix}-hdd-o:before { content: $fa-var-hdd-o; } +//.#{$fa-css-prefix}-bullhorn:before { content: $fa-var-bullhorn; } +//.#{$fa-css-prefix}-bell-o:before { content: $fa-var-bell-o; } +//.#{$fa-css-prefix}-certificate:before { content: $fa-var-certificate; } +//.#{$fa-css-prefix}-hand-o-right:before { content: $fa-var-hand-o-right; } +//.#{$fa-css-prefix}-hand-o-left:before { content: $fa-var-hand-o-left; } +//.#{$fa-css-prefix}-hand-o-up:before { content: $fa-var-hand-o-up; } +//.#{$fa-css-prefix}-hand-o-down:before { content: $fa-var-hand-o-down; } +//.#{$fa-css-prefix}-arrow-circle-left:before { content: $fa-var-arrow-circle-left; } +//.#{$fa-css-prefix}-arrow-circle-right:before { content: $fa-var-arrow-circle-right; } +//.#{$fa-css-prefix}-arrow-circle-up:before { content: $fa-var-arrow-circle-up; } +//.#{$fa-css-prefix}-arrow-circle-down:before { content: $fa-var-arrow-circle-down; } +//.#{$fa-css-prefix}-globe:before { content: $fa-var-globe; } +//.#{$fa-css-prefix}-globe-e:before { content: $fa-var-globe-e; } +//.#{$fa-css-prefix}-globe-w:before { content: $fa-var-globe-w; } +//.#{$fa-css-prefix}-wrench:before { content: $fa-var-wrench; } +//.#{$fa-css-prefix}-tasks:before { content: $fa-var-tasks; } +//.#{$fa-css-prefix}-filter:before { content: $fa-var-filter; } +//.#{$fa-css-prefix}-briefcase:before { content: $fa-var-briefcase; } +//.#{$fa-css-prefix}-arrows-alt:before { content: $fa-var-arrows-alt; } +//.#{$fa-css-prefix}-community:before, +//.#{$fa-css-prefix}-group:before, +//.#{$fa-css-prefix}-users:before { content: $fa-var-users; } +//.#{$fa-css-prefix}-chain:before, +//.#{$fa-css-prefix}-link:before { content: $fa-var-link; } +//.#{$fa-css-prefix}-cloud:before { content: $fa-var-cloud; } +//.#{$fa-css-prefix}-flask:before { content: $fa-var-flask; } +//.#{$fa-css-prefix}-cut:before, +//.#{$fa-css-prefix}-scissors:before { content: $fa-var-scissors; } +//.#{$fa-css-prefix}-copy:before, +//.#{$fa-css-prefix}-files-o:before { content: $fa-var-files-o; } +//.#{$fa-css-prefix}-paperclip:before { content: $fa-var-paperclip; } +//.#{$fa-css-prefix}-save:before, +//.#{$fa-css-prefix}-floppy-o:before { content: $fa-var-floppy-o; } +//.#{$fa-css-prefix}-square:before { content: $fa-var-square; } +//.#{$fa-css-prefix}-navicon:before, +//.#{$fa-css-prefix}-reorder:before, +//.#{$fa-css-prefix}-bars:before { content: $fa-var-bars; } +//.#{$fa-css-prefix}-list-ul:before { content: $fa-var-list-ul; } +//.#{$fa-css-prefix}-list-ol:before { content: $fa-var-list-ol; } +//.#{$fa-css-prefix}-strikethrough:before { content: $fa-var-strikethrough; } +//.#{$fa-css-prefix}-underline:before { content: $fa-var-underline; } +//.#{$fa-css-prefix}-table:before { content: $fa-var-table; } +//.#{$fa-css-prefix}-magic:before { content: $fa-var-magic; } +//.#{$fa-css-prefix}-truck:before { content: $fa-var-truck; } +//.#{$fa-css-prefix}-pinterest:before { content: $fa-var-pinterest; } +//.#{$fa-css-prefix}-pinterest-square:before { content: $fa-var-pinterest-square; } +//.#{$fa-css-prefix}-google-plus-square:before { content: $fa-var-google-plus-square; } +//.#{$fa-css-prefix}-google-plus-g:before, +//.#{$fa-css-prefix}-google-plus:before { content: $fa-var-google-plus; } +//.#{$fa-css-prefix}-money:before { content: $fa-var-money; } +//.#{$fa-css-prefix}-caret-down:before { content: $fa-var-caret-down; } +//.#{$fa-css-prefix}-caret-up:before { content: $fa-var-caret-up; } +//.#{$fa-css-prefix}-caret-left:before { content: $fa-var-caret-left; } +//.#{$fa-css-prefix}-caret-right:before { content: $fa-var-caret-right; } +//.#{$fa-css-prefix}-columns:before { content: $fa-var-columns; } +//.#{$fa-css-prefix}-unsorted:before, +//.#{$fa-css-prefix}-sort:before { content: $fa-var-sort; } +//.#{$fa-css-prefix}-sort-down:before, +//.#{$fa-css-prefix}-sort-desc:before { content: $fa-var-sort-desc; } +//.#{$fa-css-prefix}-sort-up:before, +//.#{$fa-css-prefix}-sort-asc:before { content: $fa-var-sort-asc; } +//.#{$fa-css-prefix}-envelope:before { content: $fa-var-envelope; } +//.#{$fa-css-prefix}-linkedin:before { content: $fa-var-linkedin; } +//.#{$fa-css-prefix}-rotate-left:before, +//.#{$fa-css-prefix}-undo:before { content: $fa-var-undo; } +//.#{$fa-css-prefix}-legal:before, +//.#{$fa-css-prefix}-gavel:before { content: $fa-var-gavel; } +//.#{$fa-css-prefix}-dashboard:before, +//.#{$fa-css-prefix}-tachometer:before { content: $fa-var-tachometer; } +//.#{$fa-css-prefix}-comment-o:before { content: $fa-var-comment-o; } +//.#{$fa-css-prefix}-comments-o:before { content: $fa-var-comments-o; } +//.#{$fa-css-prefix}-flash:before, +//.#{$fa-css-prefix}-bolt:before { content: $fa-var-bolt; } +//.#{$fa-css-prefix}-sitemap:before { content: $fa-var-sitemap; } +//.#{$fa-css-prefix}-umbrella:before { content: $fa-var-umbrella; } +//.#{$fa-css-prefix}-paste:before, +//.#{$fa-css-prefix}-clipboard:before { content: $fa-var-clipboard; } +//.#{$fa-css-prefix}-lightbulb-o:before { content: $fa-var-lightbulb-o; } +//.#{$fa-css-prefix}-exchange:before { content: $fa-var-exchange; } +//.#{$fa-css-prefix}-cloud-download:before { content: $fa-var-cloud-download; } +//.#{$fa-css-prefix}-cloud-upload:before { content: $fa-var-cloud-upload; } +//.#{$fa-css-prefix}-user-md:before { content: $fa-var-user-md; } +//.#{$fa-css-prefix}-stethoscope:before { content: $fa-var-stethoscope; } +//.#{$fa-css-prefix}-suitcase:before { content: $fa-var-suitcase; } +//.#{$fa-css-prefix}-bell:before { content: $fa-var-bell; } +//.#{$fa-css-prefix}-coffee:before { content: $fa-var-coffee; } +//.#{$fa-css-prefix}-utensils:before, +//.#{$fa-css-prefix}-cutlery:before { content: $fa-var-cutlery; } +//.#{$fa-css-prefix}-file-text-o:before { content: $fa-var-file-text-o; } +//.#{$fa-css-prefix}-building-o:before { content: $fa-var-building-o; } +//.#{$fa-css-prefix}-hospital-o:before { content: $fa-var-hospital-o; } +//.#{$fa-css-prefix}-ambulance:before { content: $fa-var-ambulance; } +//.#{$fa-css-prefix}-medkit:before { content: $fa-var-medkit; } +//.#{$fa-css-prefix}-fighter-jet:before { content: $fa-var-fighter-jet; } +//.#{$fa-css-prefix}-beer:before { content: $fa-var-beer; } +//.#{$fa-css-prefix}-h-square:before { content: $fa-var-h-square; } +//.#{$fa-css-prefix}-plus-square:before { content: $fa-var-plus-square; } +//.#{$fa-css-prefix}-angle-double-left:before { content: $fa-var-angle-double-left; } +//.#{$fa-css-prefix}-angle-double-right:before { content: $fa-var-angle-double-right; } +//.#{$fa-css-prefix}-angle-double-up:before { content: $fa-var-angle-double-up; } +//.#{$fa-css-prefix}-angle-double-down:before { content: $fa-var-angle-double-down; } +//.#{$fa-css-prefix}-angle-left:before { content: $fa-var-angle-left; } +//.#{$fa-css-prefix}-angle-right:before { content: $fa-var-angle-right; } +//.#{$fa-css-prefix}-angle-up:before { content: $fa-var-angle-up; } +//.#{$fa-css-prefix}-angle-down:before { content: $fa-var-angle-down; } +//.#{$fa-css-prefix}-desktop:before { content: $fa-var-desktop; } +//.#{$fa-css-prefix}-laptop:before { content: $fa-var-laptop; } +//.#{$fa-css-prefix}-tablet:before { content: $fa-var-tablet; } +//.#{$fa-css-prefix}-mobile-phone:before, +//.#{$fa-css-prefix}-mobile:before { content: $fa-var-mobile; } +//.#{$fa-css-prefix}-circle-o:before { content: $fa-var-circle-o; } +//.#{$fa-css-prefix}-quote-left:before { content: $fa-var-quote-left; } +//.#{$fa-css-prefix}-quote-right:before { content: $fa-var-quote-right; } +//.#{$fa-css-prefix}-spinner:before { content: $fa-var-spinner; } +.#{$fa-css-prefix}-circle:before { content: $fa-var-circle; } +//.#{$fa-css-prefix}-mail-reply:before, +//.#{$fa-css-prefix}-reply:before { content: $fa-var-reply; } +//.#{$fa-css-prefix}-github-alt:before { content: $fa-var-github-alt; } +//.#{$fa-css-prefix}-folder-o:before { content: $fa-var-folder-o; } +//.#{$fa-css-prefix}-folder-open-o:before { content: $fa-var-folder-open-o; } +//.#{$fa-css-prefix}-smile-o:before { content: $fa-var-smile-o; } +//.#{$fa-css-prefix}-frown-o:before { content: $fa-var-frown-o; } +//.#{$fa-css-prefix}-meh-o:before { content: $fa-var-meh-o; } +//.#{$fa-css-prefix}-gamepad:before { content: $fa-var-gamepad; } +//.#{$fa-css-prefix}-keyboard-o:before { content: $fa-var-keyboard-o; } +//.#{$fa-css-prefix}-flag-o:before { content: $fa-var-flag-o; } +//.#{$fa-css-prefix}-flag-checkered:before { content: $fa-var-flag-checkered; } +//.#{$fa-css-prefix}-terminal:before { content: $fa-var-terminal; } +//.#{$fa-css-prefix}-code:before { content: $fa-var-code; } +//.#{$fa-css-prefix}-mail-reply-all:before, +//.#{$fa-css-prefix}-reply-all:before { content: $fa-var-reply-all; } +//.#{$fa-css-prefix}-star-half-empty:before, +//.#{$fa-css-prefix}-star-half-full:before, +//.#{$fa-css-prefix}-star-half-o:before { content: $fa-var-star-half-o; } +//.#{$fa-css-prefix}-location-arrow:before { content: $fa-var-location-arrow; } +//.#{$fa-css-prefix}-crop:before { content: $fa-var-crop; } +//.#{$fa-css-prefix}-code-fork:before { content: $fa-var-code-fork; } +//.#{$fa-css-prefix}-unlink:before, +//.#{$fa-css-prefix}-chain-broken:before { content: $fa-var-chain-broken; } +//.#{$fa-css-prefix}-question:before { content: $fa-var-question; } +//.#{$fa-css-prefix}-info:before { content: $fa-var-info; } +//.#{$fa-css-prefix}-exclamation:before { content: $fa-var-exclamation; } +//.#{$fa-css-prefix}-superscript:before { content: $fa-var-superscript; } +//.#{$fa-css-prefix}-subscript:before { content: $fa-var-subscript; } +//.#{$fa-css-prefix}-eraser:before { content: $fa-var-eraser; } +//.#{$fa-css-prefix}-puzzle-piece:before { content: $fa-var-puzzle-piece; } +//.#{$fa-css-prefix}-microphone:before { content: $fa-var-microphone; } +//.#{$fa-css-prefix}-microphone-slash:before { content: $fa-var-microphone-slash; } +//.#{$fa-css-prefix}-shield:before { content: $fa-var-shield; } +//.#{$fa-css-prefix}-calendar-o:before { content: $fa-var-calendar-o; } +//.#{$fa-css-prefix}-fire-extinguisher:before { content: $fa-var-fire-extinguisher; } +//.#{$fa-css-prefix}-rocket:before { content: $fa-var-rocket; } +//.#{$fa-css-prefix}-maxcdn:before { content: $fa-var-maxcdn; } +//.#{$fa-css-prefix}-chevron-circle-left:before { content: $fa-var-chevron-circle-left; } +//.#{$fa-css-prefix}-chevron-circle-right:before { content: $fa-var-chevron-circle-right; } +//.#{$fa-css-prefix}-chevron-circle-up:before { content: $fa-var-chevron-circle-up; } +//.#{$fa-css-prefix}-chevron-circle-down:before { content: $fa-var-chevron-circle-down; } +//.#{$fa-css-prefix}-html5:before { content: $fa-var-html5; } +//.#{$fa-css-prefix}-css3:before { content: $fa-var-css3; } +//.#{$fa-css-prefix}-anchor:before { content: $fa-var-anchor; } +//.#{$fa-css-prefix}-unlock-alt:before { content: $fa-var-unlock-alt; } +//.#{$fa-css-prefix}-bullseye:before { content: $fa-var-bullseye; } +//.#{$fa-css-prefix}-ellipsis-h:before { content: $fa-var-ellipsis-h; } +//.#{$fa-css-prefix}-ellipsis-v:before { content: $fa-var-ellipsis-v; } +//.#{$fa-css-prefix}-rss-square:before { content: $fa-var-rss-square; } +//.#{$fa-css-prefix}-play-circle:before { content: $fa-var-play-circle; } +//.#{$fa-css-prefix}-ticket:before { content: $fa-var-ticket; } +//.#{$fa-css-prefix}-minus-square:before { content: $fa-var-minus-square; } +//.#{$fa-css-prefix}-minus-square-o:before { content: $fa-var-minus-square-o; } +//.#{$fa-css-prefix}-level-up:before { content: $fa-var-level-up; } +//.#{$fa-css-prefix}-level-down:before { content: $fa-var-level-down; } +//.#{$fa-css-prefix}-check-square:before { content: $fa-var-check-square; } +//.#{$fa-css-prefix}-pencil-square:before { content: $fa-var-pencil-square; } +//.#{$fa-css-prefix}-external-link-square:before { content: $fa-var-external-link-square; } +//.#{$fa-css-prefix}-share-square:before { content: $fa-var-share-square; } +//.#{$fa-css-prefix}-compass:before { content: $fa-var-compass; } +//.#{$fa-css-prefix}-toggle-down:before, +//.#{$fa-css-prefix}-caret-square-o-down:before { content: $fa-var-caret-square-o-down; } +//.#{$fa-css-prefix}-toggle-up:before, +//.#{$fa-css-prefix}-caret-square-o-up:before { content: $fa-var-caret-square-o-up; } +//.#{$fa-css-prefix}-toggle-right:before, +//.#{$fa-css-prefix}-caret-square-o-right:before { content: $fa-var-caret-square-o-right; } +//.#{$fa-css-prefix}-euro:before, +//.#{$fa-css-prefix}-eur:before { content: $fa-var-eur; } +//.#{$fa-css-prefix}-pound:before, +//.#{$fa-css-prefix}-gbp:before { content: $fa-var-gbp; } +//.#{$fa-css-prefix}-dollar:before, +//.#{$fa-css-prefix}-usd:before { content: $fa-var-usd; } +//.#{$fa-css-prefix}-rupee:before, +//.#{$fa-css-prefix}-inr:before { content: $fa-var-inr; } +//.#{$fa-css-prefix}-cny:before, +//.#{$fa-css-prefix}-rmb:before, +//.#{$fa-css-prefix}-yen:before, +//.#{$fa-css-prefix}-jpy:before { content: $fa-var-jpy; } +//.#{$fa-css-prefix}-ruble:before, +//.#{$fa-css-prefix}-rouble:before, +//.#{$fa-css-prefix}-rub:before { content: $fa-var-rub; } +//.#{$fa-css-prefix}-won:before, +//.#{$fa-css-prefix}-krw:before { content: $fa-var-krw; } +//.#{$fa-css-prefix}-bitcoin:before, +//.#{$fa-css-prefix}-btc:before { content: $fa-var-btc; } +//.#{$fa-css-prefix}-file:before { content: $fa-var-file; } +//.#{$fa-css-prefix}-file-text:before { content: $fa-var-file-text; } +//.#{$fa-css-prefix}-sort-alpha-down:before, +//.#{$fa-css-prefix}-sort-alpha-asc:before { content: $fa-var-sort-alpha-asc; } +//.#{$fa-css-prefix}-sort-alpha-up:before, +//.#{$fa-css-prefix}-sort-alpha-desc:before { content: $fa-var-sort-alpha-desc; } +//.#{$fa-css-prefix}-sort-amount-down:before, +//.#{$fa-css-prefix}-sort-amount-asc:before { content: $fa-var-sort-amount-asc; } +//.#{$fa-css-prefix}-sort-amount-up:before, +//.#{$fa-css-prefix}-sort-amount-desc:before { content: $fa-var-sort-amount-desc; } +//.#{$fa-css-prefix}-sort-numeric-down:before, +//.#{$fa-css-prefix}-sort-numeric-asc:before { content: $fa-var-sort-numeric-asc; } +//.#{$fa-css-prefix}-sort-numeric-up:before, +//.#{$fa-css-prefix}-sort-numeric-desc:before { content: $fa-var-sort-numeric-desc; } +//.#{$fa-css-prefix}-thumbs-up:before { content: $fa-var-thumbs-up; } +//.#{$fa-css-prefix}-thumbs-down:before { content: $fa-var-thumbs-down; } +//.#{$fa-css-prefix}-youtube-square:before { content: $fa-var-youtube-square; } +//.#{$fa-css-prefix}-youtube:before { content: $fa-var-youtube; } +//.#{$fa-css-prefix}-xing:before { content: $fa-var-xing; } +//.#{$fa-css-prefix}-xing-square:before { content: $fa-var-xing-square; } +//.#{$fa-css-prefix}-youtube-play:before { content: $fa-var-youtube-play; } +//.#{$fa-css-prefix}-dropbox:before { content: $fa-var-dropbox; } +//.#{$fa-css-prefix}-stack-overflow:before { content: $fa-var-stack-overflow; } +.#{$fa-css-prefix}-instagram:before { content: $fa-var-instagram; } +.#{$fa-css-prefix}-flickr:before { content: $fa-var-flickr; } +//.#{$fa-css-prefix}-adn:before { content: $fa-var-adn; } +//.#{$fa-css-prefix}-bitbucket:before { content: $fa-var-bitbucket; } +//.#{$fa-css-prefix}-bitbucket-square:before { content: $fa-var-bitbucket-square; } +//.#{$fa-css-prefix}-tumblr:before { content: $fa-var-tumblr; } +//.#{$fa-css-prefix}-tumblr-square:before { content: $fa-var-tumblr-square; } +//.#{$fa-css-prefix}-long-arrow-down:before { content: $fa-var-long-arrow-down; } +//.#{$fa-css-prefix}-long-arrow-up:before { content: $fa-var-long-arrow-up; } +//.#{$fa-css-prefix}-long-arrow-left:before { content: $fa-var-long-arrow-left; } +//.#{$fa-css-prefix}-long-arrow-right:before { content: $fa-var-long-arrow-right; } +//.#{$fa-css-prefix}-apple:before { content: $fa-var-apple; } +//.#{$fa-css-prefix}-windows:before { content: $fa-var-windows; } +//.#{$fa-css-prefix}-android:before { content: $fa-var-android; } +//.#{$fa-css-prefix}-linux:before { content: $fa-var-linux; } +//.#{$fa-css-prefix}-dribbble:before { content: $fa-var-dribbble; } +//.#{$fa-css-prefix}-skype:before { content: $fa-var-skype; } +//.#{$fa-css-prefix}-foursquare:before { content: $fa-var-foursquare; } +//.#{$fa-css-prefix}-trello:before { content: $fa-var-trello; } +//.#{$fa-css-prefix}-female:before { content: $fa-var-female; } +//.#{$fa-css-prefix}-male:before { content: $fa-var-male; } +//.#{$fa-css-prefix}-gittip:before, +//.#{$fa-css-prefix}-gratipay:before { content: $fa-var-gratipay; } +//.#{$fa-css-prefix}-sun-o:before { content: $fa-var-sun-o; } +//.#{$fa-css-prefix}-moon-o:before { content: $fa-var-moon-o; } +//.#{$fa-css-prefix}-archive:before { content: $fa-var-archive; } +//.#{$fa-css-prefix}-bug:before { content: $fa-var-bug; } +//.#{$fa-css-prefix}-vk:before { content: $fa-var-vk; } +//.#{$fa-css-prefix}-weibo:before { content: $fa-var-weibo; } +//.#{$fa-css-prefix}-renren:before { content: $fa-var-renren; } +//.#{$fa-css-prefix}-pagelines:before { content: $fa-var-pagelines; } +//.#{$fa-css-prefix}-stack-exchange:before { content: $fa-var-stack-exchange; } +//.#{$fa-css-prefix}-arrow-circle-o-right:before { content: $fa-var-arrow-circle-o-right; } +//.#{$fa-css-prefix}-arrow-circle-o-left:before { content: $fa-var-arrow-circle-o-left; } +//.#{$fa-css-prefix}-toggle-left:before, +//.#{$fa-css-prefix}-caret-square-o-left:before { content: $fa-var-caret-square-o-left; } +//.#{$fa-css-prefix}-dot-circle-o:before { content: $fa-var-dot-circle-o; } +//.#{$fa-css-prefix}-wheelchair:before { content: $fa-var-wheelchair; } +//.#{$fa-css-prefix}-vimeo-square:before { content: $fa-var-vimeo-square; } +//.#{$fa-css-prefix}-turkish-lira:before, +//.#{$fa-css-prefix}-try:before { content: $fa-var-try; } +//.#{$fa-css-prefix}-plus-square-o:before { content: $fa-var-plus-square-o; } +//.#{$fa-css-prefix}-space-shuttle:before { content: $fa-var-space-shuttle; } +//.#{$fa-css-prefix}-slack:before { content: $fa-var-slack; } +//.#{$fa-css-prefix}-envelope-square:before { content: $fa-var-envelope-square; } +//.#{$fa-css-prefix}-wordpress:before { content: $fa-var-wordpress; } +//.#{$fa-css-prefix}-openid:before { content: $fa-var-openid; } +//.#{$fa-css-prefix}-institution:before, +//.#{$fa-css-prefix}-bank:before, +//.#{$fa-css-prefix}-university:before { content: $fa-var-university; } +//.#{$fa-css-prefix}-mortar-board:before, +//.#{$fa-css-prefix}-graduation-cap:before { content: $fa-var-graduation-cap; } +//.#{$fa-css-prefix}-yahoo:before { content: $fa-var-yahoo; } +//.#{$fa-css-prefix}-google:before { content: $fa-var-google; } +//.#{$fa-css-prefix}-reddit:before { content: $fa-var-reddit; } +//.#{$fa-css-prefix}-reddit-square:before { content: $fa-var-reddit-square; } +//.#{$fa-css-prefix}-stumbleupon-circle:before { content: $fa-var-stumbleupon-circle; } +//.#{$fa-css-prefix}-stumbleupon:before { content: $fa-var-stumbleupon; } +//.#{$fa-css-prefix}-delicious:before { content: $fa-var-delicious; } +//.#{$fa-css-prefix}-digg:before { content: $fa-var-digg; } +//.#{$fa-css-prefix}-drupal:before { content: $fa-var-drupal; } +//.#{$fa-css-prefix}-joomla:before { content: $fa-var-joomla; } +//.#{$fa-css-prefix}-language:before { content: $fa-var-language; } +//.#{$fa-css-prefix}-fax:before { content: $fa-var-fax; } +//.#{$fa-css-prefix}-building:before { content: $fa-var-building; } +//.#{$fa-css-prefix}-child:before { content: $fa-var-child; } +//.#{$fa-css-prefix}-paw:before { content: $fa-var-paw; } +//.#{$fa-css-prefix}-utensil-spoon:before, +//.#{$fa-css-prefix}-spoon:before { content: $fa-var-spoon; } +//.#{$fa-css-prefix}-cube:before { content: $fa-var-cube; } +//.#{$fa-css-prefix}-cubes:before { content: $fa-var-cubes; } +//.#{$fa-css-prefix}-behance:before { content: $fa-var-behance; } +//.#{$fa-css-prefix}-behance-square:before { content: $fa-var-behance-square; } +//.#{$fa-css-prefix}-steam:before { content: $fa-var-steam; } +//.#{$fa-css-prefix}-steam-square:before { content: $fa-var-steam-square; } +//.#{$fa-css-prefix}-recycle:before { content: $fa-var-recycle; } +//.#{$fa-css-prefix}-automobile:before, +//.#{$fa-css-prefix}-car:before { content: $fa-var-car; } +//.#{$fa-css-prefix}-cab:before, +//.#{$fa-css-prefix}-taxi:before { content: $fa-var-taxi; } +//.#{$fa-css-prefix}-tree:before { content: $fa-var-tree; } +//.#{$fa-css-prefix}-spotify:before { content: $fa-var-spotify; } +.#{$fa-css-prefix}-deviantart:before { content: $fa-var-deviantart; } +//.#{$fa-css-prefix}-soundcloud:before { content: $fa-var-soundcloud; } +//.#{$fa-css-prefix}-database:before { content: $fa-var-database; } +//.#{$fa-css-prefix}-file-pdf-o:before { content: $fa-var-file-pdf-o; } +//.#{$fa-css-prefix}-file-word-o:before { content: $fa-var-file-word-o; } +//.#{$fa-css-prefix}-file-excel-o:before { content: $fa-var-file-excel-o; } +//.#{$fa-css-prefix}-file-powerpoint-o:before { content: $fa-var-file-powerpoint-o; } +//.#{$fa-css-prefix}-file-photo-o:before, +//.#{$fa-css-prefix}-file-picture-o:before, +//.#{$fa-css-prefix}-file-image-o:before { content: $fa-var-file-image-o; } +//.#{$fa-css-prefix}-file-zip-o:before, +//.#{$fa-css-prefix}-file-archive-o:before { content: $fa-var-file-archive-o; } +//.#{$fa-css-prefix}-file-sound-o:before, +//.#{$fa-css-prefix}-file-audio-o:before { content: $fa-var-file-audio-o; } +//.#{$fa-css-prefix}-file-movie-o:before, +//.#{$fa-css-prefix}-file-video-o:before { content: $fa-var-file-video-o; } +//.#{$fa-css-prefix}-file-code-o:before { content: $fa-var-file-code-o; } +//.#{$fa-css-prefix}-vine:before { content: $fa-var-vine; } +//.#{$fa-css-prefix}-codepen:before { content: $fa-var-codepen; } +//.#{$fa-css-prefix}-jsfiddle:before { content: $fa-var-jsfiddle; } +//.#{$fa-css-prefix}-life-bouy:before, +//.#{$fa-css-prefix}-life-buoy:before, +//.#{$fa-css-prefix}-life-saver:before, +//.#{$fa-css-prefix}-support:before, +//.#{$fa-css-prefix}-life-ring:before { content: $fa-var-life-ring; } +//.#{$fa-css-prefix}-circle-o-notch:before { content: $fa-var-circle-o-notch; } +//.#{$fa-css-prefix}-ra:before, +//.#{$fa-css-prefix}-resistance:before, +//.#{$fa-css-prefix}-rebel:before { content: $fa-var-rebel; } +//.#{$fa-css-prefix}-ge:before, +//.#{$fa-css-prefix}-empire:before { content: $fa-var-empire; } +//.#{$fa-css-prefix}-git-square:before { content: $fa-var-git-square; } +.#{$fa-css-prefix}-git:before { content: $fa-var-git; } +//.#{$fa-css-prefix}-y-combinator-square:before, +//.#{$fa-css-prefix}-yc-square:before, +//.#{$fa-css-prefix}-hacker-news:before { content: $fa-var-hacker-news; } +//.#{$fa-css-prefix}-tencent-weibo:before { content: $fa-var-tencent-weibo; } +//.#{$fa-css-prefix}-qq:before { content: $fa-var-qq; } +//.#{$fa-css-prefix}-wechat:before, +//.#{$fa-css-prefix}-weixin:before { content: $fa-var-weixin; } +//.#{$fa-css-prefix}-send:before, +//.#{$fa-css-prefix}-paper-plane:before { content: $fa-var-paper-plane; } +//.#{$fa-css-prefix}-send-o:before, +//.#{$fa-css-prefix}-paper-plane-o:before { content: $fa-var-paper-plane-o; } +//.#{$fa-css-prefix}-history:before { content: $fa-var-history; } +//.#{$fa-css-prefix}-circle-thin:before { content: $fa-var-circle-thin; } +//.#{$fa-css-prefix}-heading:before, +//.#{$fa-css-prefix}-header:before { content: $fa-var-header; } +//.#{$fa-css-prefix}-paragraph:before { content: $fa-var-paragraph; } +//.#{$fa-css-prefix}-sliders:before { content: $fa-var-sliders; } +//.#{$fa-css-prefix}-share-alt:before { content: $fa-var-share-alt; } +//.#{$fa-css-prefix}-share-alt-square:before { content: $fa-var-share-alt-square; } +//.#{$fa-css-prefix}-bomb:before { content: $fa-var-bomb; } +//.#{$fa-css-prefix}-soccer-ball-o:before, +//.#{$fa-css-prefix}-futbol-o:before { content: $fa-var-futbol-o; } +//.#{$fa-css-prefix}-tty:before { content: $fa-var-tty; } +//.#{$fa-css-prefix}-binoculars:before { content: $fa-var-binoculars; } +//.#{$fa-css-prefix}-plug:before { content: $fa-var-plug; } +//.#{$fa-css-prefix}-slideshare:before { content: $fa-var-slideshare; } +//.#{$fa-css-prefix}-twitch:before { content: $fa-var-twitch; } +//.#{$fa-css-prefix}-yelp:before { content: $fa-var-yelp; } +//.#{$fa-css-prefix}-newspaper-o:before { content: $fa-var-newspaper-o; } +//.#{$fa-css-prefix}-wifi:before { content: $fa-var-wifi; } +//.#{$fa-css-prefix}-calculator:before { content: $fa-var-calculator; } +//.#{$fa-css-prefix}-paypal:before { content: $fa-var-paypal; } +//.#{$fa-css-prefix}-google-wallet:before { content: $fa-var-google-wallet; } +//.#{$fa-css-prefix}-cc-visa:before { content: $fa-var-cc-visa; } +//.#{$fa-css-prefix}-cc-mastercard:before { content: $fa-var-cc-mastercard; } +//.#{$fa-css-prefix}-cc-discover:before { content: $fa-var-cc-discover; } +//.#{$fa-css-prefix}-cc-amex:before { content: $fa-var-cc-amex; } +//.#{$fa-css-prefix}-cc-paypal:before { content: $fa-var-cc-paypal; } +//.#{$fa-css-prefix}-cc-stripe:before { content: $fa-var-cc-stripe; } +//.#{$fa-css-prefix}-bell-slash:before { content: $fa-var-bell-slash; } +//.#{$fa-css-prefix}-bell-slash-o:before { content: $fa-var-bell-slash-o; } +//.#{$fa-css-prefix}-trash:before { content: $fa-var-trash; } +//.#{$fa-css-prefix}-copyright:before { content: $fa-var-copyright; } +//.#{$fa-css-prefix}-at:before { content: $fa-var-at; } +//.#{$fa-css-prefix}-eyedropper:before { content: $fa-var-eyedropper; } +//.#{$fa-css-prefix}-paint-brush:before { content: $fa-var-paint-brush; } +//.#{$fa-css-prefix}-birthday-cake:before { content: $fa-var-birthday-cake; } +//.#{$fa-css-prefix}-area-chart:before { content: $fa-var-area-chart; } +//.#{$fa-css-prefix}-pie-chart:before { content: $fa-var-pie-chart; } +//.#{$fa-css-prefix}-line-chart:before { content: $fa-var-line-chart; } +//.#{$fa-css-prefix}-lastfm:before { content: $fa-var-lastfm; } +//.#{$fa-css-prefix}-lastfm-square:before { content: $fa-var-lastfm-square; } +//.#{$fa-css-prefix}-toggle-off:before { content: $fa-var-toggle-off; } +//.#{$fa-css-prefix}-toggle-on:before { content: $fa-var-toggle-on; } +//.#{$fa-css-prefix}-bicycle:before { content: $fa-var-bicycle; } +//.#{$fa-css-prefix}-bus:before { content: $fa-var-bus; } +//.#{$fa-css-prefix}-ioxhost:before { content: $fa-var-ioxhost; } +//.#{$fa-css-prefix}-angellist:before { content: $fa-var-angellist; } +//.#{$fa-css-prefix}-closed-captioning:before, +//.#{$fa-css-prefix}-cc:before { content: $fa-var-cc; } +//.#{$fa-css-prefix}-shekel:before, +//.#{$fa-css-prefix}-sheqel:before, +//.#{$fa-css-prefix}-ils:before { content: $fa-var-ils; } +//.#{$fa-css-prefix}-meanpath:before { content: $fa-var-meanpath; } +//.#{$fa-css-prefix}-buysellads:before { content: $fa-var-buysellads; } +//.#{$fa-css-prefix}-connectdevelop:before { content: $fa-var-connectdevelop; } +//.#{$fa-css-prefix}-dashcube:before { content: $fa-var-dashcube; } +//.#{$fa-css-prefix}-forumbee:before { content: $fa-var-forumbee; } +//.#{$fa-css-prefix}-leanpub:before { content: $fa-var-leanpub; } +//.#{$fa-css-prefix}-sellsy:before { content: $fa-var-sellsy; } +//.#{$fa-css-prefix}-shirtsinbulk:before { content: $fa-var-shirtsinbulk; } +//.#{$fa-css-prefix}-simplybuilt:before { content: $fa-var-simplybuilt; } +//.#{$fa-css-prefix}-skyatlas:before { content: $fa-var-skyatlas; } +//.#{$fa-css-prefix}-cart-plus:before { content: $fa-var-cart-plus; } +//.#{$fa-css-prefix}-cart-arrow-down:before { content: $fa-var-cart-arrow-down; } +//.#{$fa-css-prefix}-gem:before, +//.#{$fa-css-prefix}-diamond:before { content: $fa-var-diamond; } +//.#{$fa-css-prefix}-ship:before { content: $fa-var-ship; } +//.#{$fa-css-prefix}-user-secret:before { content: $fa-var-user-secret; } +//.#{$fa-css-prefix}-motorcycle:before { content: $fa-var-motorcycle; } +//.#{$fa-css-prefix}-street-view:before { content: $fa-var-street-view; } +//.#{$fa-css-prefix}-heartbeat:before { content: $fa-var-heartbeat; } +//.#{$fa-css-prefix}-venus:before { content: $fa-var-venus; } +//.#{$fa-css-prefix}-mars:before { content: $fa-var-mars; } +//.#{$fa-css-prefix}-mercury:before { content: $fa-var-mercury; } +//.#{$fa-css-prefix}-intersex:before, +//.#{$fa-css-prefix}-transgender:before { content: $fa-var-transgender; } +//.#{$fa-css-prefix}-transgender-alt:before { content: $fa-var-transgender-alt; } +//.#{$fa-css-prefix}-venus-double:before { content: $fa-var-venus-double; } +//.#{$fa-css-prefix}-mars-double:before { content: $fa-var-mars-double; } +//.#{$fa-css-prefix}-venus-mars:before { content: $fa-var-venus-mars; } +//.#{$fa-css-prefix}-mars-stroke:before { content: $fa-var-mars-stroke; } +//.#{$fa-css-prefix}-mars-stroke-v:before { content: $fa-var-mars-stroke-v; } +//.#{$fa-css-prefix}-mars-stroke-h:before { content: $fa-var-mars-stroke-h; } +//.#{$fa-css-prefix}-neuter:before { content: $fa-var-neuter; } +//.#{$fa-css-prefix}-genderless:before { content: $fa-var-genderless; } +//.#{$fa-css-prefix}-facebook-official:before { content: $fa-var-facebook-official; } +//.#{$fa-css-prefix}-pinterest-p:before { content: $fa-var-pinterest-p; } +//.#{$fa-css-prefix}-whatsapp:before { content: $fa-var-whatsapp; } +//.#{$fa-css-prefix}-server:before { content: $fa-var-server; } +//.#{$fa-css-prefix}-user-plus:before { content: $fa-var-user-plus; } +//.#{$fa-css-prefix}-user-times:before { content: $fa-var-user-times; } +//.#{$fa-css-prefix}-hotel:before, +//.#{$fa-css-prefix}-bed:before { content: $fa-var-bed; } +//.#{$fa-css-prefix}-viacoin:before { content: $fa-var-viacoin; } +//.#{$fa-css-prefix}-train:before { content: $fa-var-train; } +//.#{$fa-css-prefix}-subway:before { content: $fa-var-subway; } +//.#{$fa-css-prefix}-medium:before { content: $fa-var-medium; } +//.#{$fa-css-prefix}-medium-square:before { content: $fa-var-medium-square; } +//.#{$fa-css-prefix}-yc:before, +//.#{$fa-css-prefix}-y-combinator:before { content: $fa-var-y-combinator; } +//.#{$fa-css-prefix}-optin-monster:before { content: $fa-var-optin-monster; } +//.#{$fa-css-prefix}-opencart:before { content: $fa-var-opencart; } +//.#{$fa-css-prefix}-expeditedssl:before { content: $fa-var-expeditedssl; } +//.#{$fa-css-prefix}-battery-4:before, +//.#{$fa-css-prefix}-battery:before, +//.#{$fa-css-prefix}-battery-full:before { content: $fa-var-battery-full; } +//.#{$fa-css-prefix}-battery-3:before, +//.#{$fa-css-prefix}-battery-three-quarters:before { content: $fa-var-battery-three-quarters; } +//.#{$fa-css-prefix}-battery-2:before, +//.#{$fa-css-prefix}-battery-half:before { content: $fa-var-battery-half; } +//.#{$fa-css-prefix}-battery-1:before, +//.#{$fa-css-prefix}-battery-quarter:before { content: $fa-var-battery-quarter; } +//.#{$fa-css-prefix}-battery-0:before, +//.#{$fa-css-prefix}-battery-empty:before { content: $fa-var-battery-empty; } +//.#{$fa-css-prefix}-mouse-pointer:before { content: $fa-var-mouse-pointer; } +//.#{$fa-css-prefix}-i-cursor:before { content: $fa-var-i-cursor; } +//.#{$fa-css-prefix}-object-group:before { content: $fa-var-object-group; } +//.#{$fa-css-prefix}-object-ungroup:before { content: $fa-var-object-ungroup; } +//.#{$fa-css-prefix}-sticky-note:before { content: $fa-var-sticky-note; } +//.#{$fa-css-prefix}-sticky-note-o:before { content: $fa-var-sticky-note-o; } +//.#{$fa-css-prefix}-cc-jcb:before { content: $fa-var-cc-jcb; } +//.#{$fa-css-prefix}-cc-diners-club:before { content: $fa-var-cc-diners-club; } +//.#{$fa-css-prefix}-clone:before { content: $fa-var-clone; } +//.#{$fa-css-prefix}-balance-scale:before { content: $fa-var-balance-scale; } +//.#{$fa-css-prefix}-hourglass-o:before { content: $fa-var-hourglass-o; } +//.#{$fa-css-prefix}-hourglass-1:before, +//.#{$fa-css-prefix}-hourglass-start:before { content: $fa-var-hourglass-start; } +//.#{$fa-css-prefix}-hourglass-2:before, +//.#{$fa-css-prefix}-hourglass-half:before { content: $fa-var-hourglass-half; } +//.#{$fa-css-prefix}-hourglass-3:before, +//.#{$fa-css-prefix}-hourglass-end:before { content: $fa-var-hourglass-end; } +//.#{$fa-css-prefix}-hourglass:before { content: $fa-var-hourglass; } +//.#{$fa-css-prefix}-hand-grab-o:before, +//.#{$fa-css-prefix}-hand-rock-o:before { content: $fa-var-hand-rock-o; } +//.#{$fa-css-prefix}-hand-stop-o:before, +//.#{$fa-css-prefix}-hand-paper-o:before { content: $fa-var-hand-paper-o; } +//.#{$fa-css-prefix}-hand-scissors-o:before { content: $fa-var-hand-scissors-o; } +//.#{$fa-css-prefix}-hand-lizard-o:before { content: $fa-var-hand-lizard-o; } +//.#{$fa-css-prefix}-hand-spock-o:before { content: $fa-var-hand-spock-o; } +//.#{$fa-css-prefix}-hand-pointer-o:before { content: $fa-var-hand-pointer-o; } +//.#{$fa-css-prefix}-hand-peace-o:before { content: $fa-var-hand-peace-o; } +//.#{$fa-css-prefix}-trademark:before { content: $fa-var-trademark; } +//.#{$fa-css-prefix}-registered:before { content: $fa-var-registered; } +//.#{$fa-css-prefix}-creative-commons:before { content: $fa-var-creative-commons; } +//.#{$fa-css-prefix}-gg:before { content: $fa-var-gg; } +//.#{$fa-css-prefix}-gg-circle:before { content: $fa-var-gg-circle; } +//.#{$fa-css-prefix}-tripadvisor:before { content: $fa-var-tripadvisor; } +//.#{$fa-css-prefix}-odnoklassniki:before { content: $fa-var-odnoklassniki; } +//.#{$fa-css-prefix}-odnoklassniki-square:before { content: $fa-var-odnoklassniki-square; } +//.#{$fa-css-prefix}-get-pocket:before { content: $fa-var-get-pocket; } +//.#{$fa-css-prefix}-wikipedia-w:before { content: $fa-var-wikipedia-w; } +//.#{$fa-css-prefix}-safari:before { content: $fa-var-safari; } +//.#{$fa-css-prefix}-chrome:before { content: $fa-var-chrome; } +//.#{$fa-css-prefix}-firefox:before { content: $fa-var-firefox; } +//.#{$fa-css-prefix}-opera:before { content: $fa-var-opera; } +//.#{$fa-css-prefix}-internet-explorer:before { content: $fa-var-internet-explorer; } +//.#{$fa-css-prefix}-tv:before, +//.#{$fa-css-prefix}-television:before { content: $fa-var-television; } +//.#{$fa-css-prefix}-contao:before { content: $fa-var-contao; } +//.#{$fa-css-prefix}-500px:before { content: $fa-var-500px; } +//.#{$fa-css-prefix}-amazon:before { content: $fa-var-amazon; } +//.#{$fa-css-prefix}-calendar-plus-o:before { content: $fa-var-calendar-plus-o; } +//.#{$fa-css-prefix}-calendar-minus-o:before { content: $fa-var-calendar-minus-o; } +//.#{$fa-css-prefix}-calendar-times-o:before { content: $fa-var-calendar-times-o; } +//.#{$fa-css-prefix}-calendar-check-o:before { content: $fa-var-calendar-check-o; } +//.#{$fa-css-prefix}-industry:before { content: $fa-var-industry; } +//.#{$fa-css-prefix}-map-pin:before { content: $fa-var-map-pin; } +//.#{$fa-css-prefix}-map-signs:before { content: $fa-var-map-signs; } +//.#{$fa-css-prefix}-map-o:before { content: $fa-var-map-o; } +//.#{$fa-css-prefix}-map:before { content: $fa-var-map; } +//.#{$fa-css-prefix}-commenting:before { content: $fa-var-commenting; } +//.#{$fa-css-prefix}-commenting-o:before { content: $fa-var-commenting-o; } +//.#{$fa-css-prefix}-houzz:before { content: $fa-var-houzz; } +//.#{$fa-css-prefix}-vimeo-v:before, +//.#{$fa-css-prefix}-vimeo:before { content: $fa-var-vimeo; } +//.#{$fa-css-prefix}-black-tie:before { content: $fa-var-black-tie; } +//.#{$fa-css-prefix}-fonticons:before { content: $fa-var-fonticons; } +//.#{$fa-css-prefix}-reddit-alien:before { content: $fa-var-reddit-alien; } +//.#{$fa-css-prefix}-edge:before { content: $fa-var-edge; } +//.#{$fa-css-prefix}-credit-card-alt:before { content: $fa-var-credit-card-alt; } +//.#{$fa-css-prefix}-codiepie:before { content: $fa-var-codiepie; } +//.#{$fa-css-prefix}-modx:before { content: $fa-var-modx; } +//.#{$fa-css-prefix}-fort-awesome:before { content: $fa-var-fort-awesome; } +//.#{$fa-css-prefix}-usb:before { content: $fa-var-usb; } +//.#{$fa-css-prefix}-product-hunt:before { content: $fa-var-product-hunt; } +//.#{$fa-css-prefix}-mixcloud:before { content: $fa-var-mixcloud; } +//.#{$fa-css-prefix}-scribd:before { content: $fa-var-scribd; } +//.#{$fa-css-prefix}-pause-circle:before { content: $fa-var-pause-circle; } +//.#{$fa-css-prefix}-pause-circle-o:before { content: $fa-var-pause-circle-o; } +//.#{$fa-css-prefix}-stop-circle:before { content: $fa-var-stop-circle; } +//.#{$fa-css-prefix}-stop-circle-o:before { content: $fa-var-stop-circle-o; } +//.#{$fa-css-prefix}-shopping-bag:before { content: $fa-var-shopping-bag; } +//.#{$fa-css-prefix}-shopping-basket:before { content: $fa-var-shopping-basket; } +//.#{$fa-css-prefix}-hashtag:before { content: $fa-var-hashtag; } +//.#{$fa-css-prefix}-bluetooth:before { content: $fa-var-bluetooth; } +//.#{$fa-css-prefix}-bluetooth-b:before { content: $fa-var-bluetooth-b; } +//.#{$fa-css-prefix}-percent:before { content: $fa-var-percent; } +//.#{$fa-css-prefix}-gitlab:before { content: $fa-var-gitlab; } +//.#{$fa-css-prefix}-wpbeginner:before { content: $fa-var-wpbeginner; } +//.#{$fa-css-prefix}-wpforms:before { content: $fa-var-wpforms; } +//.#{$fa-css-prefix}-envira:before { content: $fa-var-envira; } +//.#{$fa-css-prefix}-universal-access:before { content: $fa-var-universal-access; } +//.#{$fa-css-prefix}-wheelchair-alt:before { content: $fa-var-wheelchair-alt; } +//.#{$fa-css-prefix}-question-circle-o:before { content: $fa-var-question-circle-o; } +//.#{$fa-css-prefix}-blind:before { content: $fa-var-blind; } +//.#{$fa-css-prefix}-audio-description:before { content: $fa-var-audio-description; } +//.#{$fa-css-prefix}-phone-volume:before, +//.#{$fa-css-prefix}-volume-control-phone:before { content: $fa-var-volume-control-phone; } +//.#{$fa-css-prefix}-braille:before { content: $fa-var-braille; } +//.#{$fa-css-prefix}-assistive-listening-systems:before { content: $fa-var-assistive-listening-systems; } +//.#{$fa-css-prefix}-asl-interpreting:before, +//.#{$fa-css-prefix}-american-sign-language-interpreting:before { content: $fa-var-american-sign-language-interpreting; } +//.#{$fa-css-prefix}-deafness:before, +//.#{$fa-css-prefix}-hard-of-hearing:before, +//.#{$fa-css-prefix}-deaf:before { content: $fa-var-deaf; } +//.#{$fa-css-prefix}-glide:before { content: $fa-var-glide; } +//.#{$fa-css-prefix}-glide-g:before { content: $fa-var-glide-g; } +//.#{$fa-css-prefix}-signing:before, +//.#{$fa-css-prefix}-sign-language:before { content: $fa-var-sign-language; } +//.#{$fa-css-prefix}-low-vision:before { content: $fa-var-low-vision; } +//.#{$fa-css-prefix}-viadeo:before { content: $fa-var-viadeo; } +//.#{$fa-css-prefix}-viadeo-square:before { content: $fa-var-viadeo-square; } +//.#{$fa-css-prefix}-snapchat:before { content: $fa-var-snapchat; } +//.#{$fa-css-prefix}-snapchat-ghost:before { content: $fa-var-snapchat-ghost; } +//.#{$fa-css-prefix}-snapchat-square:before { content: $fa-var-snapchat-square; } +//.#{$fa-css-prefix}-first-order:before { content: $fa-var-first-order; } +//.#{$fa-css-prefix}-yoast:before { content: $fa-var-yoast; } +//.#{$fa-css-prefix}-themeisle:before { content: $fa-var-themeisle; } +//.#{$fa-css-prefix}-google-plus-circle:before, +//.#{$fa-css-prefix}-google-plus-official:before { content: $fa-var-google-plus-official; } +//.#{$fa-css-prefix}-fa:before, +//.#{$fa-css-prefix}-font-awesome:before { content: $fa-var-font-awesome; } +//.#{$fa-css-prefix}-handshake-o:before { content: $fa-var-handshake-o; } +//.#{$fa-css-prefix}-envelope-open:before { content: $fa-var-envelope-open; } +//.#{$fa-css-prefix}-envelope-open-o:before { content: $fa-var-envelope-open-o; } +//.#{$fa-css-prefix}-linode:before { content: $fa-var-linode; } +//.#{$fa-css-prefix}-address-book:before { content: $fa-var-address-book; } +//.#{$fa-css-prefix}-address-book-o:before { content: $fa-var-address-book-o; } +//.#{$fa-css-prefix}-vcard:before, +//.#{$fa-css-prefix}-address-card:before { content: $fa-var-address-card; } +//.#{$fa-css-prefix}-vcard-o:before, +//.#{$fa-css-prefix}-address-card-o:before { content: $fa-var-address-card-o; } +//.#{$fa-css-prefix}-user-circle:before { content: $fa-var-user-circle; } +//.#{$fa-css-prefix}-user-circle-o:before { content: $fa-var-user-circle-o; } +//.#{$fa-css-prefix}-user-o:before { content: $fa-var-user-o; } +//.#{$fa-css-prefix}-id-badge:before { content: $fa-var-id-badge; } +//.#{$fa-css-prefix}-drivers-license:before, +//.#{$fa-css-prefix}-id-card:before { content: $fa-var-id-card; } +//.#{$fa-css-prefix}-drivers-license-o:before, +//.#{$fa-css-prefix}-id-card-o:before { content: $fa-var-id-card-o; } +//.#{$fa-css-prefix}-quora:before { content: $fa-var-quora; } +//.#{$fa-css-prefix}-free-code-camp:before { content: $fa-var-free-code-camp; } +.#{$fa-css-prefix}-telegram:before { content: $fa-var-telegram; } +//.#{$fa-css-prefix}-thermometer-4:before, +//.#{$fa-css-prefix}-thermometer:before, +//.#{$fa-css-prefix}-thermometer-full:before { content: $fa-var-thermometer-full; } +//.#{$fa-css-prefix}-thermometer-3:before, +//.#{$fa-css-prefix}-thermometer-three-quarters:before { content: $fa-var-thermometer-three-quarters; } +//.#{$fa-css-prefix}-thermometer-2:before, +//.#{$fa-css-prefix}-thermometer-half:before { content: $fa-var-thermometer-half; } +//.#{$fa-css-prefix}-thermometer-1:before, +//.#{$fa-css-prefix}-thermometer-quarter:before { content: $fa-var-thermometer-quarter; } +//.#{$fa-css-prefix}-thermometer-0:before, +//.#{$fa-css-prefix}-thermometer-empty:before { content: $fa-var-thermometer-empty; } +//.#{$fa-css-prefix}-shower:before { content: $fa-var-shower; } +//.#{$fa-css-prefix}-bathtub:before, +//.#{$fa-css-prefix}-s15:before, +//.#{$fa-css-prefix}-bath:before { content: $fa-var-bath; } +//.#{$fa-css-prefix}-podcast:before { content: $fa-var-podcast; } +//.#{$fa-css-prefix}-window-maximize:before { content: $fa-var-window-maximize; } +//.#{$fa-css-prefix}-window-minimize:before { content: $fa-var-window-minimize; } +//.#{$fa-css-prefix}-window-restore:before { content: $fa-var-window-restore; } +//.#{$fa-css-prefix}-times-rectangle:before, +//.#{$fa-css-prefix}-window-close:before { content: $fa-var-window-close; } +//.#{$fa-css-prefix}-times-rectangle-o:before, +//.#{$fa-css-prefix}-window-close-o:before { content: $fa-var-window-close-o; } +//.#{$fa-css-prefix}-bandcamp:before { content: $fa-var-bandcamp; } +//.#{$fa-css-prefix}-grav:before { content: $fa-var-grav; } +//.#{$fa-css-prefix}-etsy:before { content: $fa-var-etsy; } +//.#{$fa-css-prefix}-imdb:before { content: $fa-var-imdb; } +//.#{$fa-css-prefix}-ravelry:before { content: $fa-var-ravelry; } +//.#{$fa-css-prefix}-eercast:before { content: $fa-var-eercast; } +//.#{$fa-css-prefix}-microchip:before { content: $fa-var-microchip; } +//.#{$fa-css-prefix}-snowflake-o:before { content: $fa-var-snowflake-o; } +//.#{$fa-css-prefix}-superpowers:before { content: $fa-var-superpowers; } +//.#{$fa-css-prefix}-wpexplorer:before { content: $fa-var-wpexplorer; } +//.#{$fa-css-prefix}-meetup:before { content: $fa-var-meetup; } +.#{$fa-css-prefix}-mastodon:before { content: $fa-var-mastodon; } +//.#{$fa-css-prefix}-mastodon-alt:before { content: $fa-var-mastodon-alt; } +//.#{$fa-css-prefix}-fork-circle:before, +//.#{$fa-css-prefix}-fork-awesome:before { content: $fa-var-fork-awesome; } +.#{$fa-css-prefix}-peertube:before { content: $fa-var-peertube; } +//.#{$fa-css-prefix}-diaspora:before { content: $fa-var-diaspora; } +//.#{$fa-css-prefix}-friendica:before { content: $fa-var-friendica; } +//.#{$fa-css-prefix}-gnu-social:before { content: $fa-var-gnu-social; } +//.#{$fa-css-prefix}-liberapay-square:before { content: $fa-var-liberapay-square; } +//.#{$fa-css-prefix}-liberapay:before { content: $fa-var-liberapay; } +//.#{$fa-css-prefix}-ssb:before, +//.#{$fa-css-prefix}-scuttlebutt:before { content: $fa-var-scuttlebutt; } +//.#{$fa-css-prefix}-hubzilla:before { content: $fa-var-hubzilla; } +//.#{$fa-css-prefix}-social-home:before { content: $fa-var-social-home; } +//.#{$fa-css-prefix}-artstation:before { content: $fa-var-artstation; } +//.#{$fa-css-prefix}-discord:before { content: $fa-var-discord; } +//.#{$fa-css-prefix}-discord-alt:before { content: $fa-var-discord-alt; } +//.#{$fa-css-prefix}-patreon:before { content: $fa-var-patreon; } +//.#{$fa-css-prefix}-snowdrift:before { content: $fa-var-snowdrift; } +//.#{$fa-css-prefix}-activitypub:before { content: $fa-var-activitypub; } +//.#{$fa-css-prefix}-ethereum:before { content: $fa-var-ethereum; } +//.#{$fa-css-prefix}-keybase:before { content: $fa-var-keybase; } +//.#{$fa-css-prefix}-shaarli:before { content: $fa-var-shaarli; } +//.#{$fa-css-prefix}-shaarli-o:before { content: $fa-var-shaarli-o; } +//.#{$fa-css-prefix}-cut-key:before, +//.#{$fa-css-prefix}-key-modern:before { content: $fa-var-key-modern; } +//.#{$fa-css-prefix}-xmpp:before { content: $fa-var-xmpp; } +//.#{$fa-css-prefix}-archive-org:before { content: $fa-var-archive-org; } +//.#{$fa-css-prefix}-freedombox:before { content: $fa-var-freedombox; } +//.#{$fa-css-prefix}-facebook-messenger:before { content: $fa-var-facebook-messenger; } +//.#{$fa-css-prefix}-debian:before { content: $fa-var-debian; } +//.#{$fa-css-prefix}-mastodon-square:before { content: $fa-var-mastodon-square; } +//.#{$fa-css-prefix}-tipeee:before { content: $fa-var-tipeee; } +//.#{$fa-css-prefix}-react:before { content: $fa-var-react; } +//.#{$fa-css-prefix}-dogmazic:before { content: $fa-var-dogmazic; } +//.#{$fa-css-prefix}-zotero:before { content: $fa-var-zotero; } +//.#{$fa-css-prefix}-nodejs:before { content: $fa-var-nodejs; } +//.#{$fa-css-prefix}-nextcloud:before { content: $fa-var-nextcloud; } +//.#{$fa-css-prefix}-nextcloud-square:before { content: $fa-var-nextcloud-square; } +//.#{$fa-css-prefix}-hackaday:before { content: $fa-var-hackaday; } +//.#{$fa-css-prefix}-laravel:before { content: $fa-var-laravel; } +//.#{$fa-css-prefix}-signalapp:before { content: $fa-var-signalapp; } +//.#{$fa-css-prefix}-gnupg:before { content: $fa-var-gnupg; } +//.#{$fa-css-prefix}-php:before { content: $fa-var-php; } +//.#{$fa-css-prefix}-ffmpeg:before { content: $fa-var-ffmpeg; } +//.#{$fa-css-prefix}-joplin:before { content: $fa-var-joplin; } +//.#{$fa-css-prefix}-syncthing:before { content: $fa-var-syncthing; } +//.#{$fa-css-prefix}-inkscape:before { content: $fa-var-inkscape; } +.#{$fa-css-prefix}-matrix-org:before { content: $fa-var-matrix-org; } +.#{$fa-css-prefix}-pixelfed:before { content: $fa-var-pixelfed; } +//.#{$fa-css-prefix}-bootstrap:before { content: $fa-var-bootstrap; } +//.#{$fa-css-prefix}-dev-to:before { content: $fa-var-dev-to; } +//.#{$fa-css-prefix}-hashnode:before { content: $fa-var-hashnode; } +//.#{$fa-css-prefix}-jirafeau:before { content: $fa-var-jirafeau; } +//.#{$fa-css-prefix}-emby:before { content: $fa-var-emby; } +//.#{$fa-css-prefix}-wikidata:before { content: $fa-var-wikidata; } +//.#{$fa-css-prefix}-gimp:before { content: $fa-var-gimp; } +//.#{$fa-css-prefix}-c:before { content: $fa-var-c; } +//.#{$fa-css-prefix}-digitalocean:before { content: $fa-var-digitalocean; } +//.#{$fa-css-prefix}-att:before { content: $fa-var-att; } +//.#{$fa-css-prefix}-gitea:before { content: $fa-var-gitea; } +//.#{$fa-css-prefix}-file-epub:before { content: $fa-var-file-epub; } +//.#{$fa-css-prefix}-python:before { content: $fa-var-python; } +//.#{$fa-css-prefix}-archlinux:before { content: $fa-var-archlinux; } +//.#{$fa-css-prefix}-pleroma:before { content: $fa-var-pleroma; } +//.#{$fa-css-prefix}-unsplash:before { content: $fa-var-unsplash; } +//.#{$fa-css-prefix}-hackster:before { content: $fa-var-hackster; } +//.#{$fa-css-prefix}-spell-check:before { content: $fa-var-spell-check; } +//.#{$fa-css-prefix}-moon:before { content: $fa-var-moon; } +//.#{$fa-css-prefix}-sun:before { content: $fa-var-sun; } +//.#{$fa-css-prefix}-f-droid:before { content: $fa-var-f-droid; } +//.#{$fa-css-prefix}-biometric:before { content: $fa-var-biometric; } diff --git a/themes/lucky/sass/forkawesome/_larger.scss b/themes/lucky/sass/forkawesome/_larger.scss new file mode 100644 index 0000000..41e9a81 --- /dev/null +++ b/themes/lucky/sass/forkawesome/_larger.scss @@ -0,0 +1,13 @@ +// Icon Sizes +// ------------------------- + +/* makes the font 33% larger relative to the icon container */ +.#{$fa-css-prefix}-lg { + font-size: (4em / 3); + line-height: (3em / 4); + vertical-align: -15%; +} +.#{$fa-css-prefix}-2x { font-size: 2em; } +.#{$fa-css-prefix}-3x { font-size: 3em; } +.#{$fa-css-prefix}-4x { font-size: 4em; } +.#{$fa-css-prefix}-5x { font-size: 5em; } diff --git a/themes/lucky/sass/forkawesome/_list.scss b/themes/lucky/sass/forkawesome/_list.scss new file mode 100644 index 0000000..7d1e4d5 --- /dev/null +++ b/themes/lucky/sass/forkawesome/_list.scss @@ -0,0 +1,19 @@ +// List Icons +// ------------------------- + +.#{$fa-css-prefix}-ul { + padding-left: 0; + margin-left: $fa-li-width; + list-style-type: none; + > li { position: relative; } +} +.#{$fa-css-prefix}-li { + position: absolute; + left: -$fa-li-width; + width: $fa-li-width; + top: (2em / 14); + text-align: center; + &.#{$fa-css-prefix}-lg { + left: -$fa-li-width + (4em / 14); + } +} diff --git a/themes/lucky/sass/forkawesome/_mixins.scss b/themes/lucky/sass/forkawesome/_mixins.scss new file mode 100644 index 0000000..6fdb128 --- /dev/null +++ b/themes/lucky/sass/forkawesome/_mixins.scss @@ -0,0 +1,60 @@ +// Mixins +// -------------------------- + +@mixin fa-icon() { + display: inline-block; + font: normal normal normal #{$fa-font-size-base}/#{$fa-line-height-base} #{$fa-font-family}; // shortening font declaration + font-size: inherit; // can't have font-size inherit on line above, so need to override + text-rendering: auto; // optimizelegibility throws things off #1094 + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; + +} + +@mixin fa-icon-rotate($degrees, $rotation) { + -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=#{$rotation})"; + -webkit-transform: rotate($degrees); + -ms-transform: rotate($degrees); + transform: rotate($degrees); +} + +@mixin fa-icon-flip($horiz, $vert, $rotation) { + -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=#{$rotation}, mirror=1)"; + -webkit-transform: scale($horiz, $vert); + -ms-transform: scale($horiz, $vert); + transform: scale($horiz, $vert); +} + + +// Only display content to screen readers. A la Bootstrap 4. +// +// See: http://a11yproject.com/posts/how-to-hide-content/ + +@mixin sr-only { + position: absolute; + width: 1px; + height: 1px; + padding: 0; + margin: -1px; + overflow: hidden; + clip: rect(0,0,0,0); + border: 0; +} + +// Use in conjunction with .sr-only to only display content when it's focused. +// +// Useful for "Skip to main content" links; see http://www.w3.org/TR/2013/NOTE-WCAG20-TECHS-20130905/G1 +// +// Credit: HTML5 Boilerplate + +@mixin sr-only-focusable { + &:active, + &:focus { + position: static; + width: auto; + height: auto; + margin: 0; + overflow: visible; + clip: auto; + } +} diff --git a/themes/lucky/sass/forkawesome/_path.scss b/themes/lucky/sass/forkawesome/_path.scss new file mode 100644 index 0000000..c4009c7 --- /dev/null +++ b/themes/lucky/sass/forkawesome/_path.scss @@ -0,0 +1,16 @@ +/* FONT PATH + * -------------------------- */ + +@font-face { + font-family: '#{$fa-font-family}'; + // src: url('#{$fa-font-path}/forkawesome-webfont.eot?v=#{$fa-version}'); + // src: url('#{$fa-font-path}/forkawesome-webfont.eot?#iefix&v=#{$fa-version}') format('embedded-opentype'), + // url('#{$fa-font-path}/forkawesome-webfont.woff2?v=#{$fa-version}') format('woff2'), + // url('#{$fa-font-path}/forkawesome-webfont.woff?v=#{$fa-version}') format('woff'), + // url('#{$fa-font-path}/forkawesome-webfont.ttf?v=#{$fa-version}') format('truetype'), + // url('#{$fa-font-path}/forkawesome-webfont.svg?v=#{$fa-version}#forkawesomeregular') format('svg'); + // src: url('#{$fa-font-path}/ForkAwesome.otf') format('opentype'); // used when developing fonts + src: url('#{$fa-font-path}/forkawesome-webfont.woff2') format('woff2'); + font-weight: normal; + font-style: normal; +} diff --git a/themes/lucky/sass/forkawesome/_rotated-flipped.scss b/themes/lucky/sass/forkawesome/_rotated-flipped.scss new file mode 100644 index 0000000..a3558fd --- /dev/null +++ b/themes/lucky/sass/forkawesome/_rotated-flipped.scss @@ -0,0 +1,20 @@ +// Rotated & Flipped Icons +// ------------------------- + +.#{$fa-css-prefix}-rotate-90 { @include fa-icon-rotate(90deg, 1); } +.#{$fa-css-prefix}-rotate-180 { @include fa-icon-rotate(180deg, 2); } +.#{$fa-css-prefix}-rotate-270 { @include fa-icon-rotate(270deg, 3); } + +.#{$fa-css-prefix}-flip-horizontal { @include fa-icon-flip(-1, 1, 0); } +.#{$fa-css-prefix}-flip-vertical { @include fa-icon-flip(1, -1, 2); } + +// Hook for IE8-9 +// ------------------------- + +:root .#{$fa-css-prefix}-rotate-90, +:root .#{$fa-css-prefix}-rotate-180, +:root .#{$fa-css-prefix}-rotate-270, +:root .#{$fa-css-prefix}-flip-horizontal, +:root .#{$fa-css-prefix}-flip-vertical { + filter: none; +} diff --git a/themes/lucky/sass/forkawesome/_screen-reader.scss b/themes/lucky/sass/forkawesome/_screen-reader.scss new file mode 100644 index 0000000..637426f --- /dev/null +++ b/themes/lucky/sass/forkawesome/_screen-reader.scss @@ -0,0 +1,5 @@ +// Screen Readers +// ------------------------- + +.sr-only { @include sr-only(); } +.sr-only-focusable { @include sr-only-focusable(); } diff --git a/themes/lucky/sass/forkawesome/_stacked.scss b/themes/lucky/sass/forkawesome/_stacked.scss new file mode 100644 index 0000000..aef7403 --- /dev/null +++ b/themes/lucky/sass/forkawesome/_stacked.scss @@ -0,0 +1,20 @@ +// Stacked Icons +// ------------------------- + +.#{$fa-css-prefix}-stack { + position: relative; + display: inline-block; + width: 2em; + height: 2em; + line-height: 2em; + vertical-align: middle; +} +.#{$fa-css-prefix}-stack-1x, .#{$fa-css-prefix}-stack-2x { + position: absolute; + left: 0; + width: 100%; + text-align: center; +} +.#{$fa-css-prefix}-stack-1x { line-height: inherit; } +.#{$fa-css-prefix}-stack-2x { font-size: 2em; } +.#{$fa-css-prefix}-inverse { color: $fa-inverse; } diff --git a/themes/lucky/sass/forkawesome/_variables.scss b/themes/lucky/sass/forkawesome/_variables.scss new file mode 100644 index 0000000..4837a72 --- /dev/null +++ b/themes/lucky/sass/forkawesome/_variables.scss @@ -0,0 +1,890 @@ +// Variables +// -------------------------- + +$fa-font-path: "../font" !default; +$fa-font-size-base: 14px !default; +$fa-line-height-base: 1 !default; +$fa-css-prefix: "fa" !default; +$fa-font-family: "ForkAwesome" !default; +$fa-version: "1.1.7" !default; +$fa-border-color: #eee !default; +$fa-inverse: #fff !default; +$fa-li-width: (30em / 14) !default; + +$fa-var-500px: "\f26e"; +$fa-var-activitypub: "\f2f2"; +$fa-var-address-book: "\f2b9"; +$fa-var-address-book-o: "\f2ba"; +$fa-var-address-card: "\f2bb"; +$fa-var-address-card-o: "\f2bc"; +$fa-var-adjust: "\f042"; +$fa-var-adn: "\f170"; +$fa-var-align-center: "\f037"; +$fa-var-align-justify: "\f039"; +$fa-var-align-left: "\f036"; +$fa-var-align-right: "\f038"; +$fa-var-amazon: "\f270"; +$fa-var-ambulance: "\f0f9"; +$fa-var-american-sign-language-interpreting: "\f2a3"; +$fa-var-anchor: "\f13d"; +$fa-var-android: "\f17b"; +$fa-var-angellist: "\f209"; +$fa-var-angle-double-down: "\f103"; +$fa-var-angle-double-left: "\f100"; +$fa-var-angle-double-right: "\f101"; +$fa-var-angle-double-up: "\f102"; +$fa-var-angle-down: "\f107"; +$fa-var-angle-left: "\f104"; +$fa-var-angle-right: "\f105"; +$fa-var-angle-up: "\f106"; +$fa-var-apple: "\f179"; +$fa-var-archive: "\f187"; +$fa-var-archive-org: "\f2fc"; +$fa-var-archlinux: "\f323"; +$fa-var-area-chart: "\f1fe"; +$fa-var-arrow-circle-down: "\f0ab"; +$fa-var-arrow-circle-left: "\f0a8"; +$fa-var-arrow-circle-o-down: "\f01a"; +$fa-var-arrow-circle-o-left: "\f190"; +$fa-var-arrow-circle-o-right: "\f18e"; +$fa-var-arrow-circle-o-up: "\f01b"; +$fa-var-arrow-circle-right: "\f0a9"; +$fa-var-arrow-circle-up: "\f0aa"; +$fa-var-arrow-down: "\f063"; +$fa-var-arrow-left: "\f060"; +$fa-var-arrow-right: "\f061"; +$fa-var-arrow-up: "\f062"; +$fa-var-arrows: "\f047"; +$fa-var-arrows-alt: "\f0b2"; +$fa-var-arrows-h: "\f07e"; +$fa-var-arrows-v: "\f07d"; +$fa-var-artstation: "\f2ed"; +$fa-var-asl-interpreting: "\f2a3"; +$fa-var-assistive-listening-systems: "\f2a2"; +$fa-var-asterisk: "\f069"; +$fa-var-at: "\f1fa"; +$fa-var-att: "\f31e"; +$fa-var-audio-description: "\f29e"; +$fa-var-automobile: "\f1b9"; +$fa-var-backward: "\f04a"; +$fa-var-balance-scale: "\f24e"; +$fa-var-ban: "\f05e"; +$fa-var-bandcamp: "\f2d5"; +$fa-var-bank: "\f19c"; +$fa-var-bar-chart: "\f080"; +$fa-var-bar-chart-o: "\f080"; +$fa-var-barcode: "\f02a"; +$fa-var-bars: "\f0c9"; +$fa-var-bath: "\f2cd"; +$fa-var-bathtub: "\f2cd"; +$fa-var-battery: "\f240"; +$fa-var-battery-0: "\f244"; +$fa-var-battery-1: "\f243"; +$fa-var-battery-2: "\f242"; +$fa-var-battery-3: "\f241"; +$fa-var-battery-4: "\f240"; +$fa-var-battery-empty: "\f244"; +$fa-var-battery-full: "\f240"; +$fa-var-battery-half: "\f242"; +$fa-var-battery-quarter: "\f243"; +$fa-var-battery-three-quarters: "\f241"; +$fa-var-bed: "\f236"; +$fa-var-beer: "\f0fc"; +$fa-var-behance: "\f1b4"; +$fa-var-behance-square: "\f1b5"; +$fa-var-bell: "\f0a2"; +$fa-var-bell-o: "\f0f3"; +$fa-var-bell-slash: "\f1f6"; +$fa-var-bell-slash-o: "\f1f7"; +$fa-var-bicycle: "\f206"; +$fa-var-binoculars: "\f1e5"; +$fa-var-biometric: "\f32b"; +$fa-var-birthday-cake: "\f1fd"; +$fa-var-bitbucket: "\f171"; +$fa-var-bitbucket-square: "\f172"; +$fa-var-bitcoin: "\f15a"; +$fa-var-black-tie: "\f27e"; +$fa-var-blind: "\f29d"; +$fa-var-bluetooth: "\f293"; +$fa-var-bluetooth-b: "\f294"; +$fa-var-bold: "\f032"; +$fa-var-bolt: "\f0e7"; +$fa-var-bomb: "\f1e2"; +$fa-var-book: "\f02d"; +$fa-var-bookmark: "\f02e"; +$fa-var-bookmark-o: "\f097"; +$fa-var-bootstrap: "\f315"; +$fa-var-braille: "\f2a1"; +$fa-var-briefcase: "\f0b1"; +$fa-var-btc: "\f15a"; +$fa-var-bug: "\f188"; +$fa-var-building: "\f1ad"; +$fa-var-building-o: "\f0f7"; +$fa-var-bullhorn: "\f0a1"; +$fa-var-bullseye: "\f140"; +$fa-var-bus: "\f207"; +$fa-var-buysellads: "\f20d"; +$fa-var-c: "\f31c"; +$fa-var-cab: "\f1ba"; +$fa-var-calculator: "\f1ec"; +$fa-var-calendar: "\f073"; +$fa-var-calendar-check-o: "\f274"; +$fa-var-calendar-minus-o: "\f272"; +$fa-var-calendar-o: "\f133"; +$fa-var-calendar-plus-o: "\f271"; +$fa-var-calendar-times-o: "\f273"; +$fa-var-camera: "\f030"; +$fa-var-camera-retro: "\f083"; +$fa-var-car: "\f1b9"; +$fa-var-caret-down: "\f0d7"; +$fa-var-caret-left: "\f0d9"; +$fa-var-caret-right: "\f0da"; +$fa-var-caret-square-o-down: "\f150"; +$fa-var-caret-square-o-left: "\f191"; +$fa-var-caret-square-o-right: "\f152"; +$fa-var-caret-square-o-up: "\f151"; +$fa-var-caret-up: "\f0d8"; +$fa-var-cart-arrow-down: "\f218"; +$fa-var-cart-plus: "\f217"; +$fa-var-cc: "\f20a"; +$fa-var-cc-amex: "\f1f3"; +$fa-var-cc-diners-club: "\f24c"; +$fa-var-cc-discover: "\f1f2"; +$fa-var-cc-jcb: "\f24b"; +$fa-var-cc-mastercard: "\f1f1"; +$fa-var-cc-paypal: "\f1f4"; +$fa-var-cc-stripe: "\f1f5"; +$fa-var-cc-visa: "\f1f0"; +$fa-var-certificate: "\f0a3"; +$fa-var-chain: "\f0c1"; +$fa-var-chain-broken: "\f127"; +$fa-var-check: "\f00c"; +$fa-var-check-circle: "\f058"; +$fa-var-check-circle-o: "\f05d"; +$fa-var-check-square: "\f14a"; +$fa-var-check-square-o: "\f046"; +$fa-var-chevron-circle-down: "\f13a"; +$fa-var-chevron-circle-left: "\f137"; +$fa-var-chevron-circle-right: "\f138"; +$fa-var-chevron-circle-up: "\f139"; +$fa-var-chevron-down: "\f078"; +$fa-var-chevron-left: "\f053"; +$fa-var-chevron-right: "\f054"; +$fa-var-chevron-up: "\f077"; +$fa-var-child: "\f1ae"; +$fa-var-chrome: "\f268"; +$fa-var-circle: "\f111"; +$fa-var-circle-o: "\f10c"; +$fa-var-circle-o-notch: "\f1ce"; +$fa-var-circle-thin: "\f1db"; +$fa-var-clipboard: "\f0ea"; +$fa-var-clock-o: "\f017"; +$fa-var-clone: "\f24d"; +$fa-var-close: "\f00d"; +$fa-var-closed-captioning: "\f20a"; +$fa-var-cloud: "\f0c2"; +$fa-var-cloud-download: "\f0ed"; +$fa-var-cloud-upload: "\f0ee"; +$fa-var-cny: "\f157"; +$fa-var-code: "\f121"; +$fa-var-code-fork: "\f126"; +$fa-var-codepen: "\f1cb"; +$fa-var-codiepie: "\f284"; +$fa-var-coffee: "\f0f4"; +$fa-var-cog: "\f013"; +$fa-var-cogs: "\f085"; +$fa-var-columns: "\f0db"; +$fa-var-comment: "\f075"; +$fa-var-comment-o: "\f0e5"; +$fa-var-commenting: "\f27a"; +$fa-var-commenting-o: "\f27b"; +$fa-var-comments: "\f086"; +$fa-var-comments-o: "\f0e6"; +$fa-var-community: "\f0c0"; +$fa-var-compass: "\f14e"; +$fa-var-compress: "\f066"; +$fa-var-connectdevelop: "\f20e"; +$fa-var-contao: "\f26d"; +$fa-var-copy: "\f0c5"; +$fa-var-copyright: "\f1f9"; +$fa-var-creative-commons: "\f25e"; +$fa-var-credit-card: "\f09d"; +$fa-var-credit-card-alt: "\f283"; +$fa-var-crop: "\f125"; +$fa-var-crosshairs: "\f05b"; +$fa-var-css3: "\f13c"; +$fa-var-cube: "\f1b2"; +$fa-var-cubes: "\f1b3"; +$fa-var-cut: "\f0c4"; +$fa-var-cut-key: "\f2f7"; +$fa-var-cutlery: "\f0f5"; +$fa-var-dashboard: "\f0e4"; +$fa-var-dashcube: "\f210"; +$fa-var-database: "\f1c0"; +$fa-var-deaf: "\f2a4"; +$fa-var-deafness: "\f2a4"; +$fa-var-debian: "\f2ff"; +$fa-var-dedent: "\f03b"; +$fa-var-delicious: "\f1a5"; +$fa-var-desktop: "\f108"; +$fa-var-dev-to: "\f316"; +$fa-var-deviantart: "\f1bd"; +$fa-var-diamond: "\f219"; +$fa-var-diaspora: "\f2e5"; +$fa-var-digg: "\f1a6"; +$fa-var-digitalocean: "\f31d"; +$fa-var-discord: "\f2ee"; +$fa-var-discord-alt: "\f2ef"; +$fa-var-dogmazic: "\f303"; +$fa-var-dollar: "\f155"; +$fa-var-dot-circle-o: "\f192"; +$fa-var-download: "\f019"; +$fa-var-dribbble: "\f17d"; +$fa-var-drivers-license: "\f2c2"; +$fa-var-drivers-license-o: "\f2c3"; +$fa-var-dropbox: "\f16b"; +$fa-var-drupal: "\f1a9"; +$fa-var-edge: "\f282"; +$fa-var-edit: "\f044"; +$fa-var-eercast: "\f2da"; +$fa-var-eject: "\f052"; +$fa-var-ellipsis-h: "\f141"; +$fa-var-ellipsis-v: "\f142"; +$fa-var-emby: "\f319"; +$fa-var-empire: "\f1d1"; +$fa-var-envelope: "\f0e0"; +$fa-var-envelope-o: "\f003"; +$fa-var-envelope-open: "\f2b6"; +$fa-var-envelope-open-o: "\f2b7"; +$fa-var-envelope-square: "\f199"; +$fa-var-envira: "\f299"; +$fa-var-eraser: "\f12d"; +$fa-var-ethereum: "\f2f3"; +$fa-var-etsy: "\f2d7"; +$fa-var-eur: "\f153"; +$fa-var-euro: "\f153"; +$fa-var-exchange: "\f0ec"; +$fa-var-exclamation: "\f12a"; +$fa-var-exclamation-circle: "\f06a"; +$fa-var-exclamation-triangle: "\f071"; +$fa-var-expand: "\f065"; +$fa-var-expeditedssl: "\f23e"; +$fa-var-external-link: "\f08e"; +$fa-var-external-link-square: "\f14c"; +$fa-var-eye: "\f06e"; +$fa-var-eye-slash: "\f070"; +$fa-var-eyedropper: "\f1fb"; +$fa-var-f-droid: "\f32a"; +$fa-var-fa: "\f2b4"; +$fa-var-facebook: "\f09a"; +$fa-var-facebook-f: "\f09a"; +$fa-var-facebook-messenger: "\f2fe"; +$fa-var-facebook-official: "\f230"; +$fa-var-facebook-square: "\f082"; +$fa-var-fast-backward: "\f049"; +$fa-var-fast-forward: "\f050"; +$fa-var-fax: "\f1ac"; +$fa-var-feed: "\f09e"; +$fa-var-female: "\f182"; +$fa-var-ffmpeg: "\f30f"; +$fa-var-fighter-jet: "\f0fb"; +$fa-var-file: "\f15b"; +$fa-var-file-archive-o: "\f1c6"; +$fa-var-file-audio-o: "\f1c7"; +$fa-var-file-code-o: "\f1c9"; +$fa-var-file-epub: "\f321"; +$fa-var-file-excel-o: "\f1c3"; +$fa-var-file-image-o: "\f1c5"; +$fa-var-file-movie-o: "\f1c8"; +$fa-var-file-o: "\f016"; +$fa-var-file-pdf-o: "\f1c1"; +$fa-var-file-photo-o: "\f1c5"; +$fa-var-file-picture-o: "\f1c5"; +$fa-var-file-powerpoint-o: "\f1c4"; +$fa-var-file-sound-o: "\f1c7"; +$fa-var-file-text: "\f15c"; +$fa-var-file-text-o: "\f0f6"; +$fa-var-file-video-o: "\f1c8"; +$fa-var-file-word-o: "\f1c2"; +$fa-var-file-zip-o: "\f1c6"; +$fa-var-files-o: "\f0c5"; +$fa-var-film: "\f008"; +$fa-var-filter: "\f0b0"; +$fa-var-fire: "\f06d"; +$fa-var-fire-extinguisher: "\f134"; +$fa-var-firefox: "\f269"; +$fa-var-first-order: "\f2b0"; +$fa-var-flag: "\f024"; +$fa-var-flag-checkered: "\f11e"; +$fa-var-flag-o: "\f11d"; +$fa-var-flash: "\f0e7"; +$fa-var-flask: "\f0c3"; +$fa-var-flickr: "\f16e"; +$fa-var-floppy-o: "\f0c7"; +$fa-var-folder: "\f07b"; +$fa-var-folder-o: "\f114"; +$fa-var-folder-open: "\f07c"; +$fa-var-folder-open-o: "\f115"; +$fa-var-font: "\f031"; +$fa-var-font-awesome: "\f2b4"; +$fa-var-fonticons: "\f280"; +$fa-var-fork-awesome: "\f2e3"; +$fa-var-fork-circle: "\f2e3"; +$fa-var-fort-awesome: "\f286"; +$fa-var-forumbee: "\f211"; +$fa-var-forward: "\f04e"; +$fa-var-foursquare: "\f180"; +$fa-var-free-code-camp: "\f2c5"; +$fa-var-freedombox: "\f2fd"; +$fa-var-friendica: "\f2e6"; +$fa-var-frown-o: "\f119"; +$fa-var-futbol-o: "\f1e3"; +$fa-var-gamepad: "\f11b"; +$fa-var-gavel: "\f0e3"; +$fa-var-gbp: "\f154"; +$fa-var-ge: "\f1d1"; +$fa-var-gear: "\f013"; +$fa-var-gears: "\f085"; +$fa-var-gem: "\f219"; +$fa-var-genderless: "\f22d"; +$fa-var-get-pocket: "\f265"; +$fa-var-gg: "\f260"; +$fa-var-gg-circle: "\f261"; +$fa-var-gift: "\f06b"; +$fa-var-gimp: "\f31b"; +$fa-var-git: "\f1d3"; +$fa-var-git-square: "\f1d2"; +$fa-var-gitea: "\f31f"; +$fa-var-github: "\f09b"; +$fa-var-github-alt: "\f113"; +$fa-var-github-square: "\f092"; +$fa-var-gitlab: "\f296"; +$fa-var-gittip: "\f184"; +$fa-var-glass: "\f000"; +$fa-var-glide: "\f2a5"; +$fa-var-glide-g: "\f2a6"; +$fa-var-globe: "\f0ac"; +$fa-var-globe-e: "\f304"; +$fa-var-globe-w: "\f305"; +$fa-var-gnu-social: "\f2e7"; +$fa-var-gnupg: "\f30d"; +$fa-var-google: "\f1a0"; +$fa-var-google-plus: "\f0d5"; +$fa-var-google-plus-circle: "\f2b3"; +$fa-var-google-plus-g: "\f0d5"; +$fa-var-google-plus-official: "\f2b3"; +$fa-var-google-plus-square: "\f0d4"; +$fa-var-google-wallet: "\f1ee"; +$fa-var-graduation-cap: "\f19d"; +$fa-var-gratipay: "\f184"; +$fa-var-grav: "\f2d6"; +$fa-var-group: "\f0c0"; +$fa-var-h-square: "\f0fd"; +$fa-var-hackaday: "\f30a"; +$fa-var-hacker-news: "\f1d4"; +$fa-var-hackster: "\f326"; +$fa-var-hand-grab-o: "\f255"; +$fa-var-hand-lizard-o: "\f258"; +$fa-var-hand-o-down: "\f0a7"; +$fa-var-hand-o-left: "\f0a5"; +$fa-var-hand-o-right: "\f0a4"; +$fa-var-hand-o-up: "\f0a6"; +$fa-var-hand-paper-o: "\f256"; +$fa-var-hand-peace-o: "\f25b"; +$fa-var-hand-pointer-o: "\f25a"; +$fa-var-hand-rock-o: "\f255"; +$fa-var-hand-scissors-o: "\f257"; +$fa-var-hand-spock-o: "\f259"; +$fa-var-hand-stop-o: "\f256"; +$fa-var-handshake-o: "\f2b5"; +$fa-var-hard-of-hearing: "\f2a4"; +$fa-var-hashnode: "\f317"; +$fa-var-hashtag: "\f292"; +$fa-var-hdd-o: "\f0a0"; +$fa-var-header: "\f1dc"; +$fa-var-heading: "\f1dc"; +$fa-var-headphones: "\f025"; +$fa-var-heart: "\f004"; +$fa-var-heart-o: "\f08a"; +$fa-var-heartbeat: "\f21e"; +$fa-var-history: "\f1da"; +$fa-var-home: "\f015"; +$fa-var-hospital-o: "\f0f8"; +$fa-var-hotel: "\f236"; +$fa-var-hourglass: "\f254"; +$fa-var-hourglass-1: "\f251"; +$fa-var-hourglass-2: "\f252"; +$fa-var-hourglass-3: "\f253"; +$fa-var-hourglass-end: "\f253"; +$fa-var-hourglass-half: "\f252"; +$fa-var-hourglass-o: "\f250"; +$fa-var-hourglass-start: "\f251"; +$fa-var-houzz: "\f27c"; +$fa-var-html5: "\f13b"; +$fa-var-hubzilla: "\f2eb"; +$fa-var-i-cursor: "\f246"; +$fa-var-id-badge: "\f2c1"; +$fa-var-id-card: "\f2c2"; +$fa-var-id-card-o: "\f2c3"; +$fa-var-ils: "\f20b"; +$fa-var-image: "\f03e"; +$fa-var-imdb: "\f2d8"; +$fa-var-inbox: "\f01c"; +$fa-var-indent: "\f03c"; +$fa-var-industry: "\f275"; +$fa-var-info: "\f129"; +$fa-var-info-circle: "\f05a"; +$fa-var-inkscape: "\f312"; +$fa-var-inr: "\f156"; +$fa-var-instagram: "\f16d"; +$fa-var-institution: "\f19c"; +$fa-var-internet-explorer: "\f26b"; +$fa-var-intersex: "\f224"; +$fa-var-ioxhost: "\f208"; +$fa-var-italic: "\f033"; +$fa-var-jirafeau: "\f318"; +$fa-var-joomla: "\f1aa"; +$fa-var-joplin: "\f310"; +$fa-var-jpy: "\f157"; +$fa-var-jsfiddle: "\f1cc"; +$fa-var-key: "\f084"; +$fa-var-key-modern: "\f2f7"; +$fa-var-keybase: "\f2f4"; +$fa-var-keyboard-o: "\f11c"; +$fa-var-krw: "\f159"; +$fa-var-language: "\f1ab"; +$fa-var-laptop: "\f109"; +$fa-var-laravel: "\f30b"; +$fa-var-lastfm: "\f202"; +$fa-var-lastfm-square: "\f203"; +$fa-var-leaf: "\f06c"; +$fa-var-leanpub: "\f212"; +$fa-var-legal: "\f0e3"; +$fa-var-lemon-o: "\f094"; +$fa-var-level-down: "\f149"; +$fa-var-level-up: "\f148"; +$fa-var-liberapay: "\f2e9"; +$fa-var-liberapay-square: "\f2e8"; +$fa-var-life-bouy: "\f1cd"; +$fa-var-life-buoy: "\f1cd"; +$fa-var-life-ring: "\f1cd"; +$fa-var-life-saver: "\f1cd"; +$fa-var-lightbulb-o: "\f0eb"; +$fa-var-line-chart: "\f201"; +$fa-var-link: "\f0c1"; +$fa-var-linkedin: "\f0e1"; +$fa-var-linkedin-square: "\f08c"; +$fa-var-linode: "\f2b8"; +$fa-var-linux: "\f17c"; +$fa-var-list: "\f03a"; +$fa-var-list-alt: "\f022"; +$fa-var-list-ol: "\f0cb"; +$fa-var-list-ul: "\f0ca"; +$fa-var-location-arrow: "\f124"; +$fa-var-lock: "\f023"; +$fa-var-long-arrow-down: "\f175"; +$fa-var-long-arrow-left: "\f177"; +$fa-var-long-arrow-right: "\f178"; +$fa-var-long-arrow-up: "\f176"; +$fa-var-low-vision: "\f2a8"; +$fa-var-magic: "\f0d0"; +$fa-var-magnet: "\f076"; +$fa-var-mail-forward: "\f064"; +$fa-var-mail-reply: "\f112"; +$fa-var-mail-reply-all: "\f122"; +$fa-var-male: "\f183"; +$fa-var-map: "\f279"; +$fa-var-map-marker: "\f041"; +$fa-var-map-o: "\f278"; +$fa-var-map-pin: "\f276"; +$fa-var-map-signs: "\f277"; +$fa-var-mars: "\f222"; +$fa-var-mars-double: "\f227"; +$fa-var-mars-stroke: "\f229"; +$fa-var-mars-stroke-h: "\f22b"; +$fa-var-mars-stroke-v: "\f22a"; +$fa-var-mastodon: "\f2e1"; +$fa-var-mastodon-alt: "\f2e2"; +$fa-var-mastodon-square: "\f300"; +$fa-var-matrix-org: "\f313"; +$fa-var-maxcdn: "\f136"; +$fa-var-meanpath: "\f20c"; +$fa-var-medium: "\f23a"; +$fa-var-medium-square: "\f2f8"; +$fa-var-medkit: "\f0fa"; +$fa-var-meetup: "\f2e0"; +$fa-var-meh-o: "\f11a"; +$fa-var-mercury: "\f223"; +$fa-var-microchip: "\f2db"; +$fa-var-microphone: "\f130"; +$fa-var-microphone-slash: "\f131"; +$fa-var-minus: "\f068"; +$fa-var-minus-circle: "\f056"; +$fa-var-minus-square: "\f146"; +$fa-var-minus-square-o: "\f147"; +$fa-var-mixcloud: "\f289"; +$fa-var-mobile: "\f10b"; +$fa-var-mobile-phone: "\f10b"; +$fa-var-modx: "\f285"; +$fa-var-money: "\f0d6"; +$fa-var-moon: "\f328"; +$fa-var-moon-o: "\f186"; +$fa-var-mortar-board: "\f19d"; +$fa-var-motorcycle: "\f21c"; +$fa-var-mouse-pointer: "\f245"; +$fa-var-music: "\f001"; +$fa-var-navicon: "\f0c9"; +$fa-var-neuter: "\f22c"; +$fa-var-newspaper-o: "\f1ea"; +$fa-var-nextcloud: "\f306"; +$fa-var-nextcloud-square: "\f307"; +$fa-var-nodejs: "\f308"; +$fa-var-object-group: "\f247"; +$fa-var-object-ungroup: "\f248"; +$fa-var-odnoklassniki: "\f263"; +$fa-var-odnoklassniki-square: "\f264"; +$fa-var-opencart: "\f23d"; +$fa-var-openid: "\f19b"; +$fa-var-opera: "\f26a"; +$fa-var-optin-monster: "\f23c"; +$fa-var-outdent: "\f03b"; +$fa-var-pagelines: "\f18c"; +$fa-var-paint-brush: "\f1fc"; +$fa-var-paper-plane: "\f1d8"; +$fa-var-paper-plane-o: "\f1d9"; +$fa-var-paperclip: "\f0c6"; +$fa-var-paragraph: "\f1dd"; +$fa-var-paste: "\f0ea"; +$fa-var-patreon: "\f2f0"; +$fa-var-pause: "\f04c"; +$fa-var-pause-circle: "\f28b"; +$fa-var-pause-circle-o: "\f28c"; +$fa-var-paw: "\f1b0"; +$fa-var-paypal: "\f1ed"; +$fa-var-peertube: "\f2e4"; +$fa-var-pencil: "\f040"; +$fa-var-pencil-square: "\f14b"; +$fa-var-pencil-square-o: "\f044"; +$fa-var-percent: "\f295"; +$fa-var-phone: "\f095"; +$fa-var-phone-square: "\f098"; +$fa-var-phone-volume: "\f2a0"; +$fa-var-photo: "\f03e"; +$fa-var-php: "\f30e"; +$fa-var-picture-o: "\f03e"; +$fa-var-pie-chart: "\f200"; +$fa-var-pinterest: "\f0d2"; +$fa-var-pinterest-p: "\f231"; +$fa-var-pinterest-square: "\f0d3"; +$fa-var-pixelfed: "\f314"; +$fa-var-plane: "\f072"; +$fa-var-play: "\f04b"; +$fa-var-play-circle: "\f144"; +$fa-var-play-circle-o: "\f01d"; +$fa-var-pleroma: "\f324"; +$fa-var-plug: "\f1e6"; +$fa-var-plus: "\f067"; +$fa-var-plus-circle: "\f055"; +$fa-var-plus-square: "\f0fe"; +$fa-var-plus-square-o: "\f196"; +$fa-var-podcast: "\f2ce"; +$fa-var-pound: "\f154"; +$fa-var-power-off: "\f011"; +$fa-var-print: "\f02f"; +$fa-var-product-hunt: "\f288"; +$fa-var-puzzle-piece: "\f12e"; +$fa-var-python: "\f322"; +$fa-var-qq: "\f1d6"; +$fa-var-qrcode: "\f029"; +$fa-var-question: "\f128"; +$fa-var-question-circle: "\f059"; +$fa-var-question-circle-o: "\f29c"; +$fa-var-quora: "\f2c4"; +$fa-var-quote-left: "\f10d"; +$fa-var-quote-right: "\f10e"; +$fa-var-ra: "\f1d0"; +$fa-var-random: "\f074"; +$fa-var-ravelry: "\f2d9"; +$fa-var-react: "\f302"; +$fa-var-rebel: "\f1d0"; +$fa-var-recycle: "\f1b8"; +$fa-var-reddit: "\f1a1"; +$fa-var-reddit-alien: "\f281"; +$fa-var-reddit-square: "\f1a2"; +$fa-var-refresh: "\f021"; +$fa-var-registered: "\f25d"; +$fa-var-remove: "\f00d"; +$fa-var-renren: "\f18b"; +$fa-var-reorder: "\f0c9"; +$fa-var-repeat: "\f01e"; +$fa-var-reply: "\f112"; +$fa-var-reply-all: "\f122"; +$fa-var-resistance: "\f1d0"; +$fa-var-retweet: "\f079"; +$fa-var-rmb: "\f157"; +$fa-var-road: "\f018"; +$fa-var-rocket: "\f135"; +$fa-var-rotate-left: "\f0e2"; +$fa-var-rotate-right: "\f01e"; +$fa-var-rouble: "\f158"; +$fa-var-rss: "\f09e"; +$fa-var-rss-square: "\f143"; +$fa-var-rub: "\f158"; +$fa-var-ruble: "\f158"; +$fa-var-rupee: "\f156"; +$fa-var-s15: "\f2cd"; +$fa-var-safari: "\f267"; +$fa-var-save: "\f0c7"; +$fa-var-scissors: "\f0c4"; +$fa-var-scribd: "\f28a"; +$fa-var-scuttlebutt: "\f2ea"; +$fa-var-search: "\f002"; +$fa-var-search-minus: "\f010"; +$fa-var-search-plus: "\f00e"; +$fa-var-sellsy: "\f213"; +$fa-var-send: "\f1d8"; +$fa-var-send-o: "\f1d9"; +$fa-var-server: "\f233"; +$fa-var-shaarli: "\f2f5"; +$fa-var-shaarli-o: "\f2f6"; +$fa-var-share: "\f064"; +$fa-var-share-alt: "\f1e0"; +$fa-var-share-alt-square: "\f1e1"; +$fa-var-share-square: "\f14d"; +$fa-var-share-square-o: "\f045"; +$fa-var-shekel: "\f20b"; +$fa-var-sheqel: "\f20b"; +$fa-var-shield: "\f132"; +$fa-var-ship: "\f21a"; +$fa-var-shirtsinbulk: "\f214"; +$fa-var-shopping-bag: "\f290"; +$fa-var-shopping-basket: "\f291"; +$fa-var-shopping-cart: "\f07a"; +$fa-var-shower: "\f2cc"; +$fa-var-sign-in: "\f090"; +$fa-var-sign-language: "\f2a7"; +$fa-var-sign-out: "\f08b"; +$fa-var-signal: "\f012"; +$fa-var-signalapp: "\f30c"; +$fa-var-signing: "\f2a7"; +$fa-var-simplybuilt: "\f215"; +$fa-var-sitemap: "\f0e8"; +$fa-var-skyatlas: "\f216"; +$fa-var-skype: "\f17e"; +$fa-var-slack: "\f198"; +$fa-var-sliders: "\f1de"; +$fa-var-slideshare: "\f1e7"; +$fa-var-smile-o: "\f118"; +$fa-var-snapchat: "\f2ab"; +$fa-var-snapchat-ghost: "\f2ac"; +$fa-var-snapchat-square: "\f2ad"; +$fa-var-snowdrift: "\f2f1"; +$fa-var-snowflake-o: "\f2dc"; +$fa-var-soccer-ball-o: "\f1e3"; +$fa-var-social-home: "\f2ec"; +$fa-var-sort: "\f0dc"; +$fa-var-sort-alpha-asc: "\f15d"; +$fa-var-sort-alpha-desc: "\f15e"; +$fa-var-sort-alpha-down: "\f15d"; +$fa-var-sort-alpha-up: "\f15e"; +$fa-var-sort-amount-asc: "\f160"; +$fa-var-sort-amount-desc: "\f161"; +$fa-var-sort-amount-down: "\f160"; +$fa-var-sort-amount-up: "\f161"; +$fa-var-sort-asc: "\f0de"; +$fa-var-sort-desc: "\f0dd"; +$fa-var-sort-down: "\f0dd"; +$fa-var-sort-numeric-asc: "\f162"; +$fa-var-sort-numeric-desc: "\f163"; +$fa-var-sort-numeric-down: "\f162"; +$fa-var-sort-numeric-up: "\f163"; +$fa-var-sort-up: "\f0de"; +$fa-var-soundcloud: "\f1be"; +$fa-var-space-shuttle: "\f197"; +$fa-var-spell-check: "\f327"; +$fa-var-spinner: "\f110"; +$fa-var-spoon: "\f1b1"; +$fa-var-spotify: "\f1bc"; +$fa-var-square: "\f0c8"; +$fa-var-square-o: "\f096"; +$fa-var-ssb: "\f2ea"; +$fa-var-stack-exchange: "\f18d"; +$fa-var-stack-overflow: "\f16c"; +$fa-var-star: "\f005"; +$fa-var-star-half: "\f089"; +$fa-var-star-half-empty: "\f123"; +$fa-var-star-half-full: "\f123"; +$fa-var-star-half-o: "\f123"; +$fa-var-star-o: "\f006"; +$fa-var-steam: "\f1b6"; +$fa-var-steam-square: "\f1b7"; +$fa-var-step-backward: "\f048"; +$fa-var-step-forward: "\f051"; +$fa-var-stethoscope: "\f0f1"; +$fa-var-sticky-note: "\f249"; +$fa-var-sticky-note-o: "\f24a"; +$fa-var-stop: "\f04d"; +$fa-var-stop-circle: "\f28d"; +$fa-var-stop-circle-o: "\f28e"; +$fa-var-street-view: "\f21d"; +$fa-var-strikethrough: "\f0cc"; +$fa-var-stumbleupon: "\f1a4"; +$fa-var-stumbleupon-circle: "\f1a3"; +$fa-var-subscript: "\f12c"; +$fa-var-subway: "\f239"; +$fa-var-suitcase: "\f0f2"; +$fa-var-sun: "\f329"; +$fa-var-sun-o: "\f185"; +$fa-var-superpowers: "\f2dd"; +$fa-var-superscript: "\f12b"; +$fa-var-support: "\f1cd"; +$fa-var-sync: "\f021"; +$fa-var-syncthing: "\f311"; +$fa-var-table: "\f0ce"; +$fa-var-tablet: "\f10a"; +$fa-var-tachometer: "\f0e4"; +$fa-var-tag: "\f02b"; +$fa-var-tags: "\f02c"; +$fa-var-tasks: "\f0ae"; +$fa-var-taxi: "\f1ba"; +$fa-var-telegram: "\f2c6"; +$fa-var-television: "\f26c"; +$fa-var-tencent-weibo: "\f1d5"; +$fa-var-terminal: "\f120"; +$fa-var-text-height: "\f034"; +$fa-var-text-width: "\f035"; +$fa-var-th: "\f00a"; +$fa-var-th-large: "\f009"; +$fa-var-th-list: "\f00b"; +$fa-var-themeisle: "\f2b2"; +$fa-var-thermometer: "\f2c7"; +$fa-var-thermometer-0: "\f2cb"; +$fa-var-thermometer-1: "\f2ca"; +$fa-var-thermometer-2: "\f2c9"; +$fa-var-thermometer-3: "\f2c8"; +$fa-var-thermometer-4: "\f2c7"; +$fa-var-thermometer-empty: "\f2cb"; +$fa-var-thermometer-full: "\f2c7"; +$fa-var-thermometer-half: "\f2c9"; +$fa-var-thermometer-quarter: "\f2ca"; +$fa-var-thermometer-three-quarters: "\f2c8"; +$fa-var-thumb-tack: "\f08d"; +$fa-var-thumbs-down: "\f165"; +$fa-var-thumbs-o-down: "\f088"; +$fa-var-thumbs-o-up: "\f087"; +$fa-var-thumbs-up: "\f164"; +$fa-var-ticket: "\f145"; +$fa-var-times: "\f00d"; +$fa-var-times-circle: "\f057"; +$fa-var-times-circle-o: "\f05c"; +$fa-var-times-rectangle: "\f2d3"; +$fa-var-times-rectangle-o: "\f2d4"; +$fa-var-tint: "\f043"; +$fa-var-tipeee: "\f301"; +$fa-var-toggle-down: "\f150"; +$fa-var-toggle-left: "\f191"; +$fa-var-toggle-off: "\f204"; +$fa-var-toggle-on: "\f205"; +$fa-var-toggle-right: "\f152"; +$fa-var-toggle-up: "\f151"; +$fa-var-trademark: "\f25c"; +$fa-var-train: "\f238"; +$fa-var-transgender: "\f224"; +$fa-var-transgender-alt: "\f225"; +$fa-var-trash: "\f1f8"; +$fa-var-trash-o: "\f014"; +$fa-var-tree: "\f1bb"; +$fa-var-trello: "\f181"; +$fa-var-tripadvisor: "\f262"; +$fa-var-trophy: "\f091"; +$fa-var-truck: "\f0d1"; +$fa-var-try: "\f195"; +$fa-var-tty: "\f1e4"; +$fa-var-tumblr: "\f173"; +$fa-var-tumblr-square: "\f174"; +$fa-var-turkish-lira: "\f195"; +$fa-var-tv: "\f26c"; +$fa-var-twitch: "\f1e8"; +$fa-var-twitter: "\f099"; +$fa-var-twitter-square: "\f081"; +$fa-var-umbrella: "\f0e9"; +$fa-var-underline: "\f0cd"; +$fa-var-undo: "\f0e2"; +$fa-var-universal-access: "\f29a"; +$fa-var-university: "\f19c"; +$fa-var-unlink: "\f127"; +$fa-var-unlock: "\f09c"; +$fa-var-unlock-alt: "\f13e"; +$fa-var-unsorted: "\f0dc"; +$fa-var-unsplash: "\f325"; +$fa-var-upload: "\f093"; +$fa-var-usb: "\f287"; +$fa-var-usd: "\f155"; +$fa-var-user: "\f007"; +$fa-var-user-circle: "\f2bd"; +$fa-var-user-circle-o: "\f2be"; +$fa-var-user-md: "\f0f0"; +$fa-var-user-o: "\f2c0"; +$fa-var-user-plus: "\f234"; +$fa-var-user-secret: "\f21b"; +$fa-var-user-times: "\f235"; +$fa-var-users: "\f0c0"; +$fa-var-utensil-spoon: "\f1b1"; +$fa-var-utensils: "\f0f5"; +$fa-var-vcard: "\f2bb"; +$fa-var-vcard-o: "\f2bc"; +$fa-var-venus: "\f221"; +$fa-var-venus-double: "\f226"; +$fa-var-venus-mars: "\f228"; +$fa-var-viacoin: "\f237"; +$fa-var-viadeo: "\f2a9"; +$fa-var-viadeo-square: "\f2aa"; +$fa-var-video: "\f03d"; +$fa-var-video-camera: "\f03d"; +$fa-var-vimeo: "\f27d"; +$fa-var-vimeo-square: "\f194"; +$fa-var-vimeo-v: "\f27d"; +$fa-var-vine: "\f1ca"; +$fa-var-vk: "\f189"; +$fa-var-volume-control-phone: "\f2a0"; +$fa-var-volume-down: "\f027"; +$fa-var-volume-off: "\f026"; +$fa-var-volume-up: "\f028"; +$fa-var-warning: "\f071"; +$fa-var-wechat: "\f1d7"; +$fa-var-weibo: "\f18a"; +$fa-var-weixin: "\f1d7"; +$fa-var-whatsapp: "\f232"; +$fa-var-wheelchair: "\f193"; +$fa-var-wheelchair-alt: "\f29b"; +$fa-var-wifi: "\f1eb"; +$fa-var-wikidata: "\f31a"; +$fa-var-wikipedia-w: "\f266"; +$fa-var-window-close: "\f2d3"; +$fa-var-window-close-o: "\f2d4"; +$fa-var-window-maximize: "\f2d0"; +$fa-var-window-minimize: "\f2d1"; +$fa-var-window-restore: "\f2d2"; +$fa-var-windows: "\f17a"; +$fa-var-won: "\f159"; +$fa-var-wordpress: "\f19a"; +$fa-var-wpbeginner: "\f297"; +$fa-var-wpexplorer: "\f2de"; +$fa-var-wpforms: "\f298"; +$fa-var-wrench: "\f0ad"; +$fa-var-xing: "\f168"; +$fa-var-xing-square: "\f169"; +$fa-var-xmpp: "\f2f9"; +$fa-var-y-combinator: "\f23b"; +$fa-var-y-combinator-square: "\f1d4"; +$fa-var-yahoo: "\f19e"; +$fa-var-yc: "\f23b"; +$fa-var-yc-square: "\f1d4"; +$fa-var-yelp: "\f1e9"; +$fa-var-yen: "\f157"; +$fa-var-yoast: "\f2b1"; +$fa-var-youtube: "\f167"; +$fa-var-youtube-play: "\f16a"; +$fa-var-youtube-square: "\f166"; +$fa-var-zotero: "\f309"; + diff --git a/themes/lucky/sass/forkawesome/fork-awesome.scss b/themes/lucky/sass/forkawesome/fork-awesome.scss new file mode 100644 index 0000000..7128d6d --- /dev/null +++ b/themes/lucky/sass/forkawesome/fork-awesome.scss @@ -0,0 +1,28 @@ +/*! +Fork Awesome 1.1.7 +License - https://forkaweso.me/Fork-Awesome/license + +Copyright 2018 Dave Gandy & Fork Awesome + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + */ + + +@import "variables"; +@import "mixins"; +@import "functions"; +@import "path"; +@import "core"; +@import "larger"; +@import "fixed-width"; +@import "list"; +@import "bordered-pulled"; +@import "animated"; +@import "rotated-flipped"; +@import "stacked"; +@import "icons"; +@import "screen-reader"; diff --git a/themes/lucky/sass/icons.scss b/themes/lucky/sass/icons.scss new file mode 100644 index 0000000..73b30ac --- /dev/null +++ b/themes/lucky/sass/icons.scss @@ -0,0 +1,24 @@ +@import "forkawesome/variables"; +@import "forkawesome/path"; +@import "forkawesome/core"; +@import "forkawesome/larger"; +@import "forkawesome/stacked"; +@import "forkawesome/icons"; + +.social-stack { + @extend .#{$fa-css-prefix}; + @extend .#{$fa-css-prefix}-stack; + @extend .#{$fa-css-prefix}-lg; + margin-left: 5px; + margin-right: 5px; +} + +.social-icon { + @extend .#{$fa-css-prefix}-stack-1x; + @extend .#{$fa-css-prefix}-inverse; +}; + +.social-circle { + @extend .#{$fa-css-prefix}-circle; + @extend .#{$fa-css-prefix}-stack-2x; +}; diff --git a/themes/lucky/sass/main.scss b/themes/lucky/sass/main.scss new file mode 100644 index 0000000..5342ee4 --- /dev/null +++ b/themes/lucky/sass/main.scss @@ -0,0 +1,868 @@ +/* --- Imports --- */ +@import "_bulma/utilities/_all.sass"; +@import "_bulma/base/_all.sass"; +@import "_bulma/components/navbar.sass"; +@import "_bulma/components/pagination.sass"; +@import "_bulma/helpers/typography.sass"; +@import "_bulma/grid/columns.sass"; +@import "_bulma/layout/footer.sass"; + +@import "fonts.scss" +@import "icons.scss" +/* --- Variables --- */ +$bg: lch(100 0 0); +$bg-grey: lch(95 0 0); +$bg-light-trans: lch(100 0 0 / 0.8); +$bg-dark-trans: lch(10 0 0 / 0.6); +$bg-dark: lch(10 0 0); +$text-color: lch(20 0 0); +$light-text-color: lch(60 0 0); +$lighter-text-color: lch(90 0 0); +$link: lch(50 50 280); +$hover-color: lch(50 50 230); +$border-color: lch(90 0 0); + +$sans-font: 'FiraSans', BlinkMacSystemFont, -apple-system, 'Segoe UI', 'Roboto', 'Oxygen','Ubuntu','Cantarell','Droid Sans','Helvetica Neue','Helvetica','Arial', sans-serif; +$serif-font: 'CharisSILW', 'Roboto Slab', 'DejaVu Serif', 'Garamond', 'Georgia', 'Times New Roman', serif; +$mono-font: 'FiraCode', monospace; + +/* --- General --- */ + +body { + font-family: $serif-font; + font-size: 18px; + text-rendering: optimizeLegibility; + font-feature-settings: "kern" 1; + color: $text-color; + position: relative; + background: $bg; + margin: 0px; + display: flex; + flex-flow: column; + height: 100vh; +} + +.wrapper { + display: grid; + grid-template-columns: + 1fr + 10fr + min(80ch, calc(100% - 2vw)) + 10fr + 1fr; +} + +.wrapper > * { + grid-column: 3; +} + +.full-bleed { + width: 100%; + grid-column: 2 / -2; +} + +a { + color: $text-color; + font-weight: 800; +} + +p { + line-height: 1.5; + margin: 6px 0; +} + +p + p { + margin: 24px 0 6px 0; +} + +h1, +h2, +h3, +h4, +h5, +h6 { + font-family: $sans-font; + font-weight: 800; +} + +h1 { + @extend .is-size-2; +} + +h2 { + @extend .is-size-3; +} + +h3 { + @extend .is-size-4; +} + +a:hover, +a:focus { + color: $hover-color; +} + +/*blockquote {*/ + /*color: $text;*/ + /*font-style: italic;*/ +/*}*/ + +/*blockquote p:first-child {*/ + /*margin-top: 0;*/ +/*}*/ + +hr.small { + max-width: 100px; + margin: 15px auto; + border-width: 4px; + border-color: inherit; + border-radius: 3px; +} + +.main-content { + padding-top: 80px; +} + +@media only screen and (min-width: 768px) { + .main-content { + padding-top: 130px; + } +} + +div.panel-body a.list-group-item { + font-family: $sans-font; + font-weight: 800; + border-radius: 0; + border: none; +} + +div.panel-group .panel { + border-radius: 0; +} + +div.panel-group .panel + .panel { + margin-top: 0; +} + +div.panel-body a.list-group-item.view-all { + font-weight: 600; +} + +img { + display: block; + margin: auto; + max-width: 100%; +} + +::-moz-selection { + color: white; + text-shadow: none; + background: $hover-color; +} + +::selection { + color: white; + text-shadow: none; + background: $hover-color; +} + +img::selection { + color: white; + background: transparent; +} + +img::-moz-selection { + color: white; + background: transparent; +} + +ul, ol +{ + padding-left: 3em; +} + +ul { + list-style: disc; +} + +li.previous, li.next +{ + list-style: none; +} + +/* --- Footnotes --- */ +.footnote-definition p { + display: inline; +} + +/* --- Navbar --- */ + +.navigation { + @extend .navbar; + background: $bg-grey; + border-bottom: 1px solid $border-color; + font-family: $sans-font; +} + +.navbar-item { + text-transform: uppercase; + font-size: 12px; + letter-spacing: 1px; +} + +a.navbar-item:hover, +a.navbar-item:focus, +.navbar-dropdown a.navbar-item:focus, +.navbar-dropdown a.navbar-item:hover { + color: $hover-color; +} + +/* Multi-level navigation links */ +.has-dropdown .navbar-item::after { + content: " \25BC"; +} + +.navbar-dropdown .navbar-item::after { + content: ""; +} + +.navbar-dropdown, .navbar-menu { + background-color: $bg-grey; +} + +@media only screen and (max-width: 767px) { + .navigation .nav .navlinks-container.show-children { + background: $bg-grey; + } + + .navigation .nav .navlinks-container.show-children .navlinks-children { + display: block; + } + +} + +@media only screen and (min-width: 768px) { + .navbar-dropdown a:hover { + background: $bg-grey; + } +} + +/* --- Footer --- */ + +footer { + margin-top: 5vh; + padding: 10vh 0; + background: $bg-grey !important; + border-top: 1px solid $border-color; + font-size: 14px; + text-align: center; +} + +footer a { + color: $text-color; +} + +footer .list-inline { + margin: 0; + padding: 0; +} + +footer .copyright { + font-family: $sans-font; + margin-bottom: 0; +} + +@media only screen and (min-width: 768px) { + footer { + margin-top: 10vh; + padding: 15vh 0; + } + + footer .footer-links { + font-size: 18px; + } + + footer .copyright { + font-size: 16px; + } +} + +/* --- Post preview --- */ +.posts-list { + max-width: 750px; + margin-left: auto; + margin-right: auto; +} + +.post-preview { + padding: 15px 0; +} + +@media only screen and (min-width: 768px) { + .post-preview { + padding: 20px 0; + } +} + +.post-preview:last-child { + border-bottom: 0; +} + +.post-preview a { + text-decoration: none; + color: $text-color; +} + +.post-preview a:focus, +.post-preview a:hover { + text-decoration: none; + color: $hover-color; +} + +.post-preview .post-title { + font-size: 30px; + margin-top: 0; +} + +.post-preview .post-subtitle { + margin: 0; + font-weight: 300; + @extend .is-size-4; +} + +.post-preview .post-meta, +.heading .gallery-heading .post-meta { + color: $text-color; + font-size: 18px; + margin: 0 5px 10px; +} + +.post-preview .post-entry { + font-family: $sans-font; +} + +.post-entry-container { + display: inline-block; + width: 100%; +} + +.post-entry { + width: 100%; + margin-top: 10px; +} + +.post-image { + float: right; + height: 192px; + width: 192px; + margin-top: -35px; + filter: grayscale(90%); +} + +.post-image:hover { + filter: grayscale(0%); +} + +.post-image img { + border-radius: 100px; + height: 192px; + width: 192px; +} + +.post-preview .post-read-more { + font-weight: 800; + float: right; +} + +@media only screen and (min-width: 768px) { + .post-preview .post-title { + font-size: 36px; + } +} + +/*--- Pagination ---*/ +.pagination-previous:hover, .pagination-next:hover, .pagination-link:hover { + color: $hover-color; +} +/* -- Post -- */ + +.heading .gallery-heading { + max-width: 850px; + margin-left: auto; + margin-right: auto; +} + +/* .blog-post { */ +/* max-width: 850px; */ +/* margin-left: auto; */ +/* margin-right: auto; */ +/* } */ + +/* --- Tags --- */ + +.blog-tags { + font-family: $sans-font; + font-size: 15px; + margin-top: 1em; + margin-bottom: 2em; +} + +.blog-tags::before { + color: $light-text-color; + content: "Tags: "; +} + +.blog-tags a { + color: $link; + text-decoration: none; + padding: 0 5px; +} + +.blog-tags a::before { + content: "#"; +} + +.blog-tags a:hover { + border-radius: 2px; + color: $hover-color; +} + +.post-preview .blog-tags { + margin-top: 5px; + margin-bottom: 0; +} + +@media only screen and (min-width: 768px) { + .post-preview .blog-tags { + margin-top: 10px; + } +} + +@media only screen and (max-width: 500px) { + .post-image, + .post-image img { + height: 100px; + width: 100px; + } + + .post-image { + width: 100%; + text-align: center; + margin-top: 0; + float: left; + } +} + +.tags-list { + column-width: 10em; + list-style-type: none; +} + +/* --- Post and page headers --- */ + +header { + margin: 40px 0 20px; + position: relative; +} + +header .page-heading, +header .tags-heading { + text-align: center; +} + +header .page-heading h1, +header .tags-heading h1 { + @extend .is-size-1; + margin-top: 0; +} + +header .heading h1, +header .gallery-heading h1 { + @extend .is-size-1; + margin-top: 0; +} + +@media only screen and (min-width: 768px) { + header .gallery-heading{ + text-align: center; + } +} + +/* --- Figure --- */ +figure img { + display: block; + margin: auto; +} + +figure div picture img { + object-fit: contain; +} + +figcaption { + padding: 0 0.3rem; + text-align: center; +} + +figcaption h4 { + font-family: $serif-font; + font-size: 16px; +} + +.post-preview-header-container { + position: relative; + height: 100%; +} + +.post-preview-header { + background: $bg-grey; + padding-top: 15px; + padding-left: 10px; + padding-right: 10px; + padding-bottom: 5px; +} + +@media only screen and (min-width: 756px) { + .post-preview-header { + background: $bg-light-trans; + position: absolute; + bottom: 0; + width: 100%; + } +} + +.gallery { + --row-height: 23vh; + margin: -0.25rem; + display: flex; + flex-wrap: wrap; + overflow: hidden; + justify-content: center; + align-items: flex-end; +} + +@media only screen and (max-height: 1044px) { +.gallery { + --row-height: 290px; +} +} + +.gallery .box { + --ratio: calc(var(--w) / var(--h)); + flex-grow: calc(var(--ratio) * 100); + flex-shrink: calc(var(--ratio) * 100); + flex-basis: calc(var(--ratio) * var(--row-height)); + margin: 0.25rem; +} + +.container-gallery .gallery .box { + margin: 0.5rem; +} + +.gallery .box > figure { + display: block; + width: 100%; + height: auto; + min-width: 100%; + min-height: 100%; + object-fit: cover; +} + +.gallery + .box { + margin-top: calc(0.5rem); +} + +.gallery + .gallery { + margin-top: calc(0.25rem); +} + +.box + .gallery { + margin-top: calc(0.25rem - 10px); +} + +.box { + margin-left: auto; + margin-right: auto; + margin-top: 10px; + margin-bottom: 10px; +} + +.box figure { + position: relative; + overflow: hidden; +} + +.box figcaption { + position: absolute; + bottom: 0; + left: 0; + right: 0; + color: $lighter-text-color; + text-align: center; + font-size: 75%; + background: $bg-dark-trans; + opacity: 1; + cursor: pointer; +} + +.gallery figure { + left: 0; + right: 0; + top: 0; + bottom: 0; +} + +/* Post galleries */ +.blog-post .gallery +{ + /* max-width: calc(750px + 0.5rem); */ + /* margin-left: auto; */ + /* margin-right: auto; */ +} + +/* Portfolio Galleries*/ +.gallery-container { + margin-left: 20px; + margin-right: 20px; +} + +/* Video embed*/ +.embed { + margin-top: calc(0.5rem); + margin-bottom: calc(0.5rem); + position: relative; + width: 100%; + padding-top: 56.25%; +} + +.embed iframe { + width: 100%; + height: 100%; + bottom: 0px; + position: absolute; +} + +/* Keyboard */ +kbd { + font-family: $mono-font; + font-weight: 500; + padding: 2px 4px; + font-size: 90%; + color: $lighter-text-color; + background-color: $bg-dark; + border-radius: 3px; +} + +/* Code */ +code, .highlight { + font-family: $mono-font; +} + +/* PTCG */ +.ptcg-deck { + display: grid; + grid-template-columns: + min(30ch, 100%) + 1fr; + padding-bottom: 0.5em; + border-width: 1px; + border-color: $border-color; + border-style: solid; +} + +@media only screen and (max-width: 505px) { + .ptcg-deck { + grid-template-columns: 100%; + } +} + +.ptcg-deck > h1 { + padding: 0 1vw; + grid-column: 1 / -1; + background-color: $bg-grey; +} + +.ptcg-deck > h2 { + padding: 0 1vw; + grid-column: 1; +} + +.ptcg-deck .ptcg-label { + padding: 0 1.5vw; + grid-column: 1; + cursor: pointer; +} + +.ptcg-deck .ptcg-label.selected { + background-color: $bg-grey; + cursor: default; +} + +.ptcg-deck .ptcg-tab-content { + grid-column: 2; + grid-row: 2 / 40; + padding: 0 1.5vw; + display: none; +} + +@media only screen and (max-width: 505px) { + .ptcg-deck .ptcg-tab-content { + grid-column: 1; + grid-row: auto; + } +} + +.ptcg-deck .ptcg-tab-content.selected { + display: block; +} + +.ptcg-deck img { + margin-top: 0.2em; +} + +.ptcg-deck p + p { + margin-top: 0.5em; +} + +.ptcg-deck .type, +.ptcg-card .type { + font-weight: 600; + font-size: 0.9em; +} + +.ptcg-deck .name , +.ptcg-card .name { + font-weight: 600; + font-size: 1.5em; + display: flex; + justify-content: space-between; +} + +.ptcg-deck .ability-tag, +.ptcg-card .ability-tag { + font-weight: 600; + font-style: italic; + color: #bf1d18; +} + +.ptcg-deck .ability-name, +.ptcg-card .ability-name { + font-weight: 600; + color: #bf1d18; +} + +.ptcg-deck .attack > div:first-child, +.ptcg-card .attack > div:first-child { + display: flex; + justify-content: space-between; +} + +.ptcg-deck .attack-cost, +.ptcg-card .attack-cost { + font-weight: 600; +} + +.ptcg-deck .attack-name, +.ptcg-card .attack-name { + font-weight: 600; +} + +.ptcg-deck .attack-damage, +.ptcg-card .attack-damage { + font-weight: 800; +} + +.ptcg-deck .rule, +.ptcg-card .rule { + color: $light-text-color; + font-style: italic; + margin-left: 1.5em; + padding: 0.1em 0.6em; + text-align: right; + border-style: solid; + border-width: 1px; + border-color: $border-color; + border-radius: 6px; +} + +.ptcg-card { + display: grid; + grid-template-columns: + 2fr + 3fr; + padding-bottom: 0.5em; + border-width: 1px; + border-color: $border-color; + border-style: solid; +} + +.ptcg-card .card-info { + padding-left: 1em; + padding-right: 1em; +} + +.ptcg-energy-icon { + display: inline; + height: 1em; + margin: 0px !important; + vertical-align: middle; +} + +.ptcg-deck .rule > .rulebox-name, +.ptcg-card .rule > .rulebox-name { + color: $text-color; + font-weight: 600; +} + +.ptcg-deck .vstar, +.ptcg-card .vstar { + padding: 0.1em 0.6em; + border-style: solid; + border-width: 2px; + border-color: #313e6e; + border-radius: 6px; +} + +.ptcg-deck .vstar > .vstar-tag, +.ptcg-card .vstar > .vstar-tag { + color: #8f7a31; + display: block; + width:100%; + text-align: center; + font-weight: 600; +} + +.ptcg-deck .acespec, +.ptcg-card .acespec { + font-style: italic; + margin-left: 1.5em; + padding: 0.1em 0.6em; + text-align: right; + border-style: solid; + border-width: 1px; + border-color: #00aeef; + border-radius: 6px; +} + +.ptcg-deck .acespec > .acespec-tag , +.ptcg-card .acespec > .acespec-tag { + color: #ec008c; + font-weight: 600; +} + +.ptcg-deck .tera, +.ptcg-card .tera { + font-style: italic; + margin-left: 1.5em; + padding: 0.1em 0.6em; + text-align: right; + border-style: solid; + border-width: 1px; + border-color: #ec008c; + border-radius: 6px; +} + +.ptcg-deck .tera > .tera-tag , +.ptcg-card .tera > .tera-tag { + color: #00aeef; + font-weight: 600; +} diff --git a/themes/lucky/scripts/katexRender.ts b/themes/lucky/scripts/katexRender.ts new file mode 100644 index 0000000..08afea4 --- /dev/null +++ b/themes/lucky/scripts/katexRender.ts @@ -0,0 +1,139 @@ +import { + DOMParser, + Element, + NodeType, + Text, +} from "https://deno.land/x/deno_dom@v0.1.38/deno-dom-wasm.ts"; +import { assert } from "https://deno.land/std/testing/asserts.ts"; +import katex from "https://cdn.jsdelivr.net/npm/katex@0.16.8/dist/katex.mjs"; + +// this is similar to delimiter object in auto-render.js +interface IKaTeXAutoRenderSurround { + display: boolean; + test: RegExp; +} + +// options to be given to renderMathInElement +interface IKaTeXAutoRenderOption { + // delimiters + surronds: IKaTeXAutoRenderSurround[]; + + // tag names which are excluded + ignoreTags: string[]; +} + +// the default option is same with auto-render.js +const DefaultOptions: IKaTeXAutoRenderOption = { + surronds: [ + { test: /\$\$(.+?)\$\$/, display: true }, + { test: /\$(.+?)\$/, display: false }, + ], + ignoreTags: [ + "script", + "noscript", + "style", + "textarea", + "pre", + "code", + ], +}; + +function renderText( + element: Text, + options: IKaTeXAutoRenderOption, +): string | null { + let restText = element.textContent; + const partialResults = new Array(); + + let anyMatch = false; + + while (true) { + let match: RegExpExecArray | null = null; + let surround: IKaTeXAutoRenderSurround | null = null; + for (const sr of options.surronds) { + match = sr.test.exec(restText); + surround = sr; + if (match) break; + } + if (!match) { + break; + } else { + anyMatch = true; + } + + // Insert text before the match + partialResults.push(restText.substr(0, match.index)); + + // Renders and inserts the KaTeX text + assert(surround !== null); + const renderOption = Object.assign({}, options, { + displayMode: surround.display, + }); + partialResults.push( + katex.renderToString(match[1], renderOption), + ); + + restText = restText.substr(match.index + match[0].length); + } + + if (!anyMatch) { + return null; + } + + // Inserts the leftover text + partialResults.push(restText); + return partialResults.join(""); +} + +function renderElement( + element: Element, + options: IKaTeXAutoRenderOption, +): void { + for (const child of element.childNodes) { + switch (child.nodeType) { + case NodeType.ELEMENT_NODE: + { + if ( + !options.ignoreTags.includes( + child.nodeName.toLowerCase(), + ) + ) { + renderElement(child as Element, options); + } + break; + } + case NodeType.TEXT_NODE: + { + const newText = renderText(child as Text, options); + if (newText != null) { + const document = child.ownerDocument; + assert(document !== null); + const newChild = document.createElement(""); + newChild.innerHTML = newText; + child.replaceWith(...newChild.childNodes); + } + break; + } + default: + continue; + } + } +} + +async function renderMathInFile(filename: string): Promise { + const decoder = new TextDecoder(); + const document = new DOMParser().parseFromString( + decoder.decode(await Deno.readFile(filename)), + "text/html", + )!; + + renderElement(document.body, DefaultOptions); + + assert(document.documentElement !== null); + await Deno.writeTextFile(filename, '' + document.documentElement.outerHTML); +} + +const filenames = Deno.args; +for (const filename of filenames) { + await renderMathInFile(filename); +} diff --git a/themes/lucky/scripts/ptcgIcons.ts b/themes/lucky/scripts/ptcgIcons.ts new file mode 100644 index 0000000..5bc845f --- /dev/null +++ b/themes/lucky/scripts/ptcgIcons.ts @@ -0,0 +1,70 @@ +import { + DOMParser, + Document, +} from "https://deno.land/x/deno_dom@v0.1.38/deno-dom-wasm.ts"; +import { assert } from "https://deno.land/std/testing/asserts.ts"; + +function energy(_str: any, energyType: string, _offset: any, _s: any): string { + return `${energyType}` +} + +function ptcg_icons( + document: Document, +) { + const regex = /\[(C|D|F|G|L|M|N|P|R|W)\]/g; + const elements = Array(); + + const decks = document.querySelectorAll('.ptcg-deck'); + decks.forEach(deck => { + const titles = deck.querySelectorAll('.ptcg-label'); + elements.push(...titles); + + const names = deck.querySelectorAll('.name'); + elements.push(...names); + + const abilityEffects = deck.querySelectorAll('.ability-effect') + elements.push(...abilityEffects); + + const attackCosts = deck.querySelectorAll('.attack-cost') + elements.push(...attackCosts); + + const effects = deck.querySelectorAll('.effect') + elements.push(...effects); + }); + + const cards = document.querySelectorAll('.ptcg-card'); + cards.forEach(card => { + const names = card.querySelectorAll('.name'); + elements.push(...names); + + const abilityEffects = card.querySelectorAll('.ability-effect') + elements.push(...abilityEffects); + + const attackCosts = card.querySelectorAll('.attack-cost') + elements.push(...attackCosts); + + const effects = card.querySelectorAll('.effect') + elements.push(...effects); + }); + elements.forEach(element => { + element.innerHTML = element.innerHTML.replace(regex, energy); + }); +} + +async function process_file(filename: string): Promise { + const decoder = new TextDecoder(); + const document = new DOMParser().parseFromString( + decoder.decode(await Deno.readFile(filename)), + "text/html", + )!; + + ptcg_icons(document); + + assert(document.documentElement !== null); + await Deno.writeTextFile(filename, '' + document.documentElement.outerHTML); +} + +const filenames = Deno.args; +for (const filename of filenames) { + await process_file(filename); +} diff --git a/themes/lucky/static/font/CharisSIL-B.woff2 b/themes/lucky/static/font/CharisSIL-B.woff2 new file mode 100644 index 0000000..7ac1bc9 Binary files /dev/null and b/themes/lucky/static/font/CharisSIL-B.woff2 differ diff --git a/themes/lucky/static/font/CharisSIL-BI.woff2 b/themes/lucky/static/font/CharisSIL-BI.woff2 new file mode 100644 index 0000000..243a437 Binary files /dev/null and b/themes/lucky/static/font/CharisSIL-BI.woff2 differ diff --git a/themes/lucky/static/font/CharisSIL-I.woff2 b/themes/lucky/static/font/CharisSIL-I.woff2 new file mode 100644 index 0000000..d617cfa Binary files /dev/null and b/themes/lucky/static/font/CharisSIL-I.woff2 differ diff --git a/themes/lucky/static/font/CharisSIL-R.woff2 b/themes/lucky/static/font/CharisSIL-R.woff2 new file mode 100644 index 0000000..38a1527 Binary files /dev/null and b/themes/lucky/static/font/CharisSIL-R.woff2 differ diff --git a/themes/lucky/static/font/FiraCode-VF.woff2 b/themes/lucky/static/font/FiraCode-VF.woff2 new file mode 100644 index 0000000..64ffe43 Binary files /dev/null and b/themes/lucky/static/font/FiraCode-VF.woff2 differ diff --git a/themes/lucky/static/font/FiraSans-Bold.woff2 b/themes/lucky/static/font/FiraSans-Bold.woff2 new file mode 100644 index 0000000..58dc604 Binary files /dev/null and b/themes/lucky/static/font/FiraSans-Bold.woff2 differ diff --git a/themes/lucky/static/font/FiraSans-BoldItalic.woff2 b/themes/lucky/static/font/FiraSans-BoldItalic.woff2 new file mode 100644 index 0000000..603417b Binary files /dev/null and b/themes/lucky/static/font/FiraSans-BoldItalic.woff2 differ diff --git a/themes/lucky/static/font/FiraSans-Italic.woff2 b/themes/lucky/static/font/FiraSans-Italic.woff2 new file mode 100644 index 0000000..49d2577 Binary files /dev/null and b/themes/lucky/static/font/FiraSans-Italic.woff2 differ diff --git a/themes/lucky/static/font/FiraSans-Regular.woff2 b/themes/lucky/static/font/FiraSans-Regular.woff2 new file mode 100644 index 0000000..a9f7612 Binary files /dev/null and b/themes/lucky/static/font/FiraSans-Regular.woff2 differ diff --git a/themes/lucky/static/font/forkawesome-webfont.woff2 b/themes/lucky/static/font/forkawesome-webfont.woff2 new file mode 100644 index 0000000..f3520b5 Binary files /dev/null and b/themes/lucky/static/font/forkawesome-webfont.woff2 differ diff --git a/themes/lucky/static/img/avatar-favicon.png b/themes/lucky/static/img/avatar-favicon.png new file mode 100644 index 0000000..e567046 Binary files /dev/null and b/themes/lucky/static/img/avatar-favicon.png differ diff --git a/themes/lucky/static/img/avatar-icon.png b/themes/lucky/static/img/avatar-icon.png new file mode 100644 index 0000000..a150efb Binary files /dev/null and b/themes/lucky/static/img/avatar-icon.png differ diff --git a/themes/lucky/static/img/favicon.ico b/themes/lucky/static/img/favicon.ico new file mode 100644 index 0000000..523bc99 Binary files /dev/null and b/themes/lucky/static/img/favicon.ico differ diff --git a/themes/lucky/static/img/hexagon-thumb.jpg b/themes/lucky/static/img/hexagon-thumb.jpg new file mode 100644 index 0000000..2572be9 Binary files /dev/null and b/themes/lucky/static/img/hexagon-thumb.jpg differ diff --git a/themes/lucky/static/img/hexagon.jpg b/themes/lucky/static/img/hexagon.jpg new file mode 100644 index 0000000..cf244bb Binary files /dev/null and b/themes/lucky/static/img/hexagon.jpg differ diff --git a/themes/lucky/static/img/path.jpg b/themes/lucky/static/img/path.jpg new file mode 100644 index 0000000..5855c09 Binary files /dev/null and b/themes/lucky/static/img/path.jpg differ diff --git a/themes/lucky/static/img/sphere-thumb.jpg b/themes/lucky/static/img/sphere-thumb.jpg new file mode 100644 index 0000000..fa5e2ee Binary files /dev/null and b/themes/lucky/static/img/sphere-thumb.jpg differ diff --git a/themes/lucky/static/img/sphere.jpg b/themes/lucky/static/img/sphere.jpg new file mode 100644 index 0000000..820cf7e Binary files /dev/null and b/themes/lucky/static/img/sphere.jpg differ diff --git a/themes/lucky/static/img/triangle-thumb.jpg b/themes/lucky/static/img/triangle-thumb.jpg new file mode 100644 index 0000000..8eb0761 Binary files /dev/null and b/themes/lucky/static/img/triangle-thumb.jpg differ diff --git a/themes/lucky/static/img/triangle.jpg b/themes/lucky/static/img/triangle.jpg new file mode 100644 index 0000000..2dfbcec Binary files /dev/null and b/themes/lucky/static/img/triangle.jpg differ diff --git a/themes/lucky/static/main.js b/themes/lucky/static/main.js new file mode 100644 index 0000000..c8ec430 --- /dev/null +++ b/themes/lucky/static/main.js @@ -0,0 +1,22 @@ +function init() { + + // Get all "navbar-burger" elements + const navbarBurgers = Array.prototype.slice.call(document.querySelectorAll('.navbar-burger'), 0); + + // Add a click event on each of them + navbarBurgers.forEach(el => { + el.addEventListener('click', () => { + + // Get the target from the "data-target" attribute + const target = el.dataset.target; + const targeted = document.getElementById(target); + + // Toggle the "is-active" class on both the "navbar-burger" and the "navbar-menu" + el.classList.toggle('is-active'); + targeted.classList.toggle('is-active'); + + }); + }); +}; + +document.addEventListener("DOMContentLoaded", init); diff --git a/themes/lucky/static/ptcg-icons.js b/themes/lucky/static/ptcg-icons.js new file mode 100644 index 0000000..714f6f1 --- /dev/null +++ b/themes/lucky/static/ptcg-icons.js @@ -0,0 +1,47 @@ +function energy(_str, energyType, _offset, _s) { + return `${energyType}` +} + +function init() { + const regex = /\[(C|D|F|G|L|M|N|P|R|W)\]/g; + const elements = Array(); + + const decks = document.querySelectorAll('.ptcg-deck'); + decks.forEach(deck => { + const titles = deck.querySelectorAll('.ptcg-label'); + elements.push(...titles); + + const names = deck.querySelectorAll('.name'); + elements.push(...names); + + const abilityEffects = deck.querySelectorAll('.ability-effect') + elements.push(...abilityEffects); + + const attackCosts = deck.querySelectorAll('.attack-cost') + elements.push(...attackCosts); + + const effects = deck.querySelectorAll('.effect') + elements.push(...effects); + }); + + const cards = document.querySelectorAll('.ptcg-card'); + cards.forEach(card => { + const names = card.querySelectorAll('.name'); + elements.push(...names); + + const abilityEffects = card.querySelectorAll('.ability-effect') + elements.push(...abilityEffects); + + const attackCosts = card.querySelectorAll('.attack-cost') + elements.push(...attackCosts); + + const effects = card.querySelectorAll('.effect') + elements.push(...effects); + }); + elements.forEach(element => { + element.innerHTML = element.innerHTML.replace(regex, energy); + }); +} + +init(); + diff --git a/themes/lucky/static/ptcg.js b/themes/lucky/static/ptcg.js new file mode 100644 index 0000000..fe2f23b --- /dev/null +++ b/themes/lucky/static/ptcg.js @@ -0,0 +1,30 @@ +function init() { + // Get all decks + const decks = document.querySelectorAll('.ptcg-deck'); + decks.forEach(deck => { + // Get all the card labels in the deck + cards = deck.querySelectorAll('.ptcg-label'); + cards.forEach(cardLabel => { + cardLabel.addEventListener('click', () => { + if (cardLabel.classList.contains('selected')) { + return; + } + + const cardId = cardLabel.id; + const prevCardLabel = deck.querySelector('.ptcg-label.selected'); + const prevCardData = deck.querySelector('.ptcg-tab-content.selected'); + const cardData = deck.querySelector(`#tab-${cardId}`); + + prevCardLabel.classList.remove('selected'); + prevCardData.classList.remove('selected'); + prevCardData.ariaHidden = true; + + cardLabel.classList.add('selected'); + cardData.classList.add('selected'); + cardData.ariaHidden = false; + }); + }); + }); +} + +init(); diff --git a/themes/lucky/templates/base.html b/themes/lucky/templates/base.html new file mode 100644 index 0000000..fabb1de --- /dev/null +++ b/themes/lucky/templates/base.html @@ -0,0 +1,244 @@ + + + + + + + + + + + + + + + + + {% block title %}{% endblock %} + {% if config.extra.author %} + + {% endif %} + + + {% block seo %}{% endblock %} + + + + + + + + + + + {% if config.mode == "serve" %} + + + + + + {% endif %} + + + + + + +
+ {% block header %}{% endblock %} +
+ + +{% block main %}{% endblock %} + + + + + diff --git a/themes/lucky/templates/gallery.html b/themes/lucky/templates/gallery.html new file mode 100644 index 0000000..c3c3be6 --- /dev/null +++ b/themes/lucky/templates/gallery.html @@ -0,0 +1,73 @@ +{% extends "base.html" %} + +{%block title %} +{{ page.title }} - {{ config.title }} +{% endblock title %} + +{%block seo %} + + +{% endblock seo%} + +{%block header %} + +{% endblock header%} + +{% block main %} + +{% endblock main %} diff --git a/themes/lucky/templates/index.html b/themes/lucky/templates/index.html new file mode 100644 index 0000000..dacca9d --- /dev/null +++ b/themes/lucky/templates/index.html @@ -0,0 +1,82 @@ +{% extends "base.html" %} + +{%block title %} +{{ config.title }} +{% endblock title %} + +{%block seo %} +{% endblock seo%} + +{%block header %} +
+

{{ config.title }}

+
+{% endblock header%} + +{% block main %} +
+ {% if paginator %} + {% for page in paginator.pages %} +
+
+ + {% if page.extra.image_avif %} + + {% endif %} + {% if page.extra.image_webp %} + + {% endif %} + + {{ page.extra.alt }} + +
+
+
+ +

+ {% if page.taxonomies.t %} +
+ {{ page.taxonomies.t[0] }} +
+ {% endif %} + {{ page.title }} +

+
+ +
+
+
+ {% endfor %} + {% endif %} +
+ +{% if paginator.previous or paginator.next %} +
+ +
+{% endif %} +{% endblock main %} diff --git a/themes/lucky/templates/page.html b/themes/lucky/templates/page.html new file mode 100644 index 0000000..582dd0e --- /dev/null +++ b/themes/lucky/templates/page.html @@ -0,0 +1,135 @@ +{% extends "base.html" %} + +{%block title %} +{{ page.title }} - {{ config.title }} +{% endblock title %} + +{%block seo %} + + + + + + + + + + + + + + + + + + +{% endblock seo%} + +{%block header %} +
+

{{ page.title }}

+ +
+{% endblock header%} + +{% block main %} +
+ {{ page.content | safe }} + + {% if page.taxonomies.t %} +
+ {% for tag in page.taxonomies.t | sort %} + {% set tag_slug = tag | slugify %} + {{ tag }}  + {% endfor %} +
+ {% endif %} +
+ + +{% endblock main %} diff --git a/themes/lucky/templates/section.html b/themes/lucky/templates/section.html new file mode 100644 index 0000000..86295bb --- /dev/null +++ b/themes/lucky/templates/section.html @@ -0,0 +1,41 @@ +{% extends "base.html" %} + +{%block title %} +{{ section.title }} - {{ config.title }} +{% endblock title %} + +{%block seo %} + +{% endblock seo%} + +{%block header %} +
+

{{ section.title }}

+
+{% endblock header%} + +{% block main %} +
+ {{ section.content | safe }} +
+{% endblock main %} diff --git a/themes/lucky/templates/shortcodes/abs_url.html b/themes/lucky/templates/shortcodes/abs_url.html new file mode 100644 index 0000000..3c789e8 --- /dev/null +++ b/themes/lucky/templates/shortcodes/abs_url.html @@ -0,0 +1 @@ +{{ get_url(path=path) }} diff --git a/themes/lucky/templates/shortcodes/end.html b/themes/lucky/templates/shortcodes/end.html new file mode 100644 index 0000000..04f5b84 --- /dev/null +++ b/themes/lucky/templates/shortcodes/end.html @@ -0,0 +1 @@ + diff --git a/themes/lucky/templates/shortcodes/figure.html b/themes/lucky/templates/shortcodes/figure.html new file mode 100644 index 0000000..665c135 --- /dev/null +++ b/themes/lucky/templates/shortcodes/figure.html @@ -0,0 +1,64 @@ +{% set avif_src = src | +replace(from=".jpg",to=".avif") | +replace(from=".png",to=".avif") %} +{% set webp_src = src | +replace(from="avif",to=".webp") %} + +{% set orig_thumb = src %} +{% if thumb %} + {% set orig_thumb = src | + replace(from=".jpg",to=thumb~".jpg") | + replace(from=".png",to=thumb~".png") %} +{% endif %} +{% set avif_thumb = orig_thumb | +replace(from=".jpg",to=".avif") | +replace(from=".png",to=".avif") %} +{% set webp_thumb = avif_thumb | +replace(from=".avif",to=".webp") %} + +{% set src_url = get_url(path=src) %} +{% set avif_url = get_url(path=avif_src) %} +{% set webp_url = get_url(path=webp_src) %} + +{% set thumb_url = get_url(path=orig_thumb) %} +{% set avif_thumb_url = get_url(path=avif_thumb) %} +{% set webp_thumb_url = get_url(path=webp_thumb) %} + +{% set img_data = get_image_metadata(path=src) %} +{% set avif = true %} +{% if webp %} + {% set avif = false %} +{% endif %} + +{% set thumb_data = get_image_metadata(path=orig_thumb) %} +
+
+ + + {% if avif %} + + {% endif %} + {% if webp %} + + {% endif %} + + + + + {% if caption %} +
+ {{ caption | markdown | safe }} +
+ {% endif %} +
+
diff --git a/themes/lucky/templates/shortcodes/gallery.html b/themes/lucky/templates/shortcodes/gallery.html new file mode 100644 index 0000000..941813e --- /dev/null +++ b/themes/lucky/templates/shortcodes/gallery.html @@ -0,0 +1 @@ +