Skip to content

Instantly share code, notes, and snippets.

@neisdev
neisdev / index.html
Created February 26, 2024 00:33
Kanban Board with TailwindCSS and AlpineJS
<body class="antialiased sans-serif bg-gray-300">
<!-- Alert Box -->
<div class="fixed w-full z-50 flex inset-0 items-start justify-center pointer-events-none md:mt-5" x-data="{
message: '',
showFlashMessage(event) {
this.message = event.detail.message;
setTimeout(() => this.message = '', 3000)
}
}">
<template x-on:flash.window="showFlashMessage(event)"></template>
@neisdev
neisdev / hive-menu.markdown
Created December 21, 2023 07:42
Hive Menu
@neisdev
neisdev / index.html
Created November 11, 2023 01:29
TailwindUI + Alpine
<!-- This example requires Tailwind CSS v2.0+ -->
<div class="min-h-screen bg-white">
<nav class="bg-white border-b border-gray-200">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="flex justify-between h-16">
<div class="flex">
<div class="flex-shrink-0 flex items-center">
<img class="block lg:hidden h-8 w-auto" src="https://tailwindui.com/img/logos/workflow-mark-indigo-600.svg" alt="Workflow">
<img class="hidden lg:block h-8 w-auto" src="https://tailwindui.com/img/logos/workflow-logo-indigo-600-mark-gray-800-text.svg" alt="Workflow">
</div>
@neisdev
neisdev / editor-illustration.markdown
Created November 7, 2023 00:05
Editor Illustration
@neisdev
neisdev / index.html
Created August 2, 2023 12:49
Responsive Grid with Flexbox
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Flexbox responsive grid</title>
</head>
<body>
<div class="wrapper">
<p>Responsive grid with Flexbox</p>
<h1>Basic Grid</h1>
<p></p>
@neisdev
neisdev / asana-style-loader.markdown
Created August 2, 2023 11:22
Asana Style Loader

Drupal Recipe

This is a recipe for a fast Drupal installation. Customization level: Custom Site name, custom site password, custom database password, configured drush alias

A Pen by Franco Cedillo on CodePen.

License.