3 Commits
Author SHA1 Message Date
pvincent 9b2d5397e9 tagged as 0.0.2 2022-10-04 21:20:53 +04:00
pvincent 8d688e4587 alpinejs ready 2022-10-04 21:20:39 +04:00
pvincent 2bbfe32c6d live server ok 2022-10-03 23:17:57 +04:00
6 changed files with 1337 additions and 1336 deletions
+1 -1
View File
@@ -1 +1 @@
0.0.5 0.0.2
+4 -2
View File
@@ -1,10 +1,12 @@
Web Development example 1.0 Web Development example 01
=========================== ==========================
* [x] Tailwind * [x] Tailwind
* [x] Font Awesome
* [x] Alpine JS * [x] Alpine JS
* [x] transition * [x] transition
install install
------- -------
+1323 -1327
View File
File diff suppressed because it is too large Load Diff
+1 -1
View File
@@ -1 +1 @@
{"devDependencies": {"tailwindcss": "^3.1.8"}, "name": "webdev", "version": "0.0.5", "license": "AGPL-3.0-or-later"} {"devDependencies": {"tailwindcss": "^3.1.8"}, version: 0.0.2}
+8 -5
View File
@@ -3,7 +3,11 @@
<head> <head>
<meta charset="UTF-8" /> <meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>webdev-minimal</title>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.2.0/css/all.min.css"
/>
<script <script
defer defer
@@ -25,10 +29,9 @@
<link href="main.css" rel="stylesheet" /> <link href="main.css" rel="stylesheet" />
</head> </head>
<body <body class="bg-gray-200 dark:black m-10" x-data="{}">
class="animate-[pulse_1s_ease-out] bg-gray-200 dark:black m-10"
x-data="{}"
>
<h1 class="text-4xl font-bold">Hello Créalise</h1> <h1 class="text-4xl font-bold">Hello Créalise</h1>
<h2 class="text-3xl text-crealise">Tailwind ready</h2>
<h3 class="text-xl text-blue-700" x-text="'AlpineJs'+' '+'ready'"></h3>
</body> </body>
</html> </html>
View File