├── .github
├── ISSUE_TEMPLATE
│ ├── bug_report.md
│ ├── feature_request.md
│ ├── new-ui-snippet.md
│ └── other-issue.md
└── PULL_REQUEST_TEMPLATE
│ ├── bug_fix.md
│ ├── new_feature.md
│ ├── new_ui_snippet.md
│ └── other_change.md
├── .gitignore
├── CODE_OF_CONDUCT.md
├── CONTRIBUTING.md
├── LICENSE
├── README.md
├── UI Snippets
├── 3D Cube
│ ├── index.html
│ └── style.css
├── Accordion
│ ├── index.html
│ ├── script.js
│ └── style.css
├── Bouncing ball
│ ├── index.html
│ └── style.css
├── Carousel I
│ ├── index.html
│ ├── script.js
│ └── style.css
├── Carousel II
│ ├── index.html
│ ├── script.js
│ └── style.css
├── Cart Item
│ ├── Headset.png
│ └── index.html
├── Chart
│ └── BarChart
│ │ ├── index.html
│ │ ├── script.js
│ │ └── style.css
├── Color Wheel
│ ├── index.html
│ └── style.css
├── Counter
│ ├── index.html
│ ├── script.js
│ └── style.css
├── Digital Clock
│ ├── digital-clock.png
│ ├── index.html
│ ├── pexels-gradienta-7130469.jpg
│ ├── script.js
│ └── style.css
├── Festival Lighting
│ ├── index.html
│ └── style.css
├── FlipCard
│ ├── main.html
│ └── styles.css
├── Game interface
│ ├── index.html
│ └── style.css
├── Helpline
│ ├── index.html
│ └── style.css
├── Indian Flag
│ ├── index.html
│ └── style.css
├── Loading Page
│ ├── index.html
│ └── style.css
├── Login UI
│ ├── images
│ │ ├── 64. Magic Mint.jpg
│ │ ├── 70. Honeydew.jpg
│ │ └── icons8-github.svg
│ ├── index.html
│ └── styles.css
├── Magic card
│ ├── index.html
│ └── style.css
├── Mouse Chaser
│ ├── index.html
│ ├── script.js
│ └── styles.css
├── Random Password Genrator
│ ├── index.html
│ ├── index.js
│ └── style.css
├── Session Graph
│ ├── index.html
│ └── style.css
├── Skeleton UI
│ ├── index.html
│ └── styles.css
├── Social Login
│ └── index.html
├── Text-effect-runner
│ ├── index.html
│ ├── script.js
│ └── style.css
├── Video Player
│ ├── index.html
│ ├── script.js
│ └── style.css
├── profile_card
│ └── index.html
└── transportation booking
│ └── index.html
└── client
├── .eslintignore
├── .eslintrc.cjs
├── .gitignore
├── .npmrc
├── .prettierignore
├── .prettierrc
├── README.md
├── jsconfig.json
├── package-lock.json
├── package.json
├── postcss.config.js
├── src
├── app.d.ts
├── app.html
├── lib
│ ├── images
│ │ ├── github.svg
│ │ ├── svelte-logo.svg
│ │ ├── svelte-welcome.png
│ │ └── svelte-welcome.webp
│ └── snippets.json
└── routes
│ ├── +layout.svelte
│ ├── +page.js
│ ├── +page.svelte
│ ├── Header.svelte
│ ├── about
│ ├── +page.js
│ └── +page.svelte
│ ├── contribute
│ ├── +page.js
│ └── +page.svelte
│ └── styles.css
├── static
├── favicon.png
└── robots.txt
├── svelte.config.js
├── tailwind.config.js
└── vite.config.js
/.github/ISSUE_TEMPLATE/bug_report.md:
--------------------------------------------------------------------------------
1 | ---
2 | name: 🐞 Bug report
3 | about: Create a report to help us improve
4 | title: "[BUG] Brief description of the bug"
5 | labels: bug
6 | assignees: ''
7 |
8 | ---
9 |
10 | **Describe the bug**
11 | A clear and concise description of what the bug is.
12 |
13 | **Steps to reproduce**
14 |
15 | 1. Go to '...'
16 | 2. Click on '....'
17 | 3. Scroll down to '....'
18 | 4. See error
19 |
20 | **Expected behavior**
21 | A clear and concise description of what you expected to happen.
22 |
23 | **Screenshots**
24 | If applicable, add screenshots to help explain your problem.
25 |
26 | **Environment (please complete the following information):**
27 |
28 | - OS: [e.g. Windows, macOS, Linux]
29 | - Browser [e.g. Chrome, Firefox, Safari]
30 |
31 | **Additional context**
32 | Add any other context about the problem here.
33 |
--------------------------------------------------------------------------------
/.github/ISSUE_TEMPLATE/feature_request.md:
--------------------------------------------------------------------------------
1 | ---
2 | name: 🚀 Feature request
3 | about: Suggest an idea for this project
4 | title: "[FEATURE] Brief description of the new feature"
5 | labels: enhancement
6 | assignees: ''
7 |
8 | ---
9 |
10 | **Is your feature request related to a problem? Please describe.**
11 | A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
12 |
13 | **Describe the solution you'd like**
14 | A clear and concise description of what you want to happen.
15 |
16 | **Describe alternatives you've considered**
17 | A clear and concise description of any alternative solutions or features you've considered.
18 |
19 | **Additional context**
20 | Add any other context or screenshots about the feature request here.
21 |
--------------------------------------------------------------------------------
/.github/ISSUE_TEMPLATE/new-ui-snippet.md:
--------------------------------------------------------------------------------
1 | ---
2 | name: 🎯 New UI Snippet
3 | about: Suggest a new UI snippet for the project
4 | title: "[UI] Brief description of the new UI snippet"
5 | labels: enhancement, UI
6 | assignees: ''
7 |
8 | ---
9 |
10 | **Describe the UI snippet**
11 | A clear and concise description of the UI snippet you want to add.
12 |
13 | **Why is this UI snippet useful?**
14 | Explain the benefits and use cases for this UI snippet.
15 |
16 | **Design or mockup**
17 | If possible, provide a design or mockup of the UI snippet.
18 |
19 | **Additional context**
20 | Add any other context or information about the UI snippet here.
21 |
--------------------------------------------------------------------------------
/.github/ISSUE_TEMPLATE/other-issue.md:
--------------------------------------------------------------------------------
1 | ---
2 | name: 🛠 Other Issue
3 | about: For issues that don't fit the other categories
4 | title: "[OTHER] Brief description of the issue"
5 | labels: ''
6 | assignees: ''
7 |
8 | ---
9 |
10 | **Describe the issue**
11 | A clear and concise description of the issue.
12 |
13 | **Additional context**
14 | Add any other context or information about the issue here.
15 |
--------------------------------------------------------------------------------
/.github/PULL_REQUEST_TEMPLATE/bug_fix.md:
--------------------------------------------------------------------------------
1 | **Describe the bug fix**
2 | A clear and concise description of the bug fix and the issue it resolves.
3 |
4 | **Related issue(s)**
5 | If applicable, link to the related issue(s) in the repository.
6 |
7 | **Steps to reproduce the original bug**
8 |
9 | 1. Go to '...'
10 | 2. Click on '....'
11 | 3. Scroll down to '....'
12 | 4. See error
13 |
14 | **Testing the bug fix**
15 | Provide steps to test the bug fix and ensure it resolves the issue.
16 |
17 | **Additional context**
18 | Add any other context or information about the bug fix here.
19 |
--------------------------------------------------------------------------------
/.github/PULL_REQUEST_TEMPLATE/new_feature.md:
--------------------------------------------------------------------------------
1 | **Describe the new feature**
2 | A clear and concise description of the new feature you want to add.
3 |
4 | **Why is this feature useful?**
5 | Explain the benefits and use cases for this feature.
6 |
7 | **Implementation details**
8 | Provide a high-level overview of how this feature can be implemented, including any dependencies or requirements.
9 |
10 | **Testing the new feature**
11 | Provide steps to test the new feature and ensure it works as expected.
12 |
13 | **Additional context**
14 | Add any other context or information about the feature here.
15 |
--------------------------------------------------------------------------------
/.github/PULL_REQUEST_TEMPLATE/new_ui_snippet.md:
--------------------------------------------------------------------------------
1 | **UI Snippet Name**
2 | Provide a name for the new UI snippet.
3 |
4 | **Describe the UI Snippet**
5 | A clear and concise description of the UI snippet and its purpose.
6 |
7 | **Related issue(s)**
8 | If applicable, link to the related issue(s) in the repository.
9 |
10 | **Design and Implementation**
11 | Provide details about the design and implementation of the UI snippet, including any dependencies, libraries, or frameworks used.
12 |
13 | **Testing the UI Snippet**
14 | Provide steps to test the UI snippet and ensure it works as expected.
15 |
16 | **Screenshots**
17 | If applicable, add screenshots to help explain the UI snippet.
18 |
19 | **Additional context**
20 | Add any other context or information about the UI snippet here.
21 |
--------------------------------------------------------------------------------
/.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 |
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 |
2 | .env
3 | .env.example
4 |
--------------------------------------------------------------------------------
/CODE_OF_CONDUCT.md:
--------------------------------------------------------------------------------
1 | # Contributor Covenant Code of Conduct
2 |
3 | ## Our Pledge
4 |
5 | We as members, contributors, and leaders pledge to make participation in our
6 | community a harassment-free experience for everyone, regardless of age, body
7 | size, visible or invisible disability, ethnicity, sex characteristics, gender
8 | identity and expression, level of experience, education, socio-economic status,
9 | nationality, personal appearance, race, religion, or sexual identity
10 | and orientation.
11 |
12 | We pledge to act and interact in ways that contribute to an open, welcoming,
13 | diverse, inclusive, and healthy community.
14 |
15 | ## Our Standards
16 |
17 | Examples of behavior that contributes to a positive environment for our
18 | community include:
19 |
20 | * Demonstrating empathy and kindness toward other people
21 | * Being respectful of differing opinions, viewpoints, and experiences
22 | * Giving and gracefully accepting constructive feedback
23 | * Accepting responsibility and apologizing to those affected by our mistakes,
24 | and learning from the experience
25 | * Focusing on what is best not just for us as individuals, but for the
26 | overall community
27 |
28 | Examples of unacceptable behavior include:
29 |
30 | * The use of sexualized language or imagery, and sexual attention or
31 | advances of any kind
32 | * Trolling, insulting or derogatory comments, and personal or political attacks
33 | * Public or private harassment
34 | * Publishing others' private information, such as a physical or email
35 | address, without their explicit permission
36 | * Other conduct which could reasonably be considered inappropriate in a
37 | professional setting
38 |
39 | ## Enforcement Responsibilities
40 |
41 | Community leaders are responsible for clarifying and enforcing our standards of
42 | acceptable behavior and will take appropriate and fair corrective action in
43 | response to any behavior that they deem inappropriate, threatening, offensive,
44 | or harmful.
45 |
46 | Community leaders have the right and responsibility to remove, edit, or reject
47 | comments, commits, code, wiki edits, issues, and other contributions that are
48 | not aligned to this Code of Conduct, and will communicate reasons for moderation
49 | decisions when appropriate.
50 |
51 | ## Scope
52 |
53 | This Code of Conduct applies within all community spaces, and also applies when
54 | an individual is officially representing the community in public spaces.
55 | Examples of representing our community include using an official e-mail address,
56 | posting via an official social media account, or acting as an appointed
57 | representative at an online or offline event.
58 |
59 | ## Enforcement
60 |
61 | Instances of abusive, harassing, or otherwise unacceptable behavior may be
62 | reported to the community leaders responsible for enforcement at
63 | deveeshshetty@gmail.com.
64 | All complaints will be reviewed and investigated promptly and fairly.
65 |
66 | All community leaders are obligated to respect the privacy and security of the
67 | reporter of any incident.
68 |
69 | ## Enforcement Guidelines
70 |
71 | Community leaders will follow these Community Impact Guidelines in determining
72 | the consequences for any action they deem in violation of this Code of Conduct:
73 |
74 | ### 1. Correction
75 |
76 | **Community Impact**: Use of inappropriate language or other behavior deemed
77 | unprofessional or unwelcome in the community.
78 |
79 | **Consequence**: A private, written warning from community leaders, providing
80 | clarity around the nature of the violation and an explanation of why the
81 | behavior was inappropriate. A public apology may be requested.
82 |
83 | ### 2. Warning
84 |
85 | **Community Impact**: A violation through a single incident or series
86 | of actions.
87 |
88 | **Consequence**: A warning with consequences for continued behavior. No
89 | interaction with the people involved, including unsolicited interaction with
90 | those enforcing the Code of Conduct, for a specified period of time. This
91 | includes avoiding interactions in community spaces as well as external channels
92 | like social media. Violating these terms may lead to a temporary or
93 | permanent ban.
94 |
95 | ### 3. Temporary Ban
96 |
97 | **Community Impact**: A serious violation of community standards, including
98 | sustained inappropriate behavior.
99 |
100 | **Consequence**: A temporary ban from any sort of interaction or public
101 | communication with the community for a specified period of time. No public or
102 | private interaction with the people involved, including unsolicited interaction
103 | with those enforcing the Code of Conduct, is allowed during this period.
104 | Violating these terms may lead to a permanent ban.
105 |
106 | ### 4. Permanent Ban
107 |
108 | **Community Impact**: Demonstrating a pattern of violation of community
109 | standards, including sustained inappropriate behavior, harassment of an
110 | individual, or aggression toward or disparagement of classes of individuals.
111 |
112 | **Consequence**: A permanent ban from any sort of public interaction within
113 | the community.
114 |
115 | ## Attribution
116 |
117 | This Code of Conduct is adapted from the [Contributor Covenant][homepage],
118 | version 2.0, available at
119 | https://www.contributor-covenant.org/version/2/0/code_of_conduct.html.
120 |
121 | Community Impact Guidelines were inspired by [Mozilla's code of conduct
122 | enforcement ladder](https://github.com/mozilla/diversity).
123 |
124 | [homepage]: https://www.contributor-covenant.org
125 |
126 | For answers to common questions about this code of conduct, see the FAQ at
127 | https://www.contributor-covenant.org/faq. Translations are available at
128 | https://www.contributor-covenant.org/translations.
129 |
--------------------------------------------------------------------------------
/CONTRIBUTING.md:
--------------------------------------------------------------------------------
1 | # Contributing to CSS-Is-Fun
2 |
3 | We appreciate your interest in contributing to CSS-Is-Fun! This document outlines the steps and guidelines for contributing to this project. By following these steps, you can ensure your contribution is smoothly integrated into the project.
4 |
5 | ## Table of Contents
6 |
7 | - [Prerequisites](#prerequisites)
8 | - [Fork the Repository](#fork-the-repository)
9 | - [Clone the Repository](#clone-the-repository)
10 | - [Create a New Branch](#create-a-new-branch)
11 | - [Make Changes](#make-changes)
12 | - [Commit Your Changes](#commit-your-changes)
13 | - [Push to Your Fork](#push-to-your-fork)
14 | - [Submit a Pull Request](#submit-a-pull-request)
15 | - [Code Review](#code-review)
16 |
17 | ## Prerequisites
18 |
19 | Before you start contributing, make sure you have the following tools installed on your local machine:
20 |
21 | - [Git](https://git-scm.com/downloads)
22 | - A code editor of your choice, such as [Visual Studio Code](https://code.visualstudio.com/download), [Atom](https://atom.io/), or [Sublime Text](https://www.sublimetext.com/3).
23 |
24 | ## Fork the Repository
25 |
26 | 1. Navigate to the [CSS-Is-Fun GitHub repository](https://github.com/Deveesh-Shetty/CSS-Is-Fun).
27 | 2. Click the "Fork" button in the top-right corner of the page to create a copy of the repository in your GitHub account.
28 |
29 | ## Clone the Repository
30 |
31 | 1. Open a terminal/command prompt on your local machine.
32 | 2. Navigate to the directory where you want to clone the repository.
33 | 3. Run the following command:
34 |
35 | ```bash
36 | git clone https://github.com/YOUR_USERNAME/CSS-Is-Fun.git
37 | ```
38 |
39 | Replace `YOUR_USERNAME` with your GitHub username.
40 |
41 | ## Create a New Branch
42 |
43 | 1. Navigate to the cloned repository on your local machine:
44 |
45 | ```bash
46 | cd CSS-Is-Fun
47 | ```
48 |
49 | 2. Create a new branch using the following command:
50 |
51 | ```git
52 | git checkout -b your-new-branch-name
53 | ```
54 |
55 | Replace `your-new-branch-name` with a descriptive name for your branch, such as `add-new-feature`.
56 |
57 | ## Make Changes
58 |
59 | 1. Open the project in your preferred code editor.
60 | 2. Make the necessary changes to the project. This could include adding new features, fixing bugs, or improving existing code.
61 | 3. Test your changes to ensure they work correctly and do not introduce new bugs.
62 | 4. Also add it to the `snippets.json` file with the mentioned order in it.
63 |
64 | ## Commit Your Changes
65 |
66 | 1. Stage the changes you made:
67 |
68 | ```git
69 | git add .
70 | ```
71 |
72 | 2. Commit the changes with a descriptive commit message:
73 |
74 | ```git
75 | git commit -m "Your commit message here"
76 | ```
77 |
78 | Replace `Your commit message here` with a brief description of the changes you made.
79 |
80 | ## Push to Your Fork
81 |
82 | 1. Push your changes to your forked repository on GitHub:
83 |
84 | ```git
85 | git push origin your-new-branch-name
86 | ```
87 |
88 | Replace `your-new-branch-name` with the name of your branch.
89 |
90 | ## Submit a Pull Request
91 |
92 | 1. Navigate to the [CSS-Is-Fun GitHub repository](https://github.com/Deveesh-Shetty/CSS-Is-Fun).
93 | 2. Click the "New pull request" button.
94 | 3. Click "compare across forks" and select your forked repository and branch from the dropdown menus.
95 | 4. Review the changes and click "Create pull request."
96 | 5. Add a descriptive title and any additional comments, then click "Create pull request" again.
97 |
98 | ## Code Review
99 |
100 | Once you have submitted your pull request, the project maintainer(s) will review your changes. They may provide feedback and request changes before merging your contribution. Be sure to address their feedback and make any necessary changes to ensure a smooth integration into the project.
101 |
102 | Thank you for your contribution! 🚀
103 |
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
1 | MIT License
2 |
3 | Copyright (c) 2023 Deveesh Shetty
4 |
5 | Permission is hereby granted, free of charge, to any person obtaining a copy
6 | of this software and associated documentation files (the "Software"), to deal
7 | in the Software without restriction, including without limitation the rights
8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9 | copies of the Software, and to permit persons to whom the Software is
10 | furnished to do so, subject to the following conditions:
11 |
12 | The above copyright notice and this permission notice shall be included in all
13 | copies or substantial portions of the Software.
14 |
15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21 | SOFTWARE.
22 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # CSS Is Fun
2 |
3 | ### Yes! You heard it right CSS is awesome.
4 |
5 | That's great to hear! CSS is a powerful tool for designing and styling web pages this repository also contains UI snippets which are pre-built CSS code blocks that can be easily integrated into a website to add style and functionality.
6 |
7 | CSS-Is-Fun is a collection of creative and fun CSS animations and effects to enhance your web projects.This repository containing CSS UI snippets is a valuable resource for web designers and developers looking to streamline their workflow and add creative design elements to their projects. By using these snippets, designers can save time and effort while also ensuring consistency and coherence across their website's design.
8 |
9 | # Purpose for Creating Css Is Fun
10 |
11 | if you're looking to add some flair to your website's design, be sure to check out this repository and start experimenting with some of these awesome CSS UI snippets!
12 |
13 | Whether you're looking to create custom buttons, navigation menus, or complex animations, this repository has a wide range of UI snippets to choose from. Each snippet is carefully crafted to provide a beautiful and functional design that will enhance the user experience on your website.
14 |
15 |
16 |
17 | - [Installation](#installation)
18 | - [Snippets](#snippets)
19 | - [Contributing](#contributing)
20 | - [License](#license)
21 |
22 | ## Installation
23 |
24 | To use these CSS animations and effects in your Local System , simply download or clone this repository via using this Link :
25 |
26 | ```git
27 | git clone https://github.com/Deveesh-Shetty/CSS-Is-Fun.git
28 | ```
29 |
30 | ## Table of Contents
31 | - [Cart Item](https://codepen.io/deveesh_shetty_12/pen/rNKXvKm)
32 | - [Social Login](https://codepen.io/pen/KKejzVy).
33 | - [Counter using Closure](https://codepen.io/pen/vYVjLqx).
34 | - [Accordion](https://codepen.io/pen/YzJLEbb).
35 | - [3D Cube](https://codepen.io/pen/mdzKEQg).
36 | - [Festival Lighting](https://codepen.io/pen/NWOzdvK).
37 | - [Indian Flag](https://codepen.io/pen/xxyzqVa).
38 | - [Image Carousel I](https://codepen.io/pen/gOBKRNV).
39 | - [Image Carousel II](https://codepen.io/pen/bGmjbVo).
40 | - [Color Wheel](https://codepen.io/pen/GRYXvKw).
41 | - [Video Player](https://codepen.io/ahmedelmsery/pen/zYmmxNw).
42 | - [Bar Chart](https://codepen.io/ahmedelmsery/pen/vYVQGLP).
43 | - [Loading Page](https://codepen.io/ahmedelmsery/pen/zZVLMN).
44 | - [Session Graph](https://codepen.io/ahmedelmsery/pen/qBQdZeJ).
45 | - [Flipcard](https://codepen.io/VoiD_Z/pen/KKbBQxy).
46 | - [Mouse Chaser](https://codepen.io/NilothpalPillai/pen/BavPrWm).
47 | - [Helpline](https://codepen.io/Swathi-Singh/pen/dywjqoz).
48 | - [Digital Clock](https://codepen.io/rohancs127/pen/dywgQey).
49 | - [profile card](https://codepen.io/Raksha09/pen/ZEVVzwB).
50 |
51 | ## Snippets
52 |
53 | | Project Name | CodePen Link | Preview | Source Code |
54 | | --------------------- | ----------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------- |
55 | | Cart Item | [Go Live](https://codepen.io/deveesh_shetty_12/pen/rNKXvKm) | | [Code - Cart Item](https://github.com/Deveesh-Shetty/CSS-Is-Fun/tree/master/UI%20Snippets/Cart%20Item) |
56 | | Social Login | [Go Live](https://codepen.io/pen/KKejzVy) | | [Code - Social Login](https://github.com/Deveesh-Shetty/CSS-Is-Fun/tree/master/UI%20Snippets/Social%20Login) |
57 | | Counter using Closure | [Go Live](https://codepen.io/pen/vYVjLqx) | | [Code - Counter](https://github.com/Deveesh-Shetty/CSS-Is-Fun/tree/master/UI%20Snippets/Counter) |
58 | | Accordion | [Go Live](https://codepen.io/pen/YzJLEbb) | | [Code - Accordion](https://github.com/Deveesh-Shetty/CSS-Is-Fun/tree/master/UI%20Snippets/Accordion) |
59 | | 3D Cube | [Go Live](https://codepen.io/pen/mdzKEQg) | | [Code - 3D Cube](https://github.com/Deveesh-Shetty/CSS-Is-Fun/tree/master/UI%20Snippets/3D%20Cube) |
60 | | Festival Lighting | [Go Live](https://codepen.io/pen/NWOzdvK) | | [Code - Festival Lighting](https://github.com/Deveesh-Shetty/CSS-Is-Fun/tree/master/UI%20Snippets/Festival%20Lighting) |
61 | | Indian Flag | [Go Live](https://codepen.io/pen/xxyzqVa) | | [Code - Indian Flag](https://github.com/Deveesh-Shetty/CSS-Is-Fun/tree/master/UI%20Snippets/Indian%20Flag) |
62 | | Image Carousel I | [Go Live](https://codepen.io/pen/gOBKRNV) | | [Code - Image Carousel I](https://github.com/Deveesh-Shetty/CSS-Is-Fun/tree/master/UI%20Snippets/Carousel%20I) |
63 | | Image Carousel II | [Go Live](https://codepen.io/pen/bGmjbVo) | | [Code - Image Carousel II](https://github.com/Deveesh-Shetty/CSS-Is-Fun/tree/master/UI%20Snippets/Carousel%20II) |
64 | | Color Wheel | [Go Live](https://codepen.io/pen/GRYXvKw) | | [Code - Color Wheel](https://github.com/Deveesh-Shetty/CSS-Is-Fun/tree/master/UI%20Snippets/Color%20Wheel) |
65 | | Video Player | [Go Live](https://codepen.io/ahmedelmsery/pen/zYmmxNw) | | [Code - Video Player](https://github.com/Deveesh-Shetty/CSS-Is-Fun/tree/master/UI%20Snippets/Video%20Player) |
66 | | Bar Chart | [Go Live](https://codepen.io/ahmedelmsery/pen/vYVQGLP) | | [Code - Bar Chart](https://github.com/Deveesh-Shetty/CSS-Is-Fun/tree/master/UI%20Snippets/Chart/BarChart) |
67 | | Loading Page | [Go Live](https://codepen.io/ahmedelmsery/pen/zZVLMN) | | [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 - Session Graph](https://github.com/Deveesh-Shetty/CSS-Is-Fun/tree/master/UI%20Snippets/Session%20Graph) |
69 | | Flipcard | [Go Live](https://codepen.io/VoiD_Z/pen/KKbBQxy) | | [Code - FlipCard](https://github.com/MeetThakur/CSS-Is-Fun/tree/master/UI%20Snippets/FlipCard) |
70 | | Mouse Chaser | [Go Live](https://codepen.io/NilothpalPillai/pen/BavPrWm) | | [Code - Mouse Chaser](https://github.com/Nilothpal-Pillai/CSS-Is-Fun/tree/Mouse-Chaser/UI%20Snippets/Mouse%20Chaser) |
71 | | Helpline | [Go Live](https://codepen.io/Swathi-Singh/pen/dywjqoz) | | [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) | | [Code - profilecard](https://github.com/Deveesh-Shetty/CSS-Is-Fun/tree/master/UI%20Snippets/Helpline) |
74 |
75 |
76 |
77 |
78 |
79 | ## Contributing
80 |
81 | We encourage your contributions. Welcome to CSS is Fun on GitHub! We're excited about your contributions, big or small. Join our inclusive community and work on various CSS tasks to improve design and functionality. Let's collaborate and make something great together!🚀 For detailed instructions on how to contribute, please refer to the [CONTRIBUTING.md](https://github.com/Deveesh-Shetty/CSS-Is-Fun/blob/master/CONTRIBUTING.md) file.
82 |
83 | ## License
84 |
85 | This project is licensed under the MIT License.
86 | Feel free to modify and adjust the content as needed to suit your project 🥳.
87 |
88 |
Lorem, ipsum dolor sit amet consectetur adipisicing elit. Architecto eum dolor accusamus id magnam voluptatem? Eaque neque reprehenderit consequuntur praesentium!.
43 | Find more about me by clicking below....
44 |
45 |
60 |
61 |
62 |
63 |
64 |
65 |
66 |
67 |
Name2
68 |
69 |
Lorem ipsum dolor sit, amet consectetur adipisicing elit. Quibusdam sint dolor cumque a enim esse!.
70 | Find more about me by clicking below....
71 |
72 |
87 |
88 |
89 |
90 |
91 |
92 |
93 |
94 |
Name3
95 |
96 |
Lorem ipsum, dolor sit amet consectetur adipisicing elit. Adipisci perspiciatis porro est impedit commodi architecto maiores facere quas.
97 | Find more about me by clicking below....
98 |
17 |
--------------------------------------------------------------------------------
/client/src/routes/+page.js:
--------------------------------------------------------------------------------
1 | // since there's no dynamic data here, we can prerender
2 | // it so that it gets served as a static asset in production
3 | export const prerender = true;
4 |
--------------------------------------------------------------------------------
/client/src/routes/+page.svelte:
--------------------------------------------------------------------------------
1 |
4 |
5 |
6 | Home
7 |
8 |
9 |
10 |
11 |
29 |
30 |
--------------------------------------------------------------------------------
/client/src/routes/about/+page.js:
--------------------------------------------------------------------------------
1 | import { dev } from '$app/environment';
2 |
3 | // we don't need any JS on this page, though we'll load
4 | // it in dev so that we get hot module replacement
5 | export const csr = dev;
6 |
7 | // since there's no dynamic data here, we can prerender
8 | // it so that it gets served as a static asset in production
9 | export const prerender = true;
10 |
--------------------------------------------------------------------------------
/client/src/routes/about/+page.svelte:
--------------------------------------------------------------------------------
1 |
2 | About
3 |
4 |
5 |
6 |
7 |
8 |
About this app
9 |
10 |
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@latest
16 |
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 |
23 |
--------------------------------------------------------------------------------
/client/src/routes/contribute/+page.js:
--------------------------------------------------------------------------------
1 | // since there's no dynamic data here, we can prerender
2 | // it so that it gets served as a static asset in production
3 | export const prerender = true;
4 |
--------------------------------------------------------------------------------
/client/src/routes/contribute/+page.svelte:
--------------------------------------------------------------------------------
1 |