Image 1
27 |├── client ├── .npmrc ├── src │ ├── routes │ │ ├── contribute │ │ │ ├── +page.svelte │ │ │ └── +page.js │ │ ├── +page.js │ │ ├── +layout.svelte │ │ ├── about │ │ │ ├── +page.js │ │ │ └── +page.svelte │ │ ├── Header.svelte │ │ ├── +page.svelte │ │ └── styles.css │ ├── lib │ │ ├── images │ │ │ ├── svelte-welcome.png │ │ │ ├── svelte-welcome.webp │ │ │ ├── github.svg │ │ │ └── svelte-logo.svg │ │ └── snippets.json │ ├── app.d.ts │ └── app.html ├── static │ ├── robots.txt │ └── favicon.png ├── postcss.config.js ├── vite.config.js ├── tailwind.config.js ├── .gitignore ├── .eslintignore ├── .prettierignore ├── .prettierrc ├── svelte.config.js ├── .eslintrc.cjs ├── jsconfig.json ├── README.md └── package.json ├── .gitignore ├── UI Snippets ├── Cart Item │ ├── Headset.png │ └── index.html ├── Digital Clock │ ├── digital-clock.png │ ├── pexels-gradienta-7130469.jpg │ ├── index.html │ ├── script.js │ └── style.css ├── Login UI │ ├── images │ │ ├── 70. Honeydew.jpg │ │ ├── 64. Magic Mint.jpg │ │ └── icons8-github.svg │ ├── index.html │ └── styles.css ├── Chart │ └── BarChart │ │ ├── style.css │ │ ├── index.html │ │ └── script.js ├── Bouncing ball │ ├── index.html │ └── style.css ├── Mouse Chaser │ ├── styles.css │ ├── index.html │ └── script.js ├── Helpline │ ├── style.css │ └── index.html ├── Color Wheel │ ├── index.html │ └── style.css ├── Loading Page │ ├── index.html │ └── style.css ├── Video Player │ ├── script.js │ ├── index.html │ └── style.css ├── Magic card │ ├── index.html │ └── style.css ├── Text-effect-runner │ ├── script.js │ ├── index.html │ └── style.css ├── Carousel II │ ├── index.html │ ├── style.css │ └── script.js ├── Counter │ ├── script.js │ ├── index.html │ └── style.css ├── Accordion │ ├── script.js │ ├── style.css │ └── index.html ├── FlipCard │ ├── main.html │ └── styles.css ├── 3D Cube │ ├── index.html │ └── style.css ├── Random Password Genrator │ ├── index.html │ ├── index.js │ └── style.css ├── Skeleton UI │ ├── index.html │ └── styles.css ├── Game interface │ ├── index.html │ └── style.css ├── Carousel I │ ├── script.js │ ├── index.html │ └── style.css ├── Indian Flag │ ├── index.html │ └── style.css ├── Session Graph │ ├── index.html │ └── style.css ├── Festival Lighting │ ├── index.html │ └── style.css ├── transportation booking │ └── index.html ├── Social Login │ └── index.html └── profile_card │ └── index.html ├── .github ├── ISSUE_TEMPLATE │ ├── other-issue.md │ ├── new-ui-snippet.md │ ├── feature_request.md │ └── bug_report.md └── PULL_REQUEST_TEMPLATE │ ├── other_change.md │ ├── bug_fix.md │ ├── new_feature.md │ └── new_ui_snippet.md ├── LICENSE ├── CONTRIBUTING.md ├── CODE_OF_CONDUCT.md └── README.md /client/.npmrc: -------------------------------------------------------------------------------- 1 | engine-strict=true 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | .env 3 | .env.example 4 | -------------------------------------------------------------------------------- /client/src/routes/contribute/+page.svelte: -------------------------------------------------------------------------------- 1 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/.github/PULL_REQUEST_TEMPLATE/other_change.md:
--------------------------------------------------------------------------------
1 | **Describe the change**
2 | A clear and concise description of the change you are proposing.
3 |
4 | **Reason for the change**
5 | Explain why this change is necessary or beneficial.
6 |
7 | **Testing the change**
8 | Provide steps to test the change and ensure it works as expected.
9 |
10 | **Additional context**
11 | Add any other context or information about the change here.
12 |
--------------------------------------------------------------------------------
/UI Snippets/Color Wheel/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 | Catch me if you can
12 |Front Side
14 |Back Side
17 |11 | This is a SvelteKit app. You can make your own by typing the 12 | following into your command line and following the prompts: 13 |
14 | 15 |npm create svelte@latest16 | 17 |
18 | The page you're looking at is purely static HTML, with no client-side interactivity needed. 19 | Because of that, we don't need to load any JavaScript. Try viewing the page's source, or opening 20 | the devtools network panel and reloading. 21 |
22 |Name: John Doe
15 |Level: 5
16 |Score: 1000
17 |49.4%
25 |31.6%
29 |19%
32 |Counter
20 |0
22 | 30 |OR , Use your Email
22 | 23 |By clicking on Login, you agree to our Terms and conditions.
30 |Image 1
27 |Image 2
33 |Image 3
39 |45:25:12
37 |Who is this?
24 | 25 |27 | I am Deveesh Shetty. I work with React and NextJS. Connect with me 28 | on 29 | 30 | . 32 |
33 |What is this?
37 | 38 |40 | This is an accordion which I made for fun using HTML, CSS, and 41 | JavaScript. How is it? 42 |
43 |Why is this?
47 | 48 |50 | Well, Why is this even a question! 51 |
52 |
20 | 26 | Free Shipping 27 |
28 |1 599,-
799,-
35 |37 | The offer is valid upto April 3 or as long as stock lasts! 38 |
39 | 44 |🟢 50+ pcs. in stock
45 |24 | Log in to your account and connect with your teammates! 25 |
26 | 27 |
| [Code - Loading Page](https://github.com/Deveesh-Shetty/CSS-Is-Fun/tree/master/UI%20Snippets/Loading%20Page) |
68 | | Session Graph | [Go Live](https://codepen.io/ahmedelmsery/pen/qBQdZeJ) |
| [Code - Helpline](https://github.com/Deveesh-Shetty/CSS-Is-Fun/tree/master/UI%20Snippets/Helpline) |
72 | | Digital Clock | [Go Live](https://codepen.io/rohancs127/pen/dywgQey) |
| [Code - Digital Clock](https://github.com/Deveesh-Shetty/CSS-Is-Fun/tree/master/UI%20Snippets/Digital%20Clock) |
73 | | profile card | [Go Live](https://codepen.io/Raksha09/pen/ZEVVzwB) |