julien-c HF Staff commited on
Commit
b85f52b
·
verified ·
1 Parent(s): 1738c9d

make text green

Browse files
Files changed (4) hide show
  1. README.md +8 -5
  2. index.html +32 -19
  3. script.js +1 -0
  4. style.css +1 -28
README.md CHANGED
@@ -1,10 +1,13 @@
1
  ---
2
- title: Verdant Vibes
3
- emoji: 📚
4
- colorFrom: pink
5
- colorTo: purple
6
  sdk: static
7
  pinned: false
 
 
8
  ---
9
 
10
- Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
 
 
1
  ---
2
+ title: Verdant Vibes 🌿
3
+ colorFrom: red
4
+ colorTo: gray
5
+ emoji: 🐳
6
  sdk: static
7
  pinned: false
8
+ tags:
9
+ - deepsite-v3
10
  ---
11
 
12
+ # Welcome to your new DeepSite project!
13
+ This project was created with [DeepSite](https://huggingface.co/deepsite).
index.html CHANGED
@@ -1,19 +1,32 @@
1
- <!doctype html>
2
- <html>
3
- <head>
4
- <meta charset="utf-8" />
5
- <meta name="viewport" content="width=device-width" />
6
- <title>My static Space</title>
7
- <link rel="stylesheet" href="style.css" />
8
- </head>
9
- <body>
10
- <div class="card">
11
- <h1>Welcome to your static Space!</h1>
12
- <p>You can modify this app directly by editing <i>index.html</i> in the Files and versions tab.</p>
13
- <p>
14
- Also don't forget to check the
15
- <a href="https://huggingface.co/docs/hub/spaces" target="_blank">Spaces documentation</a>.
16
- </p>
17
- </div>
18
- </body>
19
- </html>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>Hello Minimal</title>
7
+ <script src="https://cdn.tailwindcss.com"></script>
8
+ <script>
9
+ tailwind.config = {
10
+ theme: {
11
+ extend: {
12
+ colors: {
13
+ primary: '#000000',
14
+ secondary: '#ffffff'
15
+ }
16
+ }
17
+ }
18
+ }
19
+ </script>
20
+ <style>
21
+ @import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');
22
+ body {
23
+ font-family: 'Inter', sans-serif;
24
+ }
25
+ </style>
26
+ </head>
27
+ <body class="w-full h-screen flex items-center justify-center bg-secondary">
28
+ <div class="text-9xl font-black tracking-tighter text-green-600 animate-pulse">hello</div>
29
+ <script src="https://huggingface.co/deepsite/deepsite-badge.js"></script>
30
+ <script src="https://huggingface.co/deepsite/deepsite-badge.js"></script>
31
+ </body>
32
+ </html>
script.js ADDED
@@ -0,0 +1 @@
 
 
1
+ // No JavaScript needed for this implementation
style.css CHANGED
@@ -1,28 +1 @@
1
- body {
2
- padding: 2rem;
3
- font-family: -apple-system, BlinkMacSystemFont, "Arial", sans-serif;
4
- }
5
-
6
- h1 {
7
- font-size: 16px;
8
- margin-top: 0;
9
- }
10
-
11
- p {
12
- color: rgb(107, 114, 128);
13
- font-size: 15px;
14
- margin-bottom: 10px;
15
- margin-top: 5px;
16
- }
17
-
18
- .card {
19
- max-width: 620px;
20
- margin: 0 auto;
21
- padding: 16px;
22
- border: 1px solid lightgray;
23
- border-radius: 16px;
24
- }
25
-
26
- .card p:last-child {
27
- margin-bottom: 0;
28
- }
 
1
+ /* No shared styles needed for this minimal implementation */