├── .editorconfig ├── .github └── pull_request_template.md ├── .gitignore ├── .prettierrc ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── assets ├── css │ └── style.css └── favicon │ └── 20241228_111649.png ├── buttons └── buttons.css └── index.html /.editorconfig: -------------------------------------------------------------------------------- 1 | root = true 2 | 3 | [*] 4 | charset = utf-8 5 | end_of_line = crlf 6 | indent_size = 2 7 | insert_final_newline = false 8 | indent_style = tab 9 | trim_trailing_whitespace = true 10 | 11 | [*.json] 12 | indent_size = 2 13 | 14 | [*.yml] 15 | indent_size = 2 16 | indent_style = space 17 | 18 | [*.md] 19 | indent_size = 2 20 | indent_style = space -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- 1 | > **Note** 2 | > - We strictly follow the Contribution Guideline and expect contributors to follow it as well. 3 | > - If a lot of conflicts/changes are requested in the PR, please open a new PR with the requested changes (either you or we can close the PR). 4 | 5 | 6 | ## Have you read the Contribution Guidelines? If not, check [CONTRIBUTING.md](https://github.com/Design-and-Code/css-buttons/blob/main/CONTRIBUTING.md) file first. 7 | 8 | (Write your answer here.) 9 | 10 | ## Description 11 | 12 | (Write your answer here.) 13 | 14 | ## Class Naming Convention for your button 15 | - [ ] Does your html `button` element have class-name like this: `your_github_username-button-index` (example: `rajkumar-justcoder-button-1` ). 16 | 17 | ## Checklist 18 | 19 | - [ ] I've read the contribution guidelines. 20 | - [ ] I've checked the issue list before deciding what to submit. 21 | 22 | > mark `[X]` to make it checked. 23 | 24 | ## Related Issues 25 | 26 | Fixes Issue # (write number after `#`) 27 | 28 | 29 | ## Screenshot 30 | ( Add your button screenshot here.) -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .vscode/* 2 | 3 | 4 | # Local History for Visual Studio Code 5 | .history/ 6 | 7 | # Built Visual Studio Code Extensions 8 | *.vsix 9 | 10 | # Sublime Text Editor 11 | *.sublime-project 12 | *.sublime-workspace 13 | 14 | # Random crap 15 | trash 16 | .DS_Store 17 | .sass-cache 18 | .tmp 19 | .rvmrc 20 | .trashes 21 | *~ 22 | 23 | # Environment Variables ( If Any ) 24 | .env 25 | .env-development 26 | .env-production 27 | 28 | # Logs 29 | logs 30 | *.log 31 | 32 | *.bak -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- 1 | { 2 | "trailingComma": "none", 3 | "tabWidth": 4, 4 | "semi": true, 5 | "singleQuote": true 6 | } 7 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | # Contributing 2 | 3 | Glad to see you want to contribute to this project! 4 | 5 | > **Note** 6 | > 7 | > - We donot expect Modified CSS button of existing button. 8 | > 9 | > - Avoid duplicate contributions, please check if a button already exists before contributing. 10 | 11 | ## Contents 12 | 13 | - [Setup this project](#setup-project) 14 | - [Rules to follow when contributing](#some-rules-to-follow-when-contributing) 15 | - [Add your button to this repo](#add-your-button-to-css-buttons) 16 | - [How to ask help?](#where-can-i-go-for-help) 17 | - [Report a bug/feature request](#report-a-bugrequest-a-feature) 18 | 19 | --- 20 | 21 | ## Setup Project 22 | 23 | To start contributing, follow the below guidelines: 24 | 25 | 1. Fork [this](https://github.com/Design-and-Code/css-buttons) repository. 26 | 27 | 2. Clone your forked copy of the project. 28 | 29 | ``` 30 | git clone https://github.com//css-buttons.git 31 | ``` 32 | 33 | 3. Navigate to the directory `css-buttons` . 34 | 35 | ``` 36 | cd css-buttons 37 | ``` 38 | 39 | 4. Add a reference (remote) to the original repository. 40 | 41 | ``` 42 | git remote add upstream https://github.com/Design-and-Code/css-buttons.git 43 | ``` 44 | 45 | 5. Check the remotes for this repository. 46 | 47 | ``` 48 | git remote -v 49 | ``` 50 | 51 | 6. Always take a pull from the upstream repository to your main branch to keep it up to date with the main project (updated repository). 52 | 53 | ``` 54 | git pull upstream main 55 | ``` 56 | 57 | 7. Create a new branch. 58 | 59 | ``` 60 | git checkout -b 61 | ``` 62 | 63 | # Some rules to follow when Contributing: 64 | 65 | - Please follow naming convention for button classes. (Eg. yourname-btn-index aka rajkumar-btn-1) 66 | - Do not change default buttons maked with the ` button-def ` class. 67 | - Do not change any code in the `index.html` file except for button section. 68 | - Do not change any code in the `assets` folder. 69 | 70 | 71 | ## Add your button to css-buttons 72 | 73 | 1. Add your HTML code in the [index.html](https://github.com/Design-and-Code/css-buttons/blob/main/index.html) file. 74 | 2. Add your CSS code in the [buttons.css](https://github.com/Design-and-Code/css-buttons/blob/main/buttons/buttons.css) file. 75 | 3. Make sure you do not change any other button's code. 76 | 4. For naming css classes use the correct naming conventions - eg. yourname-btn-index or btn-yourname-index. 77 | 5. When you open the PR, please include a full screenshot. 78 | 6. See below demo code to know how to add your button. 79 | 80 | #### Demo code 81 | ```html 82 | 83 |
84 | 85 | 88 |
89 | Created by 90 | {your-github-username} 91 |
92 |
93 | 94 | ``` 95 | > So it will look like this 96 | ```html 97 | 98 |
99 | 100 | 103 |
104 | Created by 105 | Rajkumar-justcoder 106 |
107 |
108 | 109 | 110 | ``` 111 | 7. Also if u use any tag like span or div etc then your should have class-name like this: `your_github_username-btn-index-span/text/div` (example: `rajkumar-justcoder-btn-1-span`) as u can see in above given demo code. 112 | 8. If using keyframes/animation in css then keyframe name also should be like this: `your_github_username-btn-index-rotate` (example: `rajkumar-justcoder-btn-1-rotate`) 113 | 114 | 115 | ## Push your changes and make a Pull Request 116 | 117 | 1. Track your changes ✔. 118 | 119 | ``` 120 | git add . 121 | ``` 122 | 123 | 2. Commit your changes. 124 | 125 | ``` 126 | git commit -m "Relevant message" 127 | ``` 128 | 129 | 3. Push the committed changes in your feature branch to your remote repo. 130 | 131 | ``` 132 | git push -u origin 133 | ``` 134 | 135 | 4. To create a pull request, click on `Compare & pull requests`. 136 | 137 | 5. Add appropriate title and description to your pull request explaining your changes and efforts done. 138 | 139 | 6. Click on `Create pull request`. 140 | 141 | 7. Voilà! You have made a PR to css-buttons 💥. Wait for your submission to be accepted and your PR to be merged. 142 | 143 | 144 | ## Where can I go for help? 145 | 146 | If you need help, you can join our discord server. 147 | 148 |

149 | 150 | Discord 151 | 152 |

153 | 154 | ## Report a bug/request a feature 155 | 156 | If you find a security vulnerability, do NOT open an issue. [Email](mailto:designandcode.community@gmail.com) us instead. 157 | 158 | If you find yourself wishing for a feature that doesn't exist in css-buttons, you are probably not alone. Open an issue on our issues list on GitHub which describes 159 | the feature you would like to see, why you need it, and how it should work. 160 | 161 | #### Follow these steps to report a bug/request a feature 162 | 163 | - Head over to [issues](https://github.com/Design-and-Code/css-buttons/issues) tab. 164 | - Click on `New issue` in top right corner. 165 | - Add appropriate title and description to your issue. 166 | 167 | 168 | #### Things to keep in mind while reporting a bug 169 | 170 | A good bug report shouldn't leave others needing to chase you up for more information. 171 | Please try to be as detailed as possible in your report. 172 | 173 | - What is your environment? 174 | - What steps will reproduce the issue? 175 | - What browser(s) and OS experience the problem? 176 | - What would you expect to be the outcome? 177 | - Provide adequate screenshots/log for the bug. 178 | 179 | All these details will help developers to fix any potential bugs. 180 | 181 | #### Things to keep in mind while creating a feature request 182 | 183 | Feature requests are welcome. But take a moment to find out whether your idea fits with the scope and aims of the project. 184 | It's up to you to make a strong case to convince the project's developers of the merits of this feature. Please provide as much detail and context as possible. -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | GNU GENERAL PUBLIC LICENSE 2 | Version 3, 29 June 2007 3 | 4 | Copyright (C) 2007 Free Software Foundation, Inc. 5 | Everyone is permitted to copy and distribute verbatim copies 6 | of this license document, but changing it is not allowed. 7 | 8 | Preamble 9 | 10 | The GNU General Public License is a free, copyleft license for 11 | software and other kinds of works. 12 | 13 | The licenses for most software and other practical works are designed 14 | to take away your freedom to share and change the works. By contrast, 15 | the GNU General Public License is intended to guarantee your freedom to 16 | share and change all versions of a program--to make sure it remains free 17 | software for all its users. We, the Free Software Foundation, use the 18 | GNU General Public License for most of our software; it applies also to 19 | any other work released this way by its authors. You can apply it to 20 | your programs, too. 21 | 22 | When we speak of free software, we are referring to freedom, not 23 | price. Our General Public Licenses are designed to make sure that you 24 | have the freedom to distribute copies of free software (and charge for 25 | them if you wish), that you receive source code or can get it if you 26 | want it, that you can change the software or use pieces of it in new 27 | free programs, and that you know you can do these things. 28 | 29 | To protect your rights, we need to prevent others from denying you 30 | these rights or asking you to surrender the rights. Therefore, you have 31 | certain responsibilities if you distribute copies of the software, or if 32 | you modify it: responsibilities to respect the freedom of others. 33 | 34 | For example, if you distribute copies of such a program, whether 35 | gratis or for a fee, you must pass on to the recipients the same 36 | freedoms that you received. You must make sure that they, too, receive 37 | or can get the source code. And you must show them these terms so they 38 | know their rights. 39 | 40 | Developers that use the GNU GPL protect your rights with two steps: 41 | (1) assert copyright on the software, and (2) offer you this License 42 | giving you legal permission to copy, distribute and/or modify it. 43 | 44 | For the developers' and authors' protection, the GPL clearly explains 45 | that there is no warranty for this free software. For both users' and 46 | authors' sake, the GPL requires that modified versions be marked as 47 | changed, so that their problems will not be attributed erroneously to 48 | authors of previous versions. 49 | 50 | Some devices are designed to deny users access to install or run 51 | modified versions of the software inside them, although the manufacturer 52 | can do so. This is fundamentally incompatible with the aim of 53 | protecting users' freedom to change the software. The systematic 54 | pattern of such abuse occurs in the area of products for individuals to 55 | use, which is precisely where it is most unacceptable. Therefore, we 56 | have designed this version of the GPL to prohibit the practice for those 57 | products. If such problems arise substantially in other domains, we 58 | stand ready to extend this provision to those domains in future versions 59 | of the GPL, as needed to protect the freedom of users. 60 | 61 | Finally, every program is threatened constantly by software patents. 62 | States should not allow patents to restrict development and use of 63 | software on general-purpose computers, but in those that do, we wish to 64 | avoid the special danger that patents applied to a free program could 65 | make it effectively proprietary. To prevent this, the GPL assures that 66 | patents cannot be used to render the program non-free. 67 | 68 | The precise terms and conditions for copying, distribution and 69 | modification follow. 70 | 71 | TERMS AND CONDITIONS 72 | 73 | 0. Definitions. 74 | 75 | "This License" refers to version 3 of the GNU General Public License. 76 | 77 | "Copyright" also means copyright-like laws that apply to other kinds of 78 | works, such as semiconductor masks. 79 | 80 | "The Program" refers to any copyrightable work licensed under this 81 | License. Each licensee is addressed as "you". "Licensees" and 82 | "recipients" may be individuals or organizations. 83 | 84 | To "modify" a work means to copy from or adapt all or part of the work 85 | in a fashion requiring copyright permission, other than the making of an 86 | exact copy. The resulting work is called a "modified version" of the 87 | earlier work or a work "based on" the earlier work. 88 | 89 | A "covered work" means either the unmodified Program or a work based 90 | on the Program. 91 | 92 | To "propagate" a work means to do anything with it that, without 93 | permission, would make you directly or secondarily liable for 94 | infringement under applicable copyright law, except executing it on a 95 | computer or modifying a private copy. Propagation includes copying, 96 | distribution (with or without modification), making available to the 97 | public, and in some countries other activities as well. 98 | 99 | To "convey" a work means any kind of propagation that enables other 100 | parties to make or receive copies. Mere interaction with a user through 101 | a computer network, with no transfer of a copy, is not conveying. 102 | 103 | An interactive user interface displays "Appropriate Legal Notices" 104 | to the extent that it includes a convenient and prominently visible 105 | feature that (1) displays an appropriate copyright notice, and (2) 106 | tells the user that there is no warranty for the work (except to the 107 | extent that warranties are provided), that licensees may convey the 108 | work under this License, and how to view a copy of this License. If 109 | the interface presents a list of user commands or options, such as a 110 | menu, a prominent item in the list meets this criterion. 111 | 112 | 1. Source Code. 113 | 114 | The "source code" for a work means the preferred form of the work 115 | for making modifications to it. "Object code" means any non-source 116 | form of a work. 117 | 118 | A "Standard Interface" means an interface that either is an official 119 | standard defined by a recognized standards body, or, in the case of 120 | interfaces specified for a particular programming language, one that 121 | is widely used among developers working in that language. 122 | 123 | The "System Libraries" of an executable work include anything, other 124 | than the work as a whole, that (a) is included in the normal form of 125 | packaging a Major Component, but which is not part of that Major 126 | Component, and (b) serves only to enable use of the work with that 127 | Major Component, or to implement a Standard Interface for which an 128 | implementation is available to the public in source code form. A 129 | "Major Component", in this context, means a major essential component 130 | (kernel, window system, and so on) of the specific operating system 131 | (if any) on which the executable work runs, or a compiler used to 132 | produce the work, or an object code interpreter used to run it. 133 | 134 | The "Corresponding Source" for a work in object code form means all 135 | the source code needed to generate, install, and (for an executable 136 | work) run the object code and to modify the work, including scripts to 137 | control those activities. However, it does not include the work's 138 | System Libraries, or general-purpose tools or generally available free 139 | programs which are used unmodified in performing those activities but 140 | which are not part of the work. For example, Corresponding Source 141 | includes interface definition files associated with source files for 142 | the work, and the source code for shared libraries and dynamically 143 | linked subprograms that the work is specifically designed to require, 144 | such as by intimate data communication or control flow between those 145 | subprograms and other parts of the work. 146 | 147 | The Corresponding Source need not include anything that users 148 | can regenerate automatically from other parts of the Corresponding 149 | Source. 150 | 151 | The Corresponding Source for a work in source code form is that 152 | same work. 153 | 154 | 2. Basic Permissions. 155 | 156 | All rights granted under this License are granted for the term of 157 | copyright on the Program, and are irrevocable provided the stated 158 | conditions are met. This License explicitly affirms your unlimited 159 | permission to run the unmodified Program. The output from running a 160 | covered work is covered by this License only if the output, given its 161 | content, constitutes a covered work. This License acknowledges your 162 | rights of fair use or other equivalent, as provided by copyright law. 163 | 164 | You may make, run and propagate covered works that you do not 165 | convey, without conditions so long as your license otherwise remains 166 | in force. You may convey covered works to others for the sole purpose 167 | of having them make modifications exclusively for you, or provide you 168 | with facilities for running those works, provided that you comply with 169 | the terms of this License in conveying all material for which you do 170 | not control copyright. Those thus making or running the covered works 171 | for you must do so exclusively on your behalf, under your direction 172 | and control, on terms that prohibit them from making any copies of 173 | your copyrighted material outside their relationship with you. 174 | 175 | Conveying under any other circumstances is permitted solely under 176 | the conditions stated below. Sublicensing is not allowed; section 10 177 | makes it unnecessary. 178 | 179 | 3. Protecting Users' Legal Rights From Anti-Circumvention Law. 180 | 181 | No covered work shall be deemed part of an effective technological 182 | measure under any applicable law fulfilling obligations under article 183 | 11 of the WIPO copyright treaty adopted on 20 December 1996, or 184 | similar laws prohibiting or restricting circumvention of such 185 | measures. 186 | 187 | When you convey a covered work, you waive any legal power to forbid 188 | circumvention of technological measures to the extent such circumvention 189 | is effected by exercising rights under this License with respect to 190 | the covered work, and you disclaim any intention to limit operation or 191 | modification of the work as a means of enforcing, against the work's 192 | users, your or third parties' legal rights to forbid circumvention of 193 | technological measures. 194 | 195 | 4. Conveying Verbatim Copies. 196 | 197 | You may convey verbatim copies of the Program's source code as you 198 | receive it, in any medium, provided that you conspicuously and 199 | appropriately publish on each copy an appropriate copyright notice; 200 | keep intact all notices stating that this License and any 201 | non-permissive terms added in accord with section 7 apply to the code; 202 | keep intact all notices of the absence of any warranty; and give all 203 | recipients a copy of this License along with the Program. 204 | 205 | You may charge any price or no price for each copy that you convey, 206 | and you may offer support or warranty protection for a fee. 207 | 208 | 5. Conveying Modified Source Versions. 209 | 210 | You may convey a work based on the Program, or the modifications to 211 | produce it from the Program, in the form of source code under the 212 | terms of section 4, provided that you also meet all of these conditions: 213 | 214 | a) The work must carry prominent notices stating that you modified 215 | it, and giving a relevant date. 216 | 217 | b) The work must carry prominent notices stating that it is 218 | released under this License and any conditions added under section 219 | 7. This requirement modifies the requirement in section 4 to 220 | "keep intact all notices". 221 | 222 | c) You must license the entire work, as a whole, under this 223 | License to anyone who comes into possession of a copy. This 224 | License will therefore apply, along with any applicable section 7 225 | additional terms, to the whole of the work, and all its parts, 226 | regardless of how they are packaged. This License gives no 227 | permission to license the work in any other way, but it does not 228 | invalidate such permission if you have separately received it. 229 | 230 | d) If the work has interactive user interfaces, each must display 231 | Appropriate Legal Notices; however, if the Program has interactive 232 | interfaces that do not display Appropriate Legal Notices, your 233 | work need not make them do so. 234 | 235 | A compilation of a covered work with other separate and independent 236 | works, which are not by their nature extensions of the covered work, 237 | and which are not combined with it such as to form a larger program, 238 | in or on a volume of a storage or distribution medium, is called an 239 | "aggregate" if the compilation and its resulting copyright are not 240 | used to limit the access or legal rights of the compilation's users 241 | beyond what the individual works permit. Inclusion of a covered work 242 | in an aggregate does not cause this License to apply to the other 243 | parts of the aggregate. 244 | 245 | 6. Conveying Non-Source Forms. 246 | 247 | You may convey a covered work in object code form under the terms 248 | of sections 4 and 5, provided that you also convey the 249 | machine-readable Corresponding Source under the terms of this License, 250 | in one of these ways: 251 | 252 | a) Convey the object code in, or embodied in, a physical product 253 | (including a physical distribution medium), accompanied by the 254 | Corresponding Source fixed on a durable physical medium 255 | customarily used for software interchange. 256 | 257 | b) Convey the object code in, or embodied in, a physical product 258 | (including a physical distribution medium), accompanied by a 259 | written offer, valid for at least three years and valid for as 260 | long as you offer spare parts or customer support for that product 261 | model, to give anyone who possesses the object code either (1) a 262 | copy of the Corresponding Source for all the software in the 263 | product that is covered by this License, on a durable physical 264 | medium customarily used for software interchange, for a price no 265 | more than your reasonable cost of physically performing this 266 | conveying of source, or (2) access to copy the 267 | Corresponding Source from a network server at no charge. 268 | 269 | c) Convey individual copies of the object code with a copy of the 270 | written offer to provide the Corresponding Source. This 271 | alternative is allowed only occasionally and noncommercially, and 272 | only if you received the object code with such an offer, in accord 273 | with subsection 6b. 274 | 275 | d) Convey the object code by offering access from a designated 276 | place (gratis or for a charge), and offer equivalent access to the 277 | Corresponding Source in the same way through the same place at no 278 | further charge. You need not require recipients to copy the 279 | Corresponding Source along with the object code. If the place to 280 | copy the object code is a network server, the Corresponding Source 281 | may be on a different server (operated by you or a third party) 282 | that supports equivalent copying facilities, provided you maintain 283 | clear directions next to the object code saying where to find the 284 | Corresponding Source. Regardless of what server hosts the 285 | Corresponding Source, you remain obligated to ensure that it is 286 | available for as long as needed to satisfy these requirements. 287 | 288 | e) Convey the object code using peer-to-peer transmission, provided 289 | you inform other peers where the object code and Corresponding 290 | Source of the work are being offered to the general public at no 291 | charge under subsection 6d. 292 | 293 | A separable portion of the object code, whose source code is excluded 294 | from the Corresponding Source as a System Library, need not be 295 | included in conveying the object code work. 296 | 297 | A "User Product" is either (1) a "consumer product", which means any 298 | tangible personal property which is normally used for personal, family, 299 | or household purposes, or (2) anything designed or sold for incorporation 300 | into a dwelling. In determining whether a product is a consumer product, 301 | doubtful cases shall be resolved in favor of coverage. For a particular 302 | product received by a particular user, "normally used" refers to a 303 | typical or common use of that class of product, regardless of the status 304 | of the particular user or of the way in which the particular user 305 | actually uses, or expects or is expected to use, the product. A product 306 | is a consumer product regardless of whether the product has substantial 307 | commercial, industrial or non-consumer uses, unless such uses represent 308 | the only significant mode of use of the product. 309 | 310 | "Installation Information" for a User Product means any methods, 311 | procedures, authorization keys, or other information required to install 312 | and execute modified versions of a covered work in that User Product from 313 | a modified version of its Corresponding Source. The information must 314 | suffice to ensure that the continued functioning of the modified object 315 | code is in no case prevented or interfered with solely because 316 | modification has been made. 317 | 318 | If you convey an object code work under this section in, or with, or 319 | specifically for use in, a User Product, and the conveying occurs as 320 | part of a transaction in which the right of possession and use of the 321 | User Product is transferred to the recipient in perpetuity or for a 322 | fixed term (regardless of how the transaction is characterized), the 323 | Corresponding Source conveyed under this section must be accompanied 324 | by the Installation Information. But this requirement does not apply 325 | if neither you nor any third party retains the ability to install 326 | modified object code on the User Product (for example, the work has 327 | been installed in ROM). 328 | 329 | The requirement to provide Installation Information does not include a 330 | requirement to continue to provide support service, warranty, or updates 331 | for a work that has been modified or installed by the recipient, or for 332 | the User Product in which it has been modified or installed. Access to a 333 | network may be denied when the modification itself materially and 334 | adversely affects the operation of the network or violates the rules and 335 | protocols for communication across the network. 336 | 337 | Corresponding Source conveyed, and Installation Information provided, 338 | in accord with this section must be in a format that is publicly 339 | documented (and with an implementation available to the public in 340 | source code form), and must require no special password or key for 341 | unpacking, reading or copying. 342 | 343 | 7. Additional Terms. 344 | 345 | "Additional permissions" are terms that supplement the terms of this 346 | License by making exceptions from one or more of its conditions. 347 | Additional permissions that are applicable to the entire Program shall 348 | be treated as though they were included in this License, to the extent 349 | that they are valid under applicable law. If additional permissions 350 | apply only to part of the Program, that part may be used separately 351 | under those permissions, but the entire Program remains governed by 352 | this License without regard to the additional permissions. 353 | 354 | When you convey a copy of a covered work, you may at your option 355 | remove any additional permissions from that copy, or from any part of 356 | it. (Additional permissions may be written to require their own 357 | removal in certain cases when you modify the work.) You may place 358 | additional permissions on material, added by you to a covered work, 359 | for which you have or can give appropriate copyright permission. 360 | 361 | Notwithstanding any other provision of this License, for material you 362 | add to a covered work, you may (if authorized by the copyright holders of 363 | that material) supplement the terms of this License with terms: 364 | 365 | a) Disclaiming warranty or limiting liability differently from the 366 | terms of sections 15 and 16 of this License; or 367 | 368 | b) Requiring preservation of specified reasonable legal notices or 369 | author attributions in that material or in the Appropriate Legal 370 | Notices displayed by works containing it; or 371 | 372 | c) Prohibiting misrepresentation of the origin of that material, or 373 | requiring that modified versions of such material be marked in 374 | reasonable ways as different from the original version; or 375 | 376 | d) Limiting the use for publicity purposes of names of licensors or 377 | authors of the material; or 378 | 379 | e) Declining to grant rights under trademark law for use of some 380 | trade names, trademarks, or service marks; or 381 | 382 | f) Requiring indemnification of licensors and authors of that 383 | material by anyone who conveys the material (or modified versions of 384 | it) with contractual assumptions of liability to the recipient, for 385 | any liability that these contractual assumptions directly impose on 386 | those licensors and authors. 387 | 388 | All other non-permissive additional terms are considered "further 389 | restrictions" within the meaning of section 10. If the Program as you 390 | received it, or any part of it, contains a notice stating that it is 391 | governed by this License along with a term that is a further 392 | restriction, you may remove that term. If a license document contains 393 | a further restriction but permits relicensing or conveying under this 394 | License, you may add to a covered work material governed by the terms 395 | of that license document, provided that the further restriction does 396 | not survive such relicensing or conveying. 397 | 398 | If you add terms to a covered work in accord with this section, you 399 | must place, in the relevant source files, a statement of the 400 | additional terms that apply to those files, or a notice indicating 401 | where to find the applicable terms. 402 | 403 | Additional terms, permissive or non-permissive, may be stated in the 404 | form of a separately written license, or stated as exceptions; 405 | the above requirements apply either way. 406 | 407 | 8. Termination. 408 | 409 | You may not propagate or modify a covered work except as expressly 410 | provided under this License. Any attempt otherwise to propagate or 411 | modify it is void, and will automatically terminate your rights under 412 | this License (including any patent licenses granted under the third 413 | paragraph of section 11). 414 | 415 | However, if you cease all violation of this License, then your 416 | license from a particular copyright holder is reinstated (a) 417 | provisionally, unless and until the copyright holder explicitly and 418 | finally terminates your license, and (b) permanently, if the copyright 419 | holder fails to notify you of the violation by some reasonable means 420 | prior to 60 days after the cessation. 421 | 422 | Moreover, your license from a particular copyright holder is 423 | reinstated permanently if the copyright holder notifies you of the 424 | violation by some reasonable means, this is the first time you have 425 | received notice of violation of this License (for any work) from that 426 | copyright holder, and you cure the violation prior to 30 days after 427 | your receipt of the notice. 428 | 429 | Termination of your rights under this section does not terminate the 430 | licenses of parties who have received copies or rights from you under 431 | this License. If your rights have been terminated and not permanently 432 | reinstated, you do not qualify to receive new licenses for the same 433 | material under section 10. 434 | 435 | 9. Acceptance Not Required for Having Copies. 436 | 437 | You are not required to accept this License in order to receive or 438 | run a copy of the Program. Ancillary propagation of a covered work 439 | occurring solely as a consequence of using peer-to-peer transmission 440 | to receive a copy likewise does not require acceptance. However, 441 | nothing other than this License grants you permission to propagate or 442 | modify any covered work. These actions infringe copyright if you do 443 | not accept this License. Therefore, by modifying or propagating a 444 | covered work, you indicate your acceptance of this License to do so. 445 | 446 | 10. Automatic Licensing of Downstream Recipients. 447 | 448 | Each time you convey a covered work, the recipient automatically 449 | receives a license from the original licensors, to run, modify and 450 | propagate that work, subject to this License. You are not responsible 451 | for enforcing compliance by third parties with this License. 452 | 453 | An "entity transaction" is a transaction transferring control of an 454 | organization, or substantially all assets of one, or subdividing an 455 | organization, or merging organizations. If propagation of a covered 456 | work results from an entity transaction, each party to that 457 | transaction who receives a copy of the work also receives whatever 458 | licenses to the work the party's predecessor in interest had or could 459 | give under the previous paragraph, plus a right to possession of the 460 | Corresponding Source of the work from the predecessor in interest, if 461 | the predecessor has it or can get it with reasonable efforts. 462 | 463 | You may not impose any further restrictions on the exercise of the 464 | rights granted or affirmed under this License. For example, you may 465 | not impose a license fee, royalty, or other charge for exercise of 466 | rights granted under this License, and you may not initiate litigation 467 | (including a cross-claim or counterclaim in a lawsuit) alleging that 468 | any patent claim is infringed by making, using, selling, offering for 469 | sale, or importing the Program or any portion of it. 470 | 471 | 11. Patents. 472 | 473 | A "contributor" is a copyright holder who authorizes use under this 474 | License of the Program or a work on which the Program is based. The 475 | work thus licensed is called the contributor's "contributor version". 476 | 477 | A contributor's "essential patent claims" are all patent claims 478 | owned or controlled by the contributor, whether already acquired or 479 | hereafter acquired, that would be infringed by some manner, permitted 480 | by this License, of making, using, or selling its contributor version, 481 | but do not include claims that would be infringed only as a 482 | consequence of further modification of the contributor version. For 483 | purposes of this definition, "control" includes the right to grant 484 | patent sublicenses in a manner consistent with the requirements of 485 | this License. 486 | 487 | Each contributor grants you a non-exclusive, worldwide, royalty-free 488 | patent license under the contributor's essential patent claims, to 489 | make, use, sell, offer for sale, import and otherwise run, modify and 490 | propagate the contents of its contributor version. 491 | 492 | In the following three paragraphs, a "patent license" is any express 493 | agreement or commitment, however denominated, not to enforce a patent 494 | (such as an express permission to practice a patent or covenant not to 495 | sue for patent infringement). To "grant" such a patent license to a 496 | party means to make such an agreement or commitment not to enforce a 497 | patent against the party. 498 | 499 | If you convey a covered work, knowingly relying on a patent license, 500 | and the Corresponding Source of the work is not available for anyone 501 | to copy, free of charge and under the terms of this License, through a 502 | publicly available network server or other readily accessible means, 503 | then you must either (1) cause the Corresponding Source to be so 504 | available, or (2) arrange to deprive yourself of the benefit of the 505 | patent license for this particular work, or (3) arrange, in a manner 506 | consistent with the requirements of this License, to extend the patent 507 | license to downstream recipients. "Knowingly relying" means you have 508 | actual knowledge that, but for the patent license, your conveying the 509 | covered work in a country, or your recipient's use of the covered work 510 | in a country, would infringe one or more identifiable patents in that 511 | country that you have reason to believe are valid. 512 | 513 | If, pursuant to or in connection with a single transaction or 514 | arrangement, you convey, or propagate by procuring conveyance of, a 515 | covered work, and grant a patent license to some of the parties 516 | receiving the covered work authorizing them to use, propagate, modify 517 | or convey a specific copy of the covered work, then the patent license 518 | you grant is automatically extended to all recipients of the covered 519 | work and works based on it. 520 | 521 | A patent license is "discriminatory" if it does not include within 522 | the scope of its coverage, prohibits the exercise of, or is 523 | conditioned on the non-exercise of one or more of the rights that are 524 | specifically granted under this License. You may not convey a covered 525 | work if you are a party to an arrangement with a third party that is 526 | in the business of distributing software, under which you make payment 527 | to the third party based on the extent of your activity of conveying 528 | the work, and under which the third party grants, to any of the 529 | parties who would receive the covered work from you, a discriminatory 530 | patent license (a) in connection with copies of the covered work 531 | conveyed by you (or copies made from those copies), or (b) primarily 532 | for and in connection with specific products or compilations that 533 | contain the covered work, unless you entered into that arrangement, 534 | or that patent license was granted, prior to 28 March 2007. 535 | 536 | Nothing in this License shall be construed as excluding or limiting 537 | any implied license or other defenses to infringement that may 538 | otherwise be available to you under applicable patent law. 539 | 540 | 12. No Surrender of Others' Freedom. 541 | 542 | If conditions are imposed on you (whether by court order, agreement or 543 | otherwise) that contradict the conditions of this License, they do not 544 | excuse you from the conditions of this License. If you cannot convey a 545 | covered work so as to satisfy simultaneously your obligations under this 546 | License and any other pertinent obligations, then as a consequence you may 547 | not convey it at all. For example, if you agree to terms that obligate you 548 | to collect a royalty for further conveying from those to whom you convey 549 | the Program, the only way you could satisfy both those terms and this 550 | License would be to refrain entirely from conveying the Program. 551 | 552 | 13. Use with the GNU Affero General Public License. 553 | 554 | Notwithstanding any other provision of this License, you have 555 | permission to link or combine any covered work with a work licensed 556 | under version 3 of the GNU Affero General Public License into a single 557 | combined work, and to convey the resulting work. The terms of this 558 | License will continue to apply to the part which is the covered work, 559 | but the special requirements of the GNU Affero General Public License, 560 | section 13, concerning interaction through a network will apply to the 561 | combination as such. 562 | 563 | 14. Revised Versions of this License. 564 | 565 | The Free Software Foundation may publish revised and/or new versions of 566 | the GNU General Public License from time to time. Such new versions will 567 | be similar in spirit to the present version, but may differ in detail to 568 | address new problems or concerns. 569 | 570 | Each version is given a distinguishing version number. If the 571 | Program specifies that a certain numbered version of the GNU General 572 | Public License "or any later version" applies to it, you have the 573 | option of following the terms and conditions either of that numbered 574 | version or of any later version published by the Free Software 575 | Foundation. If the Program does not specify a version number of the 576 | GNU General Public License, you may choose any version ever published 577 | by the Free Software Foundation. 578 | 579 | If the Program specifies that a proxy can decide which future 580 | versions of the GNU General Public License can be used, that proxy's 581 | public statement of acceptance of a version permanently authorizes you 582 | to choose that version for the Program. 583 | 584 | Later license versions may give you additional or different 585 | permissions. However, no additional obligations are imposed on any 586 | author or copyright holder as a result of your choosing to follow a 587 | later version. 588 | 589 | 15. Disclaimer of Warranty. 590 | 591 | THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY 592 | APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT 593 | HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY 594 | OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, 595 | THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 596 | PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM 597 | IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF 598 | ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 599 | 600 | 16. Limitation of Liability. 601 | 602 | IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING 603 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS 604 | THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY 605 | GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE 606 | USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF 607 | DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD 608 | PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), 609 | EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF 610 | SUCH DAMAGES. 611 | 612 | 17. Interpretation of Sections 15 and 16. 613 | 614 | If the disclaimer of warranty and limitation of liability provided 615 | above cannot be given local legal effect according to their terms, 616 | reviewing courts shall apply local law that most closely approximates 617 | an absolute waiver of all civil liability in connection with the 618 | Program, unless a warranty or assumption of liability accompanies a 619 | copy of the Program in return for a fee. 620 | 621 | END OF TERMS AND CONDITIONS 622 | 623 | How to Apply These Terms to Your New Programs 624 | 625 | If you develop a new program, and you want it to be of the greatest 626 | possible use to the public, the best way to achieve this is to make it 627 | free software which everyone can redistribute and change under these terms. 628 | 629 | To do so, attach the following notices to the program. It is safest 630 | to attach them to the start of each source file to most effectively 631 | state the exclusion of warranty; and each file should have at least 632 | the "copyright" line and a pointer to where the full notice is found. 633 | 634 | 635 | Copyright (C) 636 | 637 | This program is free software: you can redistribute it and/or modify 638 | it under the terms of the GNU General Public License as published by 639 | the Free Software Foundation, either version 3 of the License, or 640 | (at your option) any later version. 641 | 642 | This program is distributed in the hope that it will be useful, 643 | but WITHOUT ANY WARRANTY; without even the implied warranty of 644 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 645 | GNU General Public License for more details. 646 | 647 | You should have received a copy of the GNU General Public License 648 | along with this program. If not, see . 649 | 650 | Also add information on how to contact you by electronic and paper mail. 651 | 652 | If the program does terminal interaction, make it output a short 653 | notice like this when it starts in an interactive mode: 654 | 655 | Copyright (C) 656 | This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. 657 | This is free software, and you are welcome to redistribute it 658 | under certain conditions; type `show c' for details. 659 | 660 | The hypothetical commands `show w' and `show c' should show the appropriate 661 | parts of the General Public License. Of course, your program's commands 662 | might be different; for a GUI interface, you would use an "about box". 663 | 664 | You should also get your employer (if you work as a programmer) or school, 665 | if any, to sign a "copyright disclaimer" for the program, if necessary. 666 | For more information on this, and how to apply and follow the GNU GPL, see 667 | . 668 | 669 | The GNU General Public License does not permit incorporating your program 670 | into proprietary programs. If your program is a subroutine library, you 671 | may consider it more useful to permit linking proprietary applications with 672 | the library. If this is what you want to do, use the GNU Lesser General 673 | Public License instead of this License. But first, please read 674 | . 675 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # CSS Buttons 2 | > A collection of simple and subtle CSS-only hover animations for buttons. ✨ 3 | 4 | 5 | > **NOTE** 6 | > 7 | > - This project is under maintenance so pr and issue are on hold 8 | 9 | 10 | [![Maintenance](https://img.shields.io/badge/Maintained%3F-yes-green.svg?style=flat)](https://github.com/Design-and-Code/css-buttons) 11 | [![PRs Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg?style=flat)](https://github.com/Design-and-Code/css-buttons) 12 | [![Open Source Love svg1](https://badges.frapsoft.com/os/v1/open-source.svg?v=103?style=flat)](https://github.com/Design-and-Code/css-buttons) 13 | [![contributions welcome](https://img.shields.io/badge/contributions-welcome-brightgreen.svg?style=flat)](https://github.com/Design-and-Code/css-buttons) 14 | [![issues](https://img.shields.io/github/issues/Design-and-Code/css-buttons?color=6CC621)](https://github.com/Design-and-Code/css-buttons) 15 | 16 | ![Design](https://user-images.githubusercontent.com/65373279/193451212-96c59af4-ff8b-437a-b8da-c4d1ab4a1cc6.png) 17 | 18 | # Some rules to follow when Contributing: 19 | 20 | - Please follow naming convention for button classes. (Eg. yourname-btn-index or btn-yourname-index) 21 | - Do not change default buttons maked with the ` button-def ` class. 22 | - Do not change any code in the `index.html` file except for button section. 23 | - Do not change any code in the `assets` folder. 24 | 25 | 26 | ## Contribution Guidelines 🏗 27 | 28 | Want to add your inputs to the repo? We invite you to contribute. 29 | 30 | Head to [CONTRIBUTING.md](./CONTRIBUTING.md) to start contributing. 31 | 32 | 33 | ### Folder Structure 34 | 35 | ``` 36 | root 37 | ├── assets 38 | │ ├── script.js 39 | │ └── css 40 | │ └── style.css 41 | │ 42 | ├── buttons 43 | │ └── buttons.css 44 | └── index.html 45 | ``` 46 | -------------------------------------------------------------------------------- /assets/css/style.css: -------------------------------------------------------------------------------- 1 | * { 2 | font-family: 'Inter', sans-serif; 3 | margin: 0; 4 | padding: 0; 5 | box-sizing: border-box 6 | } 7 | 8 | :root { 9 | --bg-btn-card: #141417; 10 | --forground-main-color: rgb(255 255 255 / 1); 11 | --background-main-color: rgb(0, 0, 0); 12 | --card-border-radius: 30px; 13 | --default-color: rgba(156, 163, 175); 14 | --link-hover-color: rgb(129 120 255 / 1); 15 | --default-link-color: rgb(129 120 255 / 1); 16 | } 17 | 18 | body { 19 | padding: 0 20px; 20 | max-width: 1100px; 21 | margin: 3rem auto; 22 | background-color: var(--background-main-color); 23 | color: var(--forground-main-color); 24 | } 25 | 26 | body::-webkit-scrollbar { 27 | width: 8px; 28 | background-color: rgb(64, 63, 63); 29 | } 30 | 31 | body::-webkit-scrollbar-thumb { 32 | border-radius: 11px; 33 | /* -webkit-box-shadow: inset -5px 0px 29px 0 #ec4896; */ 34 | background-color: rgb(99, 99, 99); 35 | } 36 | 37 | main { 38 | display: flex; 39 | align-items: center; 40 | } 41 | 42 | a { 43 | text-decoration: none; 44 | } 45 | 46 | .navbar { 47 | display: flex; 48 | flex-direction: column; 49 | align-items: center; 50 | justify-content: center; 51 | text-align: center; 52 | } 53 | 54 | .title { 55 | font-size: 3rem; 56 | padding-top: 0rem; 57 | font-weight: 700; 58 | } 59 | 60 | .content-text { 61 | padding: 1rem 0rem 3rem 0rem; 62 | font-size: 1.2rem; 63 | } 64 | 65 | .button-container { 66 | display: flex; 67 | align-items: center; 68 | justify-content: space-around; 69 | width: 18rem; 70 | height: 18rem; 71 | background-color: var(--bg-btn-card); 72 | transition: 0.4s; 73 | border-radius: var(--card-border-radius); 74 | flex-direction: column; 75 | position: relative; 76 | } 77 | 78 | .button-container:hover { 79 | transform: translateY(-5px); 80 | } 81 | 82 | .container { 83 | display: flex; 84 | justify-content: center; 85 | flex-wrap: wrap; 86 | gap: 2rem; 87 | } 88 | 89 | .createdby-section { 90 | width: 100%; 91 | text-align: center; 92 | padding: 8px 0; 93 | background-color: #212128; 94 | position: absolute; 95 | bottom: 0; 96 | border-radius: 0 0 var(--card-border-radius) var(--card-border-radius); 97 | } 98 | 99 | .createdby-section a { 100 | color: rgb(129 120 255 / 1); 101 | text-decoration: none; 102 | } 103 | 104 | .btn-def-text { 105 | margin-top: 20px; 106 | } 107 | 108 | 109 | /* footer stat here */ 110 | .footer-main { 111 | margin-top: 2rem; 112 | } 113 | 114 | .footer-container { 115 | width: 100%; 116 | display: flex; 117 | align-items: center; 118 | margin: 0 auto; 119 | padding: 2rem 1.25rem; 120 | flex-direction: column; 121 | } 122 | 123 | 124 | @media (min-width: 1280px) { 125 | .footer-container { 126 | max-width: 1280px; 127 | } 128 | } 129 | 130 | @media (min-width: 1024px) { 131 | .footer-container { 132 | max-width: 1024px; 133 | } 134 | } 135 | 136 | @media (min-width: 768px) { 137 | .footer-container { 138 | max-width: 768px; 139 | } 140 | } 141 | 142 | @media (min-width: 640px) { 143 | .footer-container { 144 | flex-direction: row; 145 | max-width: 640px; 146 | } 147 | } 148 | 149 | 150 | 151 | 152 | .footer-title { 153 | display: flex; 154 | align-items: center; 155 | justify-content: center; 156 | font-weight: 500; 157 | color: white; 158 | } 159 | 160 | @media (min-width: 768px) { 161 | .footer-title { 162 | justify-content: flex-start; 163 | } 164 | } 165 | 166 | .footer-copyright { 167 | margin-top: 1rem; 168 | font-size: .875rem; 169 | line-height: 1.25rem; 170 | color: var(--default-color) 171 | } 172 | 173 | @media (min-width: 640px) { 174 | .footer-copyright { 175 | padding: 0.5rem 0 0.5rem 1rem; 176 | margin-left: 1rem; 177 | margin: 0 0 0 1rem; 178 | border-left-width: 2px; 179 | border-color: rgba(31, 41, 55); 180 | } 181 | } 182 | 183 | .footer-copyright>a { 184 | color: rgb(129 120 255 / 1) 185 | } 186 | 187 | .socials-span { 188 | margin-top: 1rem; 189 | justify-content: center; 190 | display: inline-flex; 191 | } 192 | 193 | @media (min-width: 640px) { 194 | .socials-span { 195 | margin-left: auto; 196 | margin-top: 0; 197 | justify-content: flex-start; 198 | } 199 | } 200 | 201 | 202 | .socials-span>a { 203 | color: var(--default-color); 204 | } 205 | 206 | .socials-span>a:hover { 207 | color: var(--link-hover-color); 208 | transform: scale(1.4); 209 | transition: all 0.3s ease-in-out; 210 | } 211 | 212 | .socials-span>a:not(:first-child) { 213 | margin-left: 0.75rem; 214 | } 215 | 216 | .socials-span>a>svg { 217 | width: 1.25rem; 218 | height: 1.25rem; 219 | } 220 | 221 | 222 | /* footer ends here */ -------------------------------------------------------------------------------- /assets/favicon/20241228_111649.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Design-and-Code/css-buttons/60b15197c82d05630a4d0031fe66adaff859b99b/assets/favicon/20241228_111649.png -------------------------------------------------------------------------------- /buttons/buttons.css: -------------------------------------------------------------------------------- 1 | :root { 2 | --btn-bg-color: rgb(255 255 255 / 1); 3 | --btn-bg-color-hover: rgb(129 120 255 / 1); 4 | --font-color-white: rgb(255 255 255 / 1); 5 | --font-color-black: rgb(0 0 0 / 1); 6 | } 7 | 8 | a:focus, 9 | button:focus { 10 | outline: none; 11 | } 12 | 13 | a:focus-visible, 14 | button:focus-visible { 15 | outline: 2px solid #443ffc; 16 | outline-offset: 3px; 17 | } 18 | 19 | a:focus-visible { 20 | background: none; 21 | } 22 | 23 | .button-def { 24 | pointer-events: auto; 25 | cursor: pointer; 26 | background: var(--btn-bg-color); 27 | border: none; 28 | padding: 1.5rem 3rem; 29 | margin: 0; 30 | font-family: inherit; 31 | font-size: inherit; 32 | position: relative; 33 | display: inline-block; 34 | } 35 | 36 | .button-def::before, 37 | .button-def::after { 38 | position: absolute; 39 | top: 0; 40 | left: 0; 41 | width: 100%; 42 | height: 100%; 43 | } 44 | 45 | .button-1 { 46 | font-family: aktiv-grotesk-extended, sans-serif; 47 | font-weight: 700; 48 | border: 2px solid #000; 49 | border-radius: 3rem; 50 | overflow: hidden; 51 | color: var(--font-color-black); 52 | background-color: var(--btn-bg-color-hover); 53 | } 54 | 55 | .button-1 span { 56 | position: relative; 57 | } 58 | 59 | .button-1::before { 60 | content: ''; 61 | background: var(--btn-bg-color); 62 | transition: transform 0.3s cubic-bezier(0.7, 0, 0.2, 1); 63 | } 64 | 65 | .button-1:hover::before { 66 | transform: translate3d(0, -100%, 0); 67 | } 68 | 69 | .button-2 { 70 | font-family: input-mono-narrow, monospace; 71 | font-weight: 500; 72 | padding: 1rem 1.5rem; 73 | border: 1px solid #000; 74 | overflow: hidden; 75 | background-color: var(--btn-bg-color-hover); 76 | } 77 | 78 | .button-2 span { 79 | display: block; 80 | position: relative; 81 | } 82 | 83 | .button-2>span { 84 | color: var(--font-color-black); 85 | 86 | overflow: hidden; 87 | } 88 | 89 | .button-2>span>span { 90 | color: var(--font-color-black); 91 | overflow: hidden; 92 | } 93 | 94 | .button-2:hover>span>span { 95 | color: var(--font-color-black); 96 | animation: MoveUpInitial 0.2s forwards, MoveUpEnd 0.2s forwards 0.2s; 97 | } 98 | 99 | @keyframes MoveUpInitial { 100 | to { 101 | transform: translate3d(0, -105%, 0); 102 | } 103 | } 104 | 105 | @keyframes MoveUpEnd { 106 | from { 107 | transform: translate3d(0, 100%, 0); 108 | } 109 | 110 | to { 111 | transform: translate3d(0, 0, 0); 112 | } 113 | } 114 | 115 | .button-2::before { 116 | content: ''; 117 | background: var(--btn-bg-color); 118 | transition: transform 0.3s cubic-bezier(0.7, 0, 0.2, 1); 119 | transform-origin: 100% 50%; 120 | } 121 | 122 | .button-2:hover::before { 123 | transform: scale3d(0, 1, 1); 124 | transform-origin: 0% 50%; 125 | } 126 | 127 | .button-3 { 128 | text-transform: uppercase; 129 | letter-spacing: 0.05rem; 130 | font-weight: 700; 131 | font-size: 0.85rem; 132 | border-radius: 0.5rem; 133 | overflow: hidden; 134 | color: var(--font-color-black); 135 | background-color: var(--btn-bg-color-hover); 136 | } 137 | 138 | .button-3 span { 139 | position: relative; 140 | } 141 | 142 | .button-3::before { 143 | content: ''; 144 | background: var(--btn-bg-color); 145 | width: 120%; 146 | left: -10%; 147 | transform: skew(30deg); 148 | transition: transform 0.4s cubic-bezier(0.3, 1, 0.8, 1); 149 | } 150 | 151 | .button-3:hover::before { 152 | transform: translate3d(100%, 0, 0); 153 | } 154 | 155 | .button-4 { 156 | font-family: signo, sans-serif; 157 | font-weight: 500; 158 | } 159 | 160 | .button-4>span { 161 | display: inline-block; 162 | } 163 | 164 | .button-4:hover>span { 165 | opacity: 0; 166 | } 167 | 168 | .marquee { 169 | position: absolute; 170 | top: 0; 171 | left: 0; 172 | width: 100%; 173 | overflow: hidden; 174 | pointer-events: none; 175 | } 176 | 177 | .marquee__inner { 178 | width: fit-content; 179 | display: flex; 180 | position: relative; 181 | --offset: 1rem; 182 | --move-initial: calc(-25% + var(--offset)); 183 | --move-final: calc(-50% + var(--offset)); 184 | transform: translate3d(var(--move-initial), 0, 0); 185 | animation: marquee 1s linear infinite; 186 | animation-play-state: paused; 187 | opacity: 0; 188 | } 189 | 190 | .button-4:hover .marquee__inner { 191 | animation-play-state: running; 192 | opacity: 1; 193 | transition-duration: 0.4s; 194 | } 195 | 196 | .marquee span { 197 | text-align: center; 198 | white-space: nowrap; 199 | font-style: italic; 200 | padding: 1.5rem 0.5rem; 201 | } 202 | 203 | @keyframes marquee { 204 | 0% { 205 | transform: translate3d(var(--move-initial), 0, 0); 206 | } 207 | 208 | 100% { 209 | transform: translate3d(var(--move-final), 0, 0); 210 | } 211 | } 212 | 213 | .button-5 { 214 | font-family: freight-display-pro, serif; 215 | font-weight: 900; 216 | font-size: 1.25rem; 217 | border-radius: 50%; 218 | border: 2px solid #000; 219 | } 220 | 221 | .button-5>span { 222 | display: inline-block; 223 | transition: opacity 0.1s; 224 | } 225 | 226 | .button-5:hover>span { 227 | opacity: 0; 228 | } 229 | 230 | .button-5 .marquee { 231 | transform: rotate(-2.75deg); 232 | } 233 | 234 | .button-5:hover .marquee__inner { 235 | animation-play-state: running; 236 | opacity: 1; 237 | transition-duration: 0.6s; 238 | } 239 | 240 | .button-6 { 241 | background: var(--btn-bg-color-hover); 242 | font-weight: 700; 243 | padding: 0; 244 | border-radius: 5px; 245 | } 246 | 247 | .button-6 span { 248 | display: block; 249 | background: var(--btn-bg-color); 250 | padding: 1.5rem 2rem; 251 | border: 1px solid #000; 252 | border-radius: 5px; 253 | transform: translate3d(-4px, -4px, 0); 254 | transition: transform 0.3s cubic-bezier(0.7, 0, 0.2, 1); 255 | } 256 | 257 | .button-6:hover span { 258 | transform: translate3d(-8px, -8px, 0); 259 | } 260 | 261 | /* add your css of buttons from here */ 262 | 263 | /* button-1 or name of button start */ 264 | /* css here */ 265 | /* button-1 or name of button end */ 266 | 267 | /* button-7 ... or name of button start */ 268 | /* css here */ 269 | /* button-7... or name of button end */ 270 | 271 | .jackwebdev-button-1 * { 272 | font-family: Verdana, Geneva, sans-serif !important; 273 | color: white; 274 | } 275 | 276 | .jackwebdev-button-1 { 277 | font-size: 1.2rem; 278 | font-weight: 600; 279 | border: none; 280 | border-radius: 0.8rem; 281 | padding: 1.5rem 2.8rem; 282 | background-color: rgb(110, 217, 249); 283 | background: linear-gradient(165deg, 284 | rgb(32, 114, 247) 20%, 285 | rgb(110, 217, 249) 45%, 286 | rgb(32, 114, 247) 80%); 287 | background-size: 350%; 288 | background-position: left; 289 | box-shadow: 0 0 0.2rem rgba(110, 217, 249, 0.8), 290 | 0 0.2rem 0.8rem -0.2rem rgba(32, 114, 247, 0.8), 291 | inset 0.5rem 0.5rem 0.5rem rgba(110, 217, 249, 0.6), 292 | inset -0.5rem -0.5rem 0.5rem rgba(32, 114, 247, 0.6); 293 | 294 | transition: background-position 400ms ease-in-out, 295 | box-shadow 600ms ease-in-out; 296 | -webkit-transition: background-position 400ms ease-in-out, 297 | -webkit-box-shadow 600ms ease-in-out; 298 | } 299 | 300 | .jackwebdev-button-1:hover { 301 | background-position: right; 302 | box-shadow: 0 0.5rem 2rem rgba(110, 217, 249, 0.8), 303 | 0 2rem 2rem -2.5rem rgba(32, 114, 247, 0.8), 304 | inset 0.6rem 0.6rem 0.6rem rgba(110, 217, 249, 0.8), 305 | inset -0.6rem -0.6rem 0.6rem rgba(4, 86, 219, 0.8); 306 | } 307 | 308 | .RhyshaKachari-button-1 { 309 | width: 220px; 310 | height: 50px; 311 | border: none; 312 | outline: none; 313 | color: #fff; 314 | background: #111; 315 | cursor: pointer; 316 | position: relative; 317 | z-index: 0; 318 | border-radius: 10px; 319 | } 320 | 321 | .RhyshaKachari-button-1:before { 322 | content: ''; 323 | background: linear-gradient(45deg, 324 | #ff0000, 325 | #ff7300, 326 | #fffb00, 327 | #48ff00, 328 | #00ffd5, 329 | #002bff, 330 | #7a00ff, 331 | #ff00c8, 332 | #ff0000); 333 | position: absolute; 334 | top: -2px; 335 | left: -2px; 336 | background-size: 400%; 337 | z-index: -1; 338 | filter: blur(5px); 339 | width: calc(100% + 4px); 340 | height: calc(100% + 4px); 341 | animation: RhyshaKachari-glowing 20s linear infinite; 342 | opacity: 0; 343 | transition: opacity 0.3s ease-in-out; 344 | border-radius: 10px; 345 | } 346 | 347 | .RhyshaKachari-button-1:active { 348 | color: #000; 349 | } 350 | 351 | .RhyshaKachari-button-1:active:after { 352 | background: transparent; 353 | } 354 | 355 | .RhyshaKachari-button-1:hover:before { 356 | opacity: 1; 357 | } 358 | 359 | .RhyshaKachari-button-1:after { 360 | z-index: -1; 361 | content: ''; 362 | position: absolute; 363 | width: 100%; 364 | height: 100%; 365 | background: #111; 366 | left: 0; 367 | top: 0; 368 | border-radius: 10px; 369 | } 370 | 371 | @keyframes RhyshaKachari-glowing { 372 | 0% { 373 | background-position: 0 0; 374 | } 375 | 376 | 50% { 377 | background-position: 400% 0; 378 | } 379 | 380 | 100% { 381 | background-position: 0 0; 382 | } 383 | } 384 | 385 | .AmitSahoo45-button-1 { 386 | position: relative; 387 | height: 50px; 388 | width: 150px; 389 | color: #fff; 390 | font-size: 15px; 391 | font-weight: 600; 392 | letter-spacing: 2px; 393 | background-color: #212121; 394 | transition: all 0.5s; 395 | border: none; 396 | cursor: pointer; 397 | } 398 | 399 | .AmitSahoo45-button-1::before { 400 | position: absolute; 401 | content: ''; 402 | top: 0; 403 | left: 0; 404 | width: 100%; 405 | height: 100%; 406 | background-color: rgba(29, 255, 86, 0.281); 407 | border-radius: 5px; 408 | transition: all 0.3s; 409 | z-index: 1; 410 | } 411 | 412 | .AmitSahoo45-button-1:hover::before { 413 | opacity: 0; 414 | transform: scale(0.7, 0.7); 415 | -webkit-transform: scale(0.7, 0.7); 416 | -moz-transform: scale(0.7, 0.7); 417 | -ms-transform: scale(0.7, 0.7); 418 | -o-transform: scale(0.7, 0.7); 419 | } 420 | 421 | .AmitSahoo45-button-1::after { 422 | content: ''; 423 | position: absolute; 424 | top: 0; 425 | left: 0; 426 | width: 100%; 427 | height: 100%; 428 | transition: all 0.4s; 429 | border: 1px solid rgba(29, 255, 86, 0.281); 430 | border-radius: 5px; 431 | transform: scale(1.5, 1.5); 432 | opacity: 0; 433 | z-index: 1; 434 | } 435 | 436 | .AmitSahoo45-button-1:hover::after { 437 | opacity: 1; 438 | transform: scale(1, 1); 439 | } 440 | 441 | .AmitSahoo45-button-2 { 442 | padding: 0.1em 0.25em; 443 | width: 13em; 444 | height: 4.2em; 445 | background-color: #212121; 446 | border: 0.08em solid #fff; 447 | border-radius: 0.3em; 448 | font-size: 12px; 449 | } 450 | 451 | .AmitSahoo45-button-2 span { 452 | position: relative; 453 | display: flex; 454 | justify-content: center; 455 | align-items: center; 456 | bottom: 0.4em; 457 | width: 8.25em; 458 | height: 2.5em; 459 | background-color: #212121; 460 | border-radius: 0.2em; 461 | font-size: 1.5em; 462 | color: #fff; 463 | border: 0.08em solid #fff; 464 | box-shadow: 0 0.4em 0.1em 0.019em #fff; 465 | } 466 | 467 | .AmitSahoo45-button-2 span:hover { 468 | transition: all 0.5s; 469 | transform: translate(0, 0.4em); 470 | box-shadow: 0 0 0 0 #fff; 471 | } 472 | 473 | .AmitSahoo45-button-2 span:not(hover) { 474 | transition: all 1s; 475 | } 476 | 477 | .AmitSahoo45-button-3 { 478 | position: relative; 479 | padding: 10px 20px; 480 | border-radius: 7px; 481 | border: 1px solid rgb(61, 106, 255); 482 | font-size: 14px; 483 | text-transform: uppercase; 484 | font-weight: 600; 485 | letter-spacing: 2px; 486 | background: transparent; 487 | color: #fff; 488 | overflow: hidden; 489 | box-shadow: 0 0 0 0 transparent; 490 | -webkit-transition: all 0.2s ease-in; 491 | -moz-transition: all 0.2s ease-in; 492 | transition: all 0.2s ease-in; 493 | } 494 | 495 | .AmitSahoo45-button-3:hover { 496 | background: rgb(61, 106, 255); 497 | box-shadow: 0 0 30px 5px rgba(0, 142, 236, 0.815); 498 | -webkit-transition: all 0.2s ease-out; 499 | -moz-transition: all 0.2s ease-out; 500 | transition: all 0.2s ease-out; 501 | } 502 | 503 | .AmitSahoo45-button-3:hover::before { 504 | -moz-animation: sh02 0.5s 0s linear; 505 | animation: sh02 0.5s 0s linear; 506 | } 507 | 508 | .AmitSahoo45-button-3::before { 509 | content: ''; 510 | display: block; 511 | width: 0px; 512 | height: 86%; 513 | position: absolute; 514 | top: 7%; 515 | left: 0%; 516 | opacity: 0; 517 | background: #fff; 518 | box-shadow: 0 0 50px 30px #fff; 519 | -webkit-transform: skewX(-20deg); 520 | -moz-transform: skewX(-20deg); 521 | -ms-transform: skewX(-20deg); 522 | -o-transform: skewX(-20deg); 523 | transform: skewX(-20deg); 524 | } 525 | 526 | @keyframes sh02 { 527 | from { 528 | opacity: 0; 529 | left: 0%; 530 | } 531 | 532 | 50% { 533 | opacity: 1; 534 | } 535 | 536 | to { 537 | opacity: 0; 538 | left: 100%; 539 | } 540 | } 541 | 542 | .AmitSahoo45-button-3:active { 543 | box-shadow: 0 0 0 0 transparent; 544 | transition: box-shadow 0.2s ease-in; 545 | -webkit-transition: box-shadow 0.2s ease-in; 546 | -moz-transition: box-shadow 0.2s ease-in; 547 | -ms-transition: box-shadow 0.2s ease-in; 548 | -o-transition: box-shadow 0.2s ease-in; 549 | } 550 | 551 | /* -------------------button 9--------- */ 552 | .Mahekjain-button-1 { 553 | all: unset; 554 | width: 100px; 555 | height: 30px; 556 | font-size: 16px; 557 | background: transparent; 558 | border: none; 559 | position: relative; 560 | color: #f0f0f0; 561 | cursor: pointer; 562 | z-index: 1; 563 | padding: 10px 20px; 564 | display: flex; 565 | align-items: center; 566 | justify-content: center; 567 | white-space: nowrap; 568 | user-select: none; 569 | -webkit-user-select: none; 570 | touch-action: manipulation; 571 | } 572 | 573 | .Mahekjain-button-1::after, 574 | .Mahekjain-button-1::before { 575 | content: ''; 576 | position: absolute; 577 | bottom: 0; 578 | right: 0; 579 | z-index: -99999; 580 | transition: all 0.4s; 581 | } 582 | 583 | .Mahekjain-button-1::before { 584 | transform: translate(0%, 0%); 585 | width: 100%; 586 | height: 100%; 587 | background: #28282d; 588 | border-radius: 10px; 589 | } 590 | 591 | .Mahekjain-button-1::after { 592 | transform: translate(10px, 10px); 593 | width: 35px; 594 | height: 35px; 595 | background: #ffffff15; 596 | backdrop-filter: blur(5px); 597 | -webkit-backdrop-filter: blur(5px); 598 | border-radius: 50px; 599 | } 600 | 601 | .Mahekjain-button-1:hover::before { 602 | transform: translate(5%, 20%); 603 | width: 110%; 604 | height: 110%; 605 | } 606 | 607 | .Mahekjain-button-1:hover::after { 608 | border-radius: 10px; 609 | transform: translate(0, 0); 610 | width: 100%; 611 | height: 100%; 612 | } 613 | 614 | .Mahekjain-button-1:active::after { 615 | transition: 0s; 616 | transform: translate(0, 5%); 617 | } 618 | 619 | /* -------------------------------------------------------------button 10----------------------------------------------------- */ 620 | .Mahekjain-btn-2 a { 621 | position: relative; 622 | display: inline-block; 623 | padding: 25px 30px; 624 | margin: 40px 0; 625 | color: #03e9f4; 626 | text-decoration: none; 627 | text-transform: uppercase; 628 | transition: 0.5s; 629 | letter-spacing: 4px; 630 | overflow: hidden; 631 | margin-right: 10px; 632 | } 633 | 634 | .Mahekjain-btn-2 a:hover { 635 | background: #03e9f4; 636 | color: #050801; 637 | box-shadow: 0 0 5px #03e9f4, 0 0 25px #03e9f4, 0 0 50px #03e9f4, 638 | 0 0 200px #03e9f4; 639 | -webkit-box-reflect: below 1px linear-gradient(transparent, #0005); 640 | } 641 | 642 | .Mahekjain-btn-2 a:nth-child(1) { 643 | filter: hue-rotate(270deg); 644 | } 645 | 646 | .Mahekjain-btn-2 a:nth-child(2) { 647 | filter: hue-rotate(110deg); 648 | } 649 | 650 | .Mahekjain-btn-2 a span { 651 | position: absolute; 652 | display: block; 653 | } 654 | 655 | .Mahekjain-btn-2 a span:nth-child(1) { 656 | top: 0; 657 | left: 0; 658 | width: 100%; 659 | height: 2px; 660 | background: linear-gradient(90deg, transparent, #03e9f4); 661 | animation: Mahekjain-btn-animate1 1s linear infinite; 662 | } 663 | 664 | @keyframes Mahekjain-btn-animate1 { 665 | 0% { 666 | left: -100%; 667 | } 668 | 669 | 50%, 670 | 100% { 671 | left: 100%; 672 | } 673 | } 674 | 675 | .Mahekjain-btn-2 a span:nth-child(2) { 676 | top: -100%; 677 | right: 0; 678 | width: 2px; 679 | height: 100%; 680 | background: linear-gradient(180deg, transparent, #03e9f4); 681 | animation: Mahekjain-btn-animate2 1s linear infinite; 682 | animation-delay: 0.25s; 683 | } 684 | 685 | @keyframes Mahekjain-btn-animate2 { 686 | 0% { 687 | top: -100%; 688 | } 689 | 690 | 50%, 691 | 100% { 692 | top: 100%; 693 | } 694 | } 695 | 696 | .Mahekjain-btn-2 a span:nth-child(3) { 697 | bottom: 0; 698 | right: 0; 699 | width: 100%; 700 | height: 2px; 701 | background: linear-gradient(270deg, transparent, #03e9f4); 702 | animation: Mahekjain-btn-animate3 1s linear infinite; 703 | animation-delay: 0.5s; 704 | } 705 | 706 | @keyframes Mahekjain-btn-animate3 { 707 | 0% { 708 | right: -100%; 709 | } 710 | 711 | 50%, 712 | 100% { 713 | right: 100%; 714 | } 715 | } 716 | 717 | .Mahekjain-btn-10 a span:nth-child(4) { 718 | bottom: -100%; 719 | left: 0; 720 | width: 2px; 721 | height: 100%; 722 | background: linear-gradient(360deg, transparent, #03e9f4); 723 | animation: animate4 1s linear infinite; 724 | animation-delay: 0.75s; 725 | } 726 | 727 | @keyframes animate4 { 728 | 0% { 729 | bottom: -100%; 730 | } 731 | 732 | 50%, 733 | 100% { 734 | bottom: 100%; 735 | } 736 | } 737 | 738 | 739 | .akashyap25-button-1 { 740 | align-items: center; 741 | background-image: linear-gradient(144deg, #af40ff, #5b42f3 50%, #00ddeb); 742 | border: 0; 743 | border-radius: 8px; 744 | box-shadow: rgba(14, 8, 22, 0.2) 0 15px 30px -5px; 745 | box-sizing: border-box; 746 | color: #ffffff; 747 | display: flex; 748 | font-family: Phantomsans, sans-serif; 749 | font-size: 2em; 750 | justify-content: center; 751 | line-height: 1em; 752 | max-width: 100%; 753 | min-width: 140px; 754 | padding: 3px; 755 | text-decoration: none; 756 | user-select: none; 757 | -webkit-user-select: none; 758 | touch-action: manipulation; 759 | white-space: nowrap; 760 | cursor: pointer; 761 | } 762 | 763 | .akashyap25-button-1:active, 764 | .akashyap25-button-1:hover { 765 | outline: 0; 766 | } 767 | 768 | .akashyap25-button-1 span { 769 | background-color: rgb(22, 17, 61); 770 | padding: 16px 24px; 771 | border-radius: 6px; 772 | width: 100%; 773 | height: 100%; 774 | transition: 300ms; 775 | } 776 | 777 | .akashyap25-button-1:hover span { 778 | background: none; 779 | } 780 | 781 | @media (min-width: 768px) { 782 | .akashyap25-button-1 { 783 | font-size: 24px; 784 | min-width: 196px; 785 | } 786 | } 787 | 788 | 789 | 790 | 791 | 792 | /* start for buttons 11*/ 793 | 794 | .ingrzs-button-1 { 795 | display: inline-block; 796 | border-radius: 4px; 797 | background-color: #3d405b; 798 | border: none; 799 | color: #ffffff; 800 | text-align: center; 801 | font-size: 17px; 802 | padding: 16px; 803 | width: 130px; 804 | transition: all 0.5s; 805 | cursor: pointer; 806 | margin: 5px; 807 | } 808 | 809 | .ingrzs-button-1 span { 810 | cursor: pointer; 811 | display: inline-block; 812 | position: relative; 813 | transition: 0.5s; 814 | } 815 | 816 | .ingrzs-button-1 span:after { 817 | content: '»'; 818 | position: absolute; 819 | opacity: 0; 820 | top: 0; 821 | right: -15px; 822 | transition: 0.5s; 823 | } 824 | 825 | .ingrzs-button-1:hover span { 826 | padding-right: 15px; 827 | } 828 | 829 | .ingrzs-button-1:hover span:after { 830 | opacity: 1; 831 | right: 0; 832 | } 833 | 834 | /* end for button 11 */ 835 | 836 | /* new buttons */ 837 | 838 | .Mahich123-button-1 { 839 | padding: 1rem 2.5rem 1rem 2.5rem; 840 | background: none; 841 | color: white; 842 | border: 1px solid #787878; 843 | border-radius: 15px; 844 | } 845 | 846 | .Mahich123-button-1:hover { 847 | background-color: #7f8487; 848 | } 849 | 850 | .Mahich123-button-2 { 851 | padding: 1rem 2.5rem 1rem 2.5rem; 852 | background: none; 853 | color: white; 854 | border: 1px solid #fbf2cf; 855 | 856 | transition: 0.5s ease, color 1s ease; 857 | } 858 | 859 | .Mahich123-button-2:hover { 860 | background-color: #fbf2cf; 861 | color: black; 862 | font-weight: bold; 863 | } 864 | 865 | .Mahich123-button-3 { 866 | padding: 1rem 2rem; 867 | background: #638aab; 868 | border-radius: 3px; 869 | color: #fff; 870 | box-shadow: 0 6px #323232; 871 | transition: none; 872 | } 873 | 874 | .Mahich123-button-3:hover { 875 | box-shadow: 0 4px #323232; 876 | top: 2px; 877 | } 878 | 879 | .Mahich123-button-4 { 880 | padding: 1rem 2rem; 881 | background: transparent; 882 | border: 3px solid #5f6f94; 883 | color: #fff; 884 | transition: 0.3s; 885 | } 886 | 887 | .Mahich123-button-4:hover { 888 | animation: Mahich123-button-4-pulse 1s infinite; 889 | transition: 0.3s; 890 | } 891 | 892 | @keyframes Mahich123-button-4-pulse { 893 | 0% { 894 | transform: scale(1); 895 | } 896 | 897 | 70% { 898 | transform: scale(0.9); 899 | } 900 | 901 | 100% { 902 | transform: scale(1); 903 | } 904 | } 905 | 906 | .AjayMaheshwari23-button-1 { 907 | display: flex; 908 | background-image: url(https://images.unsplash.com/photo-1566150783936-23096928b65b?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxleHBsb3JlLWZlZWR8MTF8fHxlbnwwfHx8fA%3D%3D&auto=format&fit=crop&w=1296&q=60); 909 | justify-content: center; 910 | margin: 60px auto; 911 | border-radius: 20px; 912 | padding: 10px; 913 | font-family: Georgia, 'Times New Roman', Times, serif; 914 | } 915 | 916 | @keyframes star { 917 | 0% { 918 | border-top: 4px solid white; 919 | } 920 | 921 | 25% { 922 | border-right: 4px solid white; 923 | } 924 | 925 | 50% { 926 | border-bottom: 4px solid white; 927 | } 928 | 929 | 100% { 930 | border-left: 4px solid white; 931 | } 932 | } 933 | 934 | .AjayMaheshwari23-button-1 :hover { 935 | padding: 10px; 936 | font-family: Georgia, 'Times New Roman', Times, serif; 937 | border-radius: 20px; 938 | animation: star 1s infinite; 939 | } 940 | 941 | .mjmanas54-button-1 { 942 | padding: 20px; 943 | border: solid green; 944 | background-color: black; 945 | border-radius: 8px; 946 | font-size: 130%; 947 | color: orange; 948 | font-weight: 600; 949 | transition: 0.5s; 950 | } 951 | 952 | .mjmanas54-button-1:hover { 953 | border: none; 954 | font-size: 200%; 955 | color: black; 956 | background: linear-gradient(orange, white, green); 957 | /* transition-duration: 0.5s; */ 958 | transition: 1s; 959 | padding: 35px; 960 | } 961 | 962 | /* CSS FOR BUTTON 9 ENDS */ 963 | 964 | /* ImOnlyYisus Btn CSS*/ 965 | .ImOnlyYisusContainer { 966 | position: relative; 967 | } 968 | 969 | .ImOnlyYisus-btn { 970 | padding: 6px; 971 | padding-bottom: 0.5em; 972 | padding-top: 0.5em; 973 | font-size: 20px; 974 | text-transform: uppercase; 975 | color: #fff; 976 | border: none; 977 | background-color: transparent; 978 | transition: 0.3s; 979 | } 980 | 981 | .ImOnlyYisus-btn::after { 982 | content: ''; 983 | background-color: white; 984 | position: absolute; 985 | bottom: 0; 986 | left: 0; 987 | width: 10%; 988 | height: 5%; 989 | transition: 0.3s; 990 | } 991 | 992 | .ImOnlyYisus-btn::before { 993 | content: ''; 994 | background-color: white; 995 | position: absolute; 996 | top: 0; 997 | right: 0; 998 | width: 10%; 999 | height: 5%; 1000 | transition: 0.3s; 1001 | } 1002 | 1003 | .ImOnlyYisus-btn:hover { 1004 | text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #e60073, 1005 | 0 0 40px #e60073, 0 0 50px #e60073, 0 0 60px #e60073, 0 0 70px #e60073; 1006 | } 1007 | 1008 | .ImOnlyYisus-btn:hover::after { 1009 | width: 100%; 1010 | } 1011 | 1012 | .ImOnlyYisus-btn:hover::before { 1013 | width: 100%; 1014 | } 1015 | 1016 | /*ImOnlyYisus Btn CSS ENDS*/ 1017 | 1018 | /* raulwwq0 btn start */ 1019 | .raulwwq0-button-1 { 1020 | cursor: pointer; 1021 | background: transparent; 1022 | position: relative; 1023 | display: inline-block; 1024 | padding: 15px 30px; 1025 | outline: none; 1026 | border: 2px solid #7300ff; 1027 | margin: 40px; 1028 | width: 150px; 1029 | height: 60px; 1030 | text-transform: uppercase; 1031 | font-weight: 900; 1032 | text-decoration: none; 1033 | letter-spacing: 2px; 1034 | color: #fff; 1035 | -webkit-box-reflect: below 0px linear-gradient(transparent, #0002); 1036 | transition: 0.45s; 1037 | transition-delay: 0s; 1038 | } 1039 | 1040 | .raulwwq0-button-1:hover { 1041 | transition-delay: 0.5s; 1042 | color: #fff; 1043 | box-shadow: 0 0 10px #7300ff, 0 0 20px #7300ff, 0 0 40px #7300ff, 1044 | 0 0 80px #7300ff, 0 0 100px #7300ff; 1045 | } 1046 | 1047 | .raulwwq0-button-1 span { 1048 | position: relative; 1049 | z-index: 100; 1050 | } 1051 | 1052 | .raulwwq0-button-1::before { 1053 | content: ''; 1054 | position: absolute; 1055 | left: -20px; 1056 | top: 50%; 1057 | transform: translateY(-50%); 1058 | width: 20px; 1059 | height: 2px; 1060 | background: #7300ff; 1061 | box-shadow: 5px -8px 0 #7300ff, 5px 8px 0 #7300ff; 1062 | transition: width 0.5s, left 0.5s, height 0.5s, box-shadow 0.5s; 1063 | transition-delay: 0.5s, 0.5s, 0s, 0s; 1064 | } 1065 | 1066 | .raulwwq0-button-1:hover::before { 1067 | width: 60%; 1068 | height: 100%; 1069 | left: -2px; 1070 | box-shadow: 5px 0 0 #7300ff, 5px 0 0 #7300ff; 1071 | transition-delay: 0s, 0s, 0.5s, 0.5s; 1072 | } 1073 | 1074 | .raulwwq0-button-1::after { 1075 | content: ''; 1076 | position: absolute; 1077 | right: -20px; 1078 | top: 50%; 1079 | transform: translateY(-50%); 1080 | width: 20px; 1081 | height: 2px; 1082 | background: #7300ff; 1083 | box-shadow: -5px -8px 0 #7300ff, -5px 8px 0 #7300ff; 1084 | transition: width 0.5s, right 0.5s, height 0.5s, box-shadow 0.5s; 1085 | transition-delay: 0.5s, 0.5s, 0s, 0s; 1086 | } 1087 | 1088 | .raulwwq0-button-1:hover::after { 1089 | width: 60%; 1090 | height: 102%; 1091 | right: -2px; 1092 | box-shadow: -5px 0 0 #7300ff, -5px 0 0 #7300ff; 1093 | transition-delay: 0s, 0s, 0.5s, 0.5s; 1094 | } 1095 | 1096 | /* raulwwq0 btn end */ 1097 | 1098 | .Srishti-btn-1 { 1099 | font-size: 16px; 1100 | font-weight: 200; 1101 | letter-spacing: 1px; 1102 | padding: 13px 20px 13px; 1103 | outline: 0; 1104 | border: 1px solid rgb(255, 255, 255); 1105 | cursor: pointer; 1106 | position: relative; 1107 | background-color: rgba(0, 0, 0, 0); 1108 | user-select: none; 1109 | -webkit-user-select: none; 1110 | touch-action: manipulation; 1111 | color: white; 1112 | box-shadow: inset 0 0 20px rgba(255, 255, 255, 0); 1113 | } 1114 | 1115 | .Srishti-btn-1:after { 1116 | content: ''; 1117 | background-color: #343432; 1118 | width: 100%; 1119 | z-index: -1; 1120 | position: absolute; 1121 | height: 100%; 1122 | top: 7px; 1123 | left: 7px; 1124 | transition: 0.2s; 1125 | } 1126 | 1127 | .Srishti-btn-1:hover:after { 1128 | top: 0px; 1129 | left: 0px; 1130 | box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.5), 1131 | 0 0 20px rgba(255, 255, 255, 0.2); 1132 | text-shadow: 1px 1px 2px #427388; 1133 | } 1134 | 1135 | @media (min-width: 768px) { 1136 | .Srishti-btn-1 { 1137 | padding: 13px 50px 13px; 1138 | } 1139 | } 1140 | 1141 | /* Ola's btn start */ 1142 | .Olamilekan-button-1 { 1143 | background-color: #333333; 1144 | color: #fff; 1145 | border: none; 1146 | padding: 1em 2.5em; 1147 | position: relative; 1148 | cursor: pointer; 1149 | font-size: 1.2rem; 1150 | font-weight: 600; 1151 | } 1152 | 1153 | .Olamilekan-button-1::before { 1154 | content: 'Hover me'; 1155 | display: grid; 1156 | place-items: center; 1157 | color: #333333; 1158 | position: absolute; 1159 | inset: 0; 1160 | background-color: cyan; 1161 | font-family: inherit; 1162 | clip-path: circle(50% at -100% 0); 1163 | transition: clip-path 400ms linear; 1164 | font-size: 1.2rem; 1165 | font-weight: 600; 1166 | } 1167 | 1168 | .Olamilekan-button-1:hover::before { 1169 | clip-path: circle(200% at 0 0); 1170 | } 1171 | 1172 | /* Ola's btn end */ 1173 | 1174 | /* cyphers btn start */ 1175 | .cypher-btn-1 { 1176 | color: #fff; 1177 | font-size: 1.2rem; 1178 | padding: 1em 2.5em; 1179 | background-color: #2874a6; 1180 | cursor: pointer; 1181 | position: relative; 1182 | border: none; 1183 | } 1184 | 1185 | .cypher-btn-1::before { 1186 | content: ''; 1187 | position: absolute; 1188 | left: -10px; 1189 | top: -10px; 1190 | width: 40px; 1191 | height: 40px; 1192 | /* background: #2e86c1; 1193 | border: 5px solid #2e86c1; */ 1194 | border-top: 5px solid #2e86c1; 1195 | border-left: 5px solid #2e86c1; 1196 | transition: all 0.4s; 1197 | } 1198 | 1199 | .cypher-btn-1::after { 1200 | content: ''; 1201 | position: absolute; 1202 | bottom: -10px; 1203 | right: -10px; 1204 | width: 40px; 1205 | height: 40px; 1206 | /* background: #2e86c1; 1207 | border: 5px solid #2e86c1; */ 1208 | border-bottom: 5px solid #2e86c1; 1209 | border-right: 5px solid #2e86c1; 1210 | transition: all 0.4s; 1211 | } 1212 | 1213 | .cypher-btn-1:hover:before, 1214 | .cypher-btn-1:hover:after { 1215 | width: 100%; 1216 | height: 100%; 1217 | } 1218 | 1219 | /* cyphers btn end */ 1220 | 1221 | /* *Swaroop btn start */ 1222 | .noob-button-1-span { 1223 | position: relative; 1224 | padding: 4rem 8rem; 1225 | overflow: hidden; 1226 | border-radius: 0.5rem; 1227 | } 1228 | 1229 | .noob-button-1-img { 1230 | position: absolute; 1231 | top: 50%; 1232 | left: 50%; 1233 | transform: translateX(-50%) translateY(-50%); 1234 | /* transform: translateY(-50%); */ 1235 | height: 150%; 1236 | width: 150%; 1237 | object-position: center; 1238 | object-fit: cover; 1239 | z-index: 10; 1240 | border-radius: 0.5rem; 1241 | } 1242 | 1243 | .noob-button-1 { 1244 | height: 100%; 1245 | width: 100%; 1246 | position: absolute; 1247 | top: 50%; 1248 | left: 50%; 1249 | transform: translateX(-50%) translateY(-50%); 1250 | z-index: 20; 1251 | background: transparent; 1252 | border: 0px; 1253 | color: white; 1254 | font-size: 16px; 1255 | border-radius: 0.5rem; 1256 | } 1257 | 1258 | .noob-button-1:hover { 1259 | border: 2px solid green; 1260 | } 1261 | 1262 | .noob-button-1:focus { 1263 | border: 4px solid green; 1264 | } 1265 | 1266 | /* *Swaroop btn end */ 1267 | 1268 | /* blurry btn start */ 1269 | .blurry-brush-button-1:hover, 1270 | .blurry-brush-button-1:focus { 1271 | box-shadow: 0 0.5em 0.5em -0.4em #e24091; 1272 | -webkit-transform: translateY(-0.25em); 1273 | transform: translateY(-0.25em); 1274 | border-color: #e24091; 1275 | color: #fff; 1276 | border-radius: 50px; 1277 | } 1278 | 1279 | .blurry-brush-button-1 { 1280 | -webkit-transition: 0.25s; 1281 | transition: 0.25s; 1282 | background: none; 1283 | border: 2px solid; 1284 | font: inherit; 1285 | line-height: 1; 1286 | margin: 0.5em; 1287 | padding: 1em 2em; 1288 | color: #e24091; 1289 | border-radius: 25px; 1290 | } 1291 | 1292 | /* blurry btn end */ 1293 | 1294 | .harsh-btn-1 { 1295 | border-radius: 4px; 1296 | background-color: #f4511e; 1297 | border: none; 1298 | color: #ffffff; 1299 | text-align: center; 1300 | font-size: 28px; 1301 | padding: 20px; 1302 | width: 200px; 1303 | transition: all 0.5s; 1304 | cursor: pointer; 1305 | margin: 5px; 1306 | } 1307 | 1308 | .harsh-btn-1 span { 1309 | cursor: pointer; 1310 | display: inline-block; 1311 | position: relative; 1312 | transition: 0.5s; 1313 | } 1314 | 1315 | .harsh-btn-1 span:after { 1316 | content: '\00bb'; 1317 | position: absolute; 1318 | opacity: 0; 1319 | top: 0; 1320 | right: -20px; 1321 | transition: 0.5s; 1322 | } 1323 | 1324 | .harsh-btn-1:hover span { 1325 | padding-right: 25px; 1326 | } 1327 | 1328 | .harsh-btn-1:hover span:after { 1329 | opacity: 1; 1330 | right: 0; 1331 | } 1332 | 1333 | .ankush-btn-1 { 1334 | width: 170px; 1335 | padding-top: 30px; 1336 | padding-bottom: 30px; 1337 | text-align: center; 1338 | color: #000; 1339 | text-transform: uppercase; 1340 | font-weight: 600; 1341 | margin-left: 30px; 1342 | margin-bottom: 30px; 1343 | cursor: pointer; 1344 | display: inline-block; 1345 | background-color: transparent; 1346 | border: 3px solid #00d7c3; 1347 | border-radius: 50px; 1348 | transition: all 0.15s ease-in-out; 1349 | color: black; 1350 | background-image: linear-gradient(30deg, #00d7c3 50%, transparent 50%); 1351 | background-size: 500px; 1352 | background-repeat: no-repeat; 1353 | background-position: 0%; 1354 | } 1355 | 1356 | .ankush-btn-1:hover { 1357 | color: white; 1358 | background-color: black; 1359 | box-shadow: 0 0 10px 0 #00d7c3 inset, 0 0 20px 2px #00d7c3; 1360 | border: 3px solid #00d7c3; 1361 | animation: ankush-btn-1-pulse 1s infinite; 1362 | transition: 0.3s; 1363 | background-position: 100%; 1364 | } 1365 | 1366 | @keyframes ankush-btn-1-pulse { 1367 | 0% { 1368 | transform: scale(1); 1369 | } 1370 | 1371 | 70% { 1372 | transform: scale(0.9); 1373 | } 1374 | 1375 | 100% { 1376 | transform: scale(1); 1377 | } 1378 | } 1379 | 1380 | /* davidbru-btn-1 or name of button start */ 1381 | .davidbru-btn-1 { 1382 | position: relative; 1383 | width: 180px; 1384 | height: 60px; 1385 | cursor: pointer; 1386 | background: transparent; 1387 | border: 1px solid #adff91; 1388 | box-sizing: border-box; 1389 | outline: none; 1390 | transition: 20s ease-in-out; 1391 | } 1392 | 1393 | .davidbru-btn-1 svg { 1394 | position: absolute; 1395 | left: -1px; 1396 | top: -1px; 1397 | fill: none; 1398 | stroke: #fff; 1399 | stroke-dasharray: 150 480; 1400 | stroke-dashoffset: 150; 1401 | transition: 20s ease-in-out; 1402 | } 1403 | 1404 | .davidbru-btn-1:hover { 1405 | transition: 1s ease-in-out; 1406 | background: #4fda62; 1407 | } 1408 | 1409 | .davidbru-btn-1:hover svg { 1410 | stroke-dashoffset: -480; 1411 | } 1412 | 1413 | .davidbru-btn-1 span { 1414 | color: white; 1415 | } 1416 | 1417 | /* davidbru-btn-1 or name of button end */ 1418 | 1419 | /* Mayank1170-button-1 btn start */ 1420 | 1421 | .Mayank1170-button-1:hover { 1422 | background-position: 100% 0; 1423 | -moz-transition: all 0.4s ease-in-out; 1424 | -o-transition: all 0.4s ease-in-out; 1425 | -webkit-transition: all 0.4s ease-in-out; 1426 | transition: all 0.4s ease-in-out; 1427 | } 1428 | 1429 | .Mayank1170-button-1 { 1430 | width: 200px; 1431 | font-size: 16px; 1432 | font-weight: 600; 1433 | color: #fff; 1434 | cursor: pointer; 1435 | margin: 20px; 1436 | height: 55px; 1437 | text-align: center; 1438 | border: none; 1439 | background-size: 300% 100%; 1440 | border-radius: 50px; 1441 | -o-transition: all 0.4s ease-in-out; 1442 | -webkit-transition: all 0.4s ease-in-out; 1443 | transition: all 0.4s ease-in-out; 1444 | background-image: linear-gradient(to right, 1445 | #ed6ea0, 1446 | #ec8c69, 1447 | #f7186a, 1448 | #fbb03b); 1449 | box-shadow: 0 4px 15px 0 rgba(236, 116, 149, 0.75); 1450 | } 1451 | 1452 | /* Mayank1170-button-1 btn end */ 1453 | 1454 | /* ANIKET btn start */ 1455 | 1456 | .aniket-btn-1 { 1457 | list-style-type: none; 1458 | margin: 0; 1459 | padding: 0; 1460 | } 1461 | 1462 | .aniket-btn-1 { 1463 | color: #00ddeb; 1464 | border-color: #00ddeb; 1465 | border-top: 5px; 1466 | border-left: 5px; 1467 | font-size: 16px; 1468 | border-radius: 40px; 1469 | width: 12em; 1470 | height: 4em; 1471 | text-transform: uppercase; 1472 | font-weight: bold; 1473 | font-family: sans-serif; 1474 | letter-spacing: 0.1em; 1475 | text-align: center; 1476 | line-height: 3em; 1477 | position: relative; 1478 | overflow: hidden; 1479 | z-index: 1; 1480 | transition: 0.5s; 1481 | margin-left: 1em; 1482 | background-color: #000; 1483 | } 1484 | 1485 | .aniket-btn-1:hover { 1486 | box-shadow: 0 0.3rem 0.3rem rgba(0, 255, 255, 0.529); 1487 | color: white; 1488 | border-width: 5px solid; 1489 | margin-bottom: 20px; 1490 | transition: 0.5s ease; 1491 | /* background: transparent; */ 1492 | } 1493 | 1494 | /* ANIKET btn end */ 1495 | 1496 | /* Harsh Jain's button starts*/ 1497 | .harsh-jain-button-1 { 1498 | background-color: #343a40; 1499 | height: 20%; 1500 | width: 55%; 1501 | border-radius: 19px; 1502 | color: #fff; 1503 | cursor: pointer; 1504 | padding: 8px 16px; 1505 | } 1506 | 1507 | .harsh-jain-button-1 span { 1508 | font-size: 20px; 1509 | } 1510 | 1511 | .harsh-jain-button-1:hover { 1512 | background-image: linear-gradient(to right, 1513 | #e7487d, 1514 | #e7487d 16.65%, 1515 | #f6c31d 16.65%, 1516 | #f6c31d 33.3%, 1517 | #0bffb6 66.6%, 1518 | #0bffb6 83.25%, 1519 | #9e40eb 83.25%, 1520 | #9e40eb 100%, 1521 | #e7487d 100%); 1522 | animation: bgmove 2s linear infinite; 1523 | color: black; 1524 | } 1525 | 1526 | @keyframes bgmove { 1527 | to { 1528 | background-position: 20vw; 1529 | } 1530 | } 1531 | 1532 | /* Harsh Jain's button starts*/ 1533 | 1534 | /* Harsh Jain's button 2 starts*/ 1535 | 1536 | .harsh-jain-button-2:hover { 1537 | border: none; 1538 | transform: translatey(1em); 1539 | cursor: pointer; 1540 | } 1541 | 1542 | .harsh-jain-button-2 { 1543 | position: relative; 1544 | height: 50em; 1545 | width: 50em; 1546 | background: #93ccb3; 1547 | border: none; 1548 | border-radius: 10%; 1549 | border-bottom: 4em solid #254d4d; 1550 | display: flex; 1551 | flex-direction: column; 1552 | justify-content: center; 1553 | align-items: center; 1554 | font-size: 3px; 1555 | } 1556 | 1557 | .harsh-jain-button-2:after { 1558 | content: ''; 1559 | position: absolute; 1560 | background: white; 1561 | height: 14em; 1562 | width: 10em; 1563 | border-radius: 80% 80% 40% 40%; 1564 | 1565 | top: 18em; 1566 | left: 9em; 1567 | 1568 | box-shadow: 23em 0 white; 1569 | } 1570 | 1571 | .harsh-jain-button-2:before { 1572 | content: ''; 1573 | position: absolute; 1574 | background: white; 1575 | height: 5em; 1576 | width: 3em; 1577 | border-radius: 50%; 1578 | z-index: 2; 1579 | top: 21em; 1580 | left: 14em; 1581 | box-shadow: 23em 0 white; 1582 | } 1583 | 1584 | .eyeballs { 1585 | position: relative; 1586 | background: #ff6666; 1587 | height: 9em; 1588 | width: 6em; 1589 | border-radius: 60% 60% 90% 90%; 1590 | 1591 | border-bottom: 2em solid red; 1592 | border-left: 1.8em solid #e60000; 1593 | border-right: 1.8em solid #e60000; 1594 | 1595 | z-index: 1; 1596 | left: -10.4em; 1597 | top: 7.5em; 1598 | } 1599 | 1600 | .eyeballs::after { 1601 | content: ''; 1602 | position: absolute; 1603 | background: #ff6666; 1604 | height: 7em; 1605 | width: 2.5em; 1606 | border-radius: 60% 60% 90% 90%; 1607 | 1608 | border-bottom: 2em solid red; 1609 | border-left: 1.8em solid #e60000; 1610 | border-right: 1.8em solid #e60000; 1611 | 1612 | z-index: 1; 1613 | left: 21.2em; 1614 | } 1615 | 1616 | .nose { 1617 | position: relative; 1618 | background: #142d24; 1619 | height: 3em; 1620 | width: 1em; 1621 | border-radius: 50%; 1622 | top: 6.5em; 1623 | left: -3.4em; 1624 | transform: rotate(-20deg); 1625 | } 1626 | 1627 | .nose::after { 1628 | content: ''; 1629 | position: absolute; 1630 | background: #142d24; 1631 | height: 3em; 1632 | width: 1em; 1633 | border-radius: 50%; 1634 | transform: rotate(40deg); 1635 | 1636 | left: 6em; 1637 | top: 2.25em; 1638 | } 1639 | 1640 | #mouth { 1641 | position: relative; 1642 | z-index: 2; 1643 | } 1644 | 1645 | .mouth-brace:before, 1646 | .mouth-brace:after { 1647 | content: ''; 1648 | width: 30%; 1649 | height: 1.3em; 1650 | position: absolute; 1651 | display: block; 1652 | z-index: 2; 1653 | } 1654 | 1655 | #mouth-left:before { 1656 | border-bottom: 0.7em solid #142d24; 1657 | border-bottom-left-radius: 20px; 1658 | margin-left: -40%; 1659 | margin-top: 20.5em; 1660 | z-index: 2; 1661 | } 1662 | 1663 | #mouth-left:after { 1664 | border-top: 0.7em solid #142d24; 1665 | border-top-right-radius: 20px; 1666 | margin-left: -30%; 1667 | margin-top: 21.9em; 1668 | } 1669 | 1670 | #mouth-right:before { 1671 | border-top: 0.7em solid #142d24; 1672 | border-top-left-radius: 20px; 1673 | margin-left: 0%; 1674 | margin-top: 21.9em; 1675 | } 1676 | 1677 | #mouth-right:after { 1678 | border-bottom: 0.7em solid #142d24; 1679 | border-bottom-right-radius: 20px; 1680 | margin-left: 10%; 1681 | margin-top: 20.5em; 1682 | } 1683 | 1684 | .eyebrow { 1685 | position: relative; 1686 | background: #33715a; 1687 | height: 3em; 1688 | width: 2.5em; 1689 | border-radius: 30% 40% 60% 20%; 1690 | top: -11.5em; 1691 | left: -6.4em; 1692 | transform: rotate(-20deg); 1693 | } 1694 | 1695 | .eyebrow::after { 1696 | content: ''; 1697 | position: absolute; 1698 | background: #33715a; 1699 | height: 15em; 1700 | width: 10em; 1701 | border-radius: 30% 50% 40% 60%; 1702 | transform: rotate(40deg); 1703 | 1704 | left: 10em; 1705 | top: -5em; 1706 | } 1707 | 1708 | .eyebrow::before { 1709 | content: ''; 1710 | position: absolute; 1711 | background: #33715a; 1712 | height: 7em; 1713 | width: 5em; 1714 | border-radius: 200% 30% 50% 60%; 1715 | transform: rotate(40deg); 1716 | 1717 | left: 4em; 1718 | top: -8em; 1719 | } 1720 | 1721 | .bulba:hover { 1722 | border: none; 1723 | transform: translatey(1em); 1724 | cursor: pointer; 1725 | } 1726 | 1727 | /* Harsh Jain's button 2 ends*/ 1728 | 1729 | /* Nitish btn start */ 1730 | .Nitish-btn-26 { 1731 | display: inline-block; 1732 | background-color: #7b38d8; 1733 | border-radius: 10px; 1734 | border: 4px double #cccccc; 1735 | color: #eeeeee; 1736 | text-align: center; 1737 | font-size: 28px; 1738 | padding: 20px; 1739 | width: 200px; 1740 | transition: all 0.5s; 1741 | cursor: pointer; 1742 | margin: 5px; 1743 | } 1744 | 1745 | .Nitish-btn-26 span { 1746 | cursor: pointer; 1747 | display: inline-block; 1748 | position: relative; 1749 | transition: 0.5s; 1750 | } 1751 | 1752 | .Nitish-btn-26 span:after { 1753 | content: '\00bb'; 1754 | position: absolute; 1755 | opacity: 0; 1756 | top: 0; 1757 | right: -20px; 1758 | transition: 0.5s; 1759 | } 1760 | 1761 | .Nitish-btn-26:hover { 1762 | background-color: #f7c2f9; 1763 | } 1764 | 1765 | .Nitish-btn-26:hover span { 1766 | padding-right: 25px; 1767 | } 1768 | 1769 | .Nitish-btn-26:hover span:after { 1770 | opacity: 1; 1771 | right: 0; 1772 | } 1773 | 1774 | /*Nitish's btn end */ 1775 | 1776 | /*Thiago's btn start*/ 1777 | .tjbass2021-button-1 { 1778 | background-color: #b4befe; 1779 | border: none; 1780 | border-radius: 5px; 1781 | padding: 20px 30px; 1782 | transition: 0.5s; 1783 | cursor: pointer; 1784 | font-family: JetBrains, monospace; 1785 | } 1786 | 1787 | .tjbass2021-button-1:hover { 1788 | background-color: #94e2d5; 1789 | transition: 0.5s; 1790 | -webkit-box-shadow: rgb(40, 159, 237) 5px 5px 0px 0px, 1791 | rgb(95, 184, 255) 10px 10px 0px 0px, 1792 | rgb(161, 216, 255) 15px 15px 0px 0px, 1793 | rgb(202, 230, 255) 20px 20px 0px 0px, 1794 | rgb(225, 238, 255) 25px 25px 0px 0px, 5px 5px 15px 5px rgba(0, 0, 0, 0); 1795 | box-shadow: rgb(40, 159, 237) 5px 5px 0px 0px, 1796 | rgb(95, 184, 255) 10px 10px 0px 0px, 1797 | rgb(161, 216, 255) 15px 15px 0px 0px, 1798 | rgb(202, 230, 255) 20px 20px 0px 0px, 1799 | rgb(225, 238, 255) 25px 25px 0px 0px, 5px 5px 15px 5px rgba(0, 0, 0, 0); 1800 | } 1801 | 1802 | /*Thiago's btn start*/ 1803 | 1804 | /* cyphers 2nd btn start */ 1805 | .cypher-2-btn { 1806 | font-size: 1.2rem; 1807 | padding: 1em 2.5em; 1808 | background-color: #2874a6; 1809 | cursor: pointer; 1810 | position: relative; 1811 | border: none; 1812 | background-color: #343a40; 1813 | border-radius: 4px; 1814 | color: #fff; 1815 | padding: 8px 16px; 1816 | } 1817 | 1818 | .cypher-2-btn:hover { 1819 | background-image: linear-gradient(90deg, 1820 | #00c0ff 0%, 1821 | #ffcf00 49%, 1822 | #fc4f4f 80%, 1823 | #00c0ff 100%); 1824 | animation: slidebg 5s linear infinite; 1825 | } 1826 | 1827 | /* cypherrs 2nd bt end */ 1828 | 1829 | /* kkartik07's 1st btn start */ 1830 | .kkartik07-btn-1 { 1831 | padding: 18px 32px; 1832 | font-size: 30px; 1833 | border: none; 1834 | outline: none; 1835 | font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 1836 | 'Lucida Sans', Arial, sans-serif; 1837 | cursor: pointer; 1838 | margin: 8px 15px; 1839 | transition: 0.2s ease; 1840 | background: #003877d5; 1841 | color: rgba(255, 255, 255, 0.756); 1842 | position: relative; 1843 | overflow: hidden; 1844 | box-shadow: rgba(110, 110, 119, 0.452) 0px 8px 30px 0px; 1845 | } 1846 | 1847 | .kkartik07-btn-1::before { 1848 | width: 200%; 1849 | height: 200%; 1850 | content: ''; 1851 | transform: rotate(-45deg); 1852 | position: absolute; 1853 | top: -10%; 1854 | left: -180%; 1855 | background: rgba(119, 129, 238, 0.2); 1856 | transition: 0.3s ease-in-out; 1857 | } 1858 | 1859 | .kkartik07-btn-1:hover::before { 1860 | left: 55%; 1861 | } 1862 | 1863 | /* kkartik07's 1st btn end */ 1864 | 1865 | /* Deepak Kumar btn start */ 1866 | .DeepakKumar-button-31 { 1867 | position: absolute; 1868 | transform: translate(-50%, -50%); 1869 | padding: 1em 1em; 1870 | color: white; 1871 | border: none; 1872 | background: none; 1873 | top: 50%; 1874 | left: 50%; 1875 | font-size: 20px; 1876 | } 1877 | 1878 | .DeepakKumar-button-31:before { 1879 | content: ''; 1880 | position: absolute; 1881 | top: 0; 1882 | left: 0; 1883 | width: 100%; 1884 | height: 100%; 1885 | background: #00a7fb; 1886 | z-index: -1; 1887 | transition: transform 0.6s; 1888 | transform-origin: bottom right; 1889 | transform: scale(0); 1890 | } 1891 | 1892 | .DeepakKumar-button-31:hover:before { 1893 | transition: transform 0.5s; 1894 | transform-origin: top left; 1895 | transform: scale(1); 1896 | } 1897 | 1898 | .DeepakKumar-button-31:after { 1899 | content: ''; 1900 | position: absolute; 1901 | top: 0; 1902 | left: 0; 1903 | width: 100%; 1904 | height: 100%; 1905 | background: transparent; 1906 | border: 2px solid #fff; 1907 | box-sizing: border - box; 1908 | z-index: -1; 1909 | transition: transform 0.5s; 1910 | transform-origin: top left; 1911 | transform: scale(1); 1912 | } 1913 | 1914 | .DeepakKumar-button-31:hover:after { 1915 | transition: transform 0.6s; 1916 | transform-origin: bottom right; 1917 | transform: scale(0); 1918 | } 1919 | 1920 | /* Deepak Kumar btn end */ 1921 | 1922 | /* Shridhar's btn start */ 1923 | .shridhar-button-1 { 1924 | font-size: 1.2rem; 1925 | cursor: pointer; 1926 | position: relative; 1927 | display: flex; 1928 | transition: 1s; 1929 | } 1930 | 1931 | .shridhar-button-1::before { 1932 | content: 'Follow'; 1933 | display: flex; 1934 | justify-content: center; 1935 | align-items: center; 1936 | position: absolute; 1937 | top: 0px; 1938 | left: 0px; 1939 | width: 100%; 1940 | height: 100%; 1941 | z-index: 10; 1942 | background: rgba(40, 40, 40, 1); 1943 | transition: 0.2s; 1944 | border-radius: 3px; 1945 | } 1946 | 1947 | .shridhar-button-1:hover::before { 1948 | opacity: 0; 1949 | pointer-events: none; 1950 | } 1951 | 1952 | .shridhar-button-1>button { 1953 | width: 50%; 1954 | padding: 1rem 1.5rem; 1955 | border: 0px; 1956 | color: white; 1957 | font-size: 1rem; 1958 | font-weight: 700; 1959 | cursor: pointer; 1960 | } 1961 | 1962 | .shridhar-button-1>button:hover { 1963 | filter: brightness(200%); 1964 | } 1965 | 1966 | .shridhar-button-1-youtube { 1967 | background: rgb(255, 0, 0); 1968 | border-radius: 5px 0px 0px 5px; 1969 | } 1970 | 1971 | .shridhar-button-1-twitter { 1972 | background: rgb(29, 161, 242); 1973 | border-radius: 0px 5px 5px 0px; 1974 | } 1975 | 1976 | /* Shridhar's btn end */ 1977 | 1978 | /* haldaranup 1st button starts here */ 1979 | .haldaranup-btn-1 { 1980 | font-size: 1.25rem; 1981 | padding: 16px 36px; 1982 | background-color: rgb(117, 0, 172); 1983 | border: none; 1984 | border-radius: 12px; 1985 | cursor: pointer; 1986 | color: #ffffff; 1987 | transition: all 500ms; 1988 | } 1989 | 1990 | .haldaranup-btn-1:hover { 1991 | background-color: rgb(255, 238, 0); 1992 | color: #000757; 1993 | } 1994 | 1995 | /* haldaranup 1st button ends here */ 1996 | /* Nitish-btn-2 start */ 1997 | .Nitish-btn-2 { 1998 | display: inline-block; 1999 | background-color: #7b38d8; 2000 | border-radius: 50px; 2001 | border: 4px solid #cccccc; 2002 | color: #eeeeee; 2003 | text-align: center; 2004 | font-size: 28px; 2005 | padding: 10px; 2006 | width: 150px; 2007 | cursor: pointer; 2008 | margin: 5px; 2009 | } 2010 | 2011 | .Nitish-btn-2:hover { 2012 | border: 4px solid #ea972a; 2013 | background-color: #90d838; 2014 | color: #000000; 2015 | border-radius: 0%; 2016 | transition: all 0.5s; 2017 | } 2018 | 2019 | /* Nitish-btn-2 end */ 2020 | 2021 | /* Shani button starts */ 2022 | 2023 | .shiningshani-button-1 { 2024 | width: 60%; 2025 | height: 20%; 2026 | color: white; 2027 | background: transparent; 2028 | position: relative; 2029 | transition: ease-out 0.3s; 2030 | border: 1px solid #43fbf2; 2031 | border-radius: 3px; 2032 | font-size: 15px; 2033 | outline: none; 2034 | z-index: 1; 2035 | } 2036 | 2037 | .shiningshani-button-1:hover { 2038 | font-size: large; 2039 | color: rgb(54, 20, 20); 2040 | font-weight: 300; 2041 | cursor: pointer; 2042 | } 2043 | 2044 | .shiningshani-button-1::before { 2045 | transition: 0.3s all ease; 2046 | position: absolute; 2047 | top: 0; 2048 | bottom: 0; 2049 | right: 50%; 2050 | left: 50%; 2051 | content: ''; 2052 | background-color: #43fbf2; 2053 | } 2054 | 2055 | .shiningshani-button-1:hover::before { 2056 | transition: 0.4s all ease; 2057 | left: 0; 2058 | right: 0; 2059 | opacity: 1; 2060 | z-index: -1; 2061 | } 2062 | 2063 | /* Sumit1 btn start */ 2064 | .Sumit-14Singh-btn-1 { 2065 | background-color: #26d023; 2066 | border: 3px solid red; 2067 | width: 200px; 2068 | padding: 20px; 2069 | font-size: 30px; 2070 | } 2071 | 2072 | .Sumit-14Singh-btn-1:hover { 2073 | background-color: yellow; 2074 | transform: all 2s; 2075 | } 2076 | 2077 | /* Sumit2 btn end */ 2078 | 2079 | /* Sumit-14Singh-btn-2 start */ 2080 | .Sumit-14Singh-btn-2 { 2081 | border: 3px solid rgb(66, 16, 147); 2082 | width: 250px; 2083 | padding: 30px; 2084 | border-radius: 100%; 2085 | background-color: red; 2086 | font-size: 30px; 2087 | } 2088 | 2089 | .Sumit-14Singh-btn-2:hover { 2090 | background-color: gray; 2091 | } 2092 | 2093 | /* Sumit-14Singh-btn-2 end */ 2094 | 2095 | /* Sumit-14Singh-btn-3 start */ 2096 | .Sumit-14Singh-btn-3 { 2097 | /* text-size-adjust: 20px; */ 2098 | background-color: #00c0ff; 2099 | border: 3px solid rgb(80, 236, 29); 2100 | width: 170px; 2101 | padding: 20px; 2102 | border-radius: 70px; 2103 | font-size: 20px; 2104 | } 2105 | 2106 | .Sumit-14Singh-btn-3:hover { 2107 | background-color: white; 2108 | } 2109 | 2110 | /* Sumit-14Singh-btn-3 end */ 2111 | 2112 | /* Dilshad360 Button start */ 2113 | .dilshad360-btn-1 { 2114 | display: block; 2115 | width: 150px; 2116 | height: 50px; 2117 | line-height: 40px; 2118 | font-size: 18px; 2119 | font-family: sans-serif; 2120 | text-decoration: none; 2121 | color: #333; 2122 | letter-spacing: 2px; 2123 | text-align: center; 2124 | position: relative; 2125 | transition: all 0.35s; 2126 | } 2127 | 2128 | .dilshad360-btn-1:after { 2129 | position: absolute; 2130 | content: ''; 2131 | top: 0; 2132 | left: 0; 2133 | width: 0; 2134 | height: 100%; 2135 | background: #0bceaf; 2136 | transition: all 0.35s; 2137 | } 2138 | 2139 | .dilshad360-btn-1 span { 2140 | position: relative; 2141 | z-index: 2; 2142 | } 2143 | 2144 | .dilshad360-btn-1:hover { 2145 | color: #ffff; 2146 | } 2147 | 2148 | .dilshad360-btn-1:hover:after { 2149 | width: 100%; 2150 | } 2151 | 2152 | /* Dilshad360 Button end */ 2153 | 2154 | /* Jasimrazi-btn-1 starts here */ 2155 | 2156 | .Jasimrazi-btn-1 { 2157 | font-size: 20px; 2158 | font-weight: 200; 2159 | letter-spacing: 1px; 2160 | padding: 13px 50px 13px; 2161 | outline: 0; 2162 | border: 1px solid rgb(255, 255, 255); 2163 | cursor: pointer; 2164 | position: relative; 2165 | color: white; 2166 | background-color: rgba(0, 0, 0, 0); 2167 | transition: 0.4s all ease; 2168 | } 2169 | 2170 | .Jasimrazi-btn-1:hover { 2171 | 2172 | background-color: #ffe54c; 2173 | top: -7px; 2174 | left: -7px; 2175 | transition: 0.4s all ease; 2176 | color: #000000; 2177 | border: 1px solid #000000; 2178 | } 2179 | 2180 | /* Jasimrazi-btn-1 ends here */ 2181 | 2182 | 2183 | /* cypher's btn-3 start */ 2184 | 2185 | .cypher-btn-3 { 2186 | font-family: Helvetica; 2187 | /* letter-spacing: 0.2em; */ 2188 | font-weight: 600; 2189 | font-size: 25px; 2190 | text-align: center; 2191 | color: #202125; 2192 | cursor: pointer; 2193 | /* max-width: 480px; */ 2194 | width: 59%; 2195 | height: 30%; 2196 | outline: 3px solid; 2197 | outline-color: rgba(71, 126, 232, 0.5); 2198 | outline-offset: 20px; 2199 | transition: all 200ms cubic-bezier(0.2, 0, 0, 0.8); 2200 | } 2201 | 2202 | .cypher-btn-3:hover { 2203 | color: rgba(71, 126, 232, 0.7); 2204 | outline-color: rgba(71, 126, 232, 0); 2205 | outline-offset: 300px; 2206 | } 2207 | 2208 | 2209 | 2210 | /* cypher's btn-3 end*/ 2211 | 2212 | /* Deepesh Sharma's button 1 starts*/ 2213 | .deepeshsharmaofficial-button-1 { 2214 | border: 1px solid #3498db; 2215 | background: none; 2216 | padding: 10px 40px; 2217 | font-size: 20px; 2218 | font-family: "montserrat"; 2219 | font-weight: bold; 2220 | cursor: pointer; 2221 | margin: 10px; 2222 | transition: 0.8s ease-out; 2223 | position: relative; 2224 | overflow: hidden; 2225 | color: #fff; 2226 | z-index: 1; 2227 | } 2228 | 2229 | .deepeshsharmaofficial-button-1:hover { 2230 | color: #3498db; 2231 | font-weight: bold; 2232 | } 2233 | 2234 | .deepeshsharmaofficial-button-1::before { 2235 | content: ""; 2236 | position: absolute; 2237 | left: 0; 2238 | width: 100%; 2239 | height: 0%; 2240 | background: #2498db; 2241 | z-index: -1; 2242 | transition: 0.8s; 2243 | top: 0; 2244 | border-radius: 0 0 50% 50%; 2245 | height: 180%; 2246 | } 2247 | 2248 | .deepeshsharmaofficial-button-1:hover::before { 2249 | height: 0%; 2250 | } 2251 | 2252 | /* Deepesh Sharma's button 1 ends*/ 2253 | /*Arvind0302 button start */ 2254 | .arvind0302-btn-1 { 2255 | position: relative; 2256 | text-align: center; 2257 | width: 200px; 2258 | padding: 20px; 2259 | font-size: 15px; 2260 | color: black; 2261 | font-family: poppins; 2262 | font-weight: 400; 2263 | border: 5px solid #15f4ee; 2264 | text-transform: uppercase; 2265 | letter-spacing: 15px; 2266 | cursor: pointer; 2267 | border-radius: 100px; 2268 | transition: 1.5s; 2269 | } 2270 | 2271 | .arvind0302-btn-1:hover { 2272 | box-shadow: 0 5px 50px 0 #15f4ee inset, 0 5px 50px 0 #15f4ee, 2273 | 0 5px 50px 0 #15f4ee inset, 0 5px 50px 0 #15f4ee; 2274 | text-shadow: 0 0 5px #15f4ee, 0 0 5px #15f4ee; 2275 | color: black; 2276 | } 2277 | 2278 | /*Arvind0302 button end */ 2279 | 2280 | 2281 | /* radzhiv's btn start*/ 2282 | .radzhiv-btn-1 { 2283 | padding: 10px; 2284 | font-size: 20px; 2285 | font-weight: bolder; 2286 | border-radius: 5px; 2287 | background-image: linear-gradient(to right, #3494E6, #ec6ead); 2288 | color: white; 2289 | } 2290 | 2291 | .radzhiv-btn-1:hover { 2292 | text-align: center; 2293 | color: #f35626; 2294 | background-image: -webkit-linear-gradient(92deg, #f35626, #feab3a); 2295 | background-clip: text; 2296 | -webkit-background-clip: text; 2297 | -webkit-text-fill-color: transparent; 2298 | animation: hue 10s infinite linear; 2299 | } 2300 | 2301 | @keyframes radzhiv25-button-hue { 2302 | from { 2303 | -webkit-filter: hue-rotate(0deg); 2304 | } 2305 | 2306 | to { 2307 | -webkit-filter: hue-rotate(-360deg); 2308 | } 2309 | } 2310 | 2311 | /*radzhiv's btn end*/ 2312 | 2313 | /* shivanshi btn start */ 2314 | .shivanshi-s-btn-1 { 2315 | box-sizing: border-box; 2316 | appearance: none; 2317 | background-color: transparent; 2318 | cursor: pointer; 2319 | font-size: 1rem; 2320 | margin: 20px; 2321 | padding: 1.2em 2.8em; 2322 | text-decoration: none; 2323 | font-family: 'Montserrat', sans-serif; 2324 | font-weight: 700; 2325 | border-color: #3330E4; 2326 | color: #67f878; 2327 | background-image: linear-gradient(to bottom, transparent 30%, #248f86 90%); 2328 | background-position: 0% 0%; 2329 | transition: background 15ms ease-in-out, color 150ms ease-in-out; 2330 | } 2331 | .shivanshi-s-btn-1:hover { 2332 | color: white; 2333 | background-position: 0 800%; 2334 | } 2335 | /* shivanshi btn end */ 2336 | 2337 | 2338 | /* avishaan24's btn start */ 2339 | 2340 | .avishaan24-btn-1{ 2341 | color: white; 2342 | padding: 15px 70px; 2343 | border: 2px solid white; 2344 | border-radius: 15px; 2345 | font-size: medium; 2346 | margin: auto; 2347 | background: transparent; 2348 | } 2349 | .avishaan24-btn-1:hover{ 2350 | cursor: pointer; 2351 | box-shadow: 0 0 1px 5px rgba(138, 59, 88, 0.4), 0 0 1px 10px rgba(138, 59, 88, 0.1), 0 0 1px 15px rgba(138, 59, 88, 0.1); 2352 | transform: rotate(360deg); 2353 | } 2354 | 2355 | .avishaan24-btn-1::after { 2356 | content: ''; 2357 | width: 30px; height: 30px; 2358 | border-radius: 100%; 2359 | border: 5px solid rgb(238, 236, 238); 2360 | position: absolute; 2361 | z-index: -1; 2362 | top: 50%; 2363 | left: 50%; 2364 | transform: translate(-50%, -50%); 2365 | animation: avishaan24-btn-1-oval 2s infinite; 2366 | } 2367 | @keyframes avishaan24-btn-1-oval { 2368 | 0% { 2369 | width: 30px; 2370 | height: 30px; 2371 | opacity: 1; 2372 | } 2373 | 100% { 2374 | width: 250px; 2375 | height: 150px; 2376 | opacity: 0; 2377 | } 2378 | } 2379 | 2380 | /* avishaan24's btn end */ 2381 | 2382 | /* Aditya's button starts */ 2383 | 2384 | .aditya-btn-1 { 2385 | width: 150px; 2386 | height: 50px; 2387 | color: white; 2388 | position: relative; 2389 | display: inline-block; 2390 | background: rgb(0, 68, 255); 2391 | border: none; 2392 | border-radius: 4px; 2393 | padding: 10px 25px; 2394 | font-family: Verdana, Geneva, Tahoma, sans-serif; 2395 | font-weight: 20px; 2396 | cursor: pointer; 2397 | transition: all 0.2s ease; 2398 | z-index: 1; 2399 | } 2400 | .aditya-btn-1:after { 2401 | position: absolute; 2402 | content: ""; 2403 | width: 0; 2404 | height: 0; 2405 | top: 0; 2406 | left: 0; 2407 | border-radius: 5px; 2408 | background-image: linear-gradient(275deg, #190c8e 0%, #b53232 74%); 2409 | transition: all 0.2s ease-in-out; 2410 | z-index: -1; 2411 | } 2412 | .aditya-btn-1:hover:after { 2413 | top: auto; 2414 | bottom: 0; 2415 | width: 100%; 2416 | height: 100%; 2417 | border-radius: 40%; 2418 | border: none; 2419 | } 2420 | /* Aditya's button end */ 2421 | 2422 | /* Gaurav Sharma's button 1 starts*/ 2423 | 2424 | .gauravsharmatheofficial-btn-1-svg { 2425 | position: absolute; 2426 | right: 54px; 2427 | top: 114px; 2428 | fill: none; 2429 | stroke: #fff; 2430 | stroke-dasharray: 150 480; 2431 | stroke-dashoffset: 150; 2432 | transition: 1s ease-in-out; 2433 | } 2434 | 2435 | .gauravsharmatheofficial-btn-1 { 2436 | width: 180px; 2437 | height: 60px; 2438 | cursor: pointer; 2439 | background: transparent; 2440 | border: 1px solid #a5d3fd; 2441 | outline: none; 2442 | transition: 1s ease-in-out; 2443 | } 2444 | 2445 | .gauravsharmatheofficial-btn-1:hover { 2446 | transition: 1s ease-in-out; 2447 | background: #5f9ad4; 2448 | } 2449 | 2450 | .gauravsharmatheofficial-btn-1:hover .gauravsharmatheofficial-btn-1-svg { 2451 | stroke-dashoffset: -480; 2452 | } 2453 | 2454 | .gauravsharmatheofficial-btn-1-span { 2455 | color: white; 2456 | font-size: 18px; 2457 | font-weight: 100; 2458 | } 2459 | 2460 | /* Gaurav Sharma's button 1 end*/ 2461 | 2462 | 2463 | /* getRicha-btn-1 start */ 2464 | 2465 | .getRicha-btn-1 { 2466 | background-color: #47cf73; 2467 | padding: 7px; 2468 | width: 100px; 2469 | cursor: pointer; 2470 | } 2471 | 2472 | .getRicha-btn-1:hover { 2473 | animation: getRicha-btn-1-wiggle 2s infinite; 2474 | } 2475 | 2476 | @keyframes getRicha-btn-1-wiggle { 2477 | 5%, 2478 | 50% { 2479 | transform: scale(1); 2480 | } 2481 | 10% { 2482 | transform: scale(1); 2483 | } 2484 | 15% { 2485 | transform: scale(1); 2486 | } 2487 | 20% { 2488 | transform: scale(1) rotate(-5deg); 2489 | } 2490 | 25% { 2491 | transform: scale(1) rotate(5deg); 2492 | } 2493 | 30% { 2494 | transform: scale(1) rotate(-3deg); 2495 | } 2496 | 35% { 2497 | transform: scale(1) rotate(2deg); 2498 | } 2499 | 40% { 2500 | transform: scale(1) rotate(0); 2501 | } 2502 | } 2503 | 2504 | /* getRicha-btn-1 end */ 2505 | 2506 | .arnav-btn-1{ 2507 | opacity: 1; 2508 | outline: 0; 2509 | color: #fff; 2510 | line-height: 40px; 2511 | position: relative; 2512 | text-align: center; 2513 | letter-spacing: 1px; 2514 | display: inline-block; 2515 | text-decoration: none; 2516 | font-family: "Inter"; 2517 | font-weight: 700; 2518 | text-transform: uppercase; 2519 | } 2520 | .arnav-btn-1:hover:after { 2521 | opacity: 1; 2522 | transform: translateY(0) rotateX(0); 2523 | } 2524 | .arnav-btn-1:hover:before { 2525 | opacity: 0; 2526 | transform: translateY(50%) rotateX(90deg); 2527 | } 2528 | .arnav-btn-1:after { 2529 | top: 0; 2530 | left: 0; 2531 | opacity: 0; 2532 | width: 100%; 2533 | color: #323237; 2534 | display: block; 2535 | transition: 0.5s; 2536 | position: absolute; 2537 | background: #adadaf; 2538 | content: attr(data-back); 2539 | transform: translateY(-50%) rotateX(90deg); 2540 | } 2541 | .arnav-btn-1:before { 2542 | top: 0; 2543 | left: 0; 2544 | opacity: 1; 2545 | color: #adadaf; 2546 | display: block; 2547 | padding: 0 30px; 2548 | line-height: 40px; 2549 | transition: 0.5s; 2550 | position: relative; 2551 | background: #323237; 2552 | content: attr(data-front); 2553 | transform: translateY(0) rotateX(0); 2554 | } 2555 | 2556 | 2557 | .lavesh-btn-1{ 2558 | width: 170px; 2559 | height: 40px; 2560 | padding-top: 10px; 2561 | padding-bottom: 30px; 2562 | text-align: center; 2563 | color: #000; 2564 | text-transform: uppercase; 2565 | font-weight: 600; 2566 | margin-left: 30px; 2567 | margin-bottom: 30px; 2568 | cursor: pointer; 2569 | display: inline-block; 2570 | border: 2px solid #3c73ff; 2571 | background-color: #3c73ff; 2572 | border-radius: 20px; 2573 | color: #fff; 2574 | transition: .3s; 2575 | } 2576 | .lavesh-btn-1:hover{ 2577 | box-shadow: 8px 8px #99bdff; 2578 | transition: .3s; 2579 | } 2580 | 2581 | /* radzhiv's btn 2 start */ 2582 | .radzhiv-btn-2 { 2583 | padding: 10px; 2584 | font-size: 20px; 2585 | border-radius: 5px; 2586 | color: white; 2587 | background-color: #5f6f94; 2588 | } 2589 | .radzhiv-btn-2:hover{ 2590 | background-color: transparent; 2591 | font-weight: 700; 2592 | color: #2e86c1; 2593 | border-width: 4px; 2594 | border-style: solid; 2595 | border-image: linear-gradient(to right, darkblue, darkorchid) 1; 2596 | cursor: pointer; 2597 | } 2598 | /* radzhiv's btn 2 end */ 2599 | 2600 | 2601 | .arnav-btn-2, .arnav-btn-2::after { 2602 | width: 200px; 2603 | height: 69px; 2604 | padding-left: 35px; 2605 | font-size: 36px; 2606 | font-family: 'Inter'; 2607 | font-weight: 700; 2608 | font-size: 1.5rem; 2609 | background: linear-gradient(45deg, transparent 5%, #F8F005 5%); 2610 | border: 0; 2611 | color: #000; 2612 | line-height: 65px; 2613 | box-shadow: 6px 0px 0px #00E6F6; 2614 | outline: transparent; 2615 | position: relative; 2616 | } 2617 | 2618 | .arnav-btn-2::after { 2619 | --slice-0: inset(50% 50% 50% 50%); 2620 | --slice-1: inset(80% -6px 0 0); 2621 | --slice-2: inset(50% -6px 30% 0); 2622 | --slice-3: inset(10% -6px 85% 0); 2623 | --slice-4: inset(40% -6px 43% 0); 2624 | --slice-5: inset(80% -6px 5% 0); 2625 | 2626 | content: 'HOVER ME'; 2627 | display: block; 2628 | position: absolute; 2629 | top: 0; 2630 | left: 0; 2631 | right: 0; 2632 | bottom: 0; 2633 | background: linear-gradient(45deg, transparent 3%, #00E6F6 3%, #00E6F6 5%, #F8F005 5%); 2634 | text-shadow: -3px -3px 0px #FF013C, 3px 3px 0px #00E6F6; 2635 | clip-path: var(--slice-0); 2636 | } 2637 | 2638 | .arnav-btn-2:hover::after { 2639 | animation: 1s arnav-btn-2-glitch; 2640 | animation-timing-function: steps(2, end); 2641 | } 2642 | 2643 | /* Amit's button */ 2644 | .Amit-btn-1{ 2645 | color: red; 2646 | padding: 20px 40px; 2647 | border-radius: 10px; 2648 | box-shadow: 2px 3px 5px red,2px 3px 5px blue; 2649 | font-size: 20px; 2650 | 2651 | } 2652 | .Amit-btn-1:hover{ 2653 | text-shadow: 2px 3px 5px green; 2654 | font-weight: bold; 2655 | box-shadow: 2px 3px 5px rgb(8, 159, 234),2px 3px 5px rgb(103, 34, 46),2px 3px 5px rgb(38, 99, 38); 2656 | border:4px solid purple; 2657 | 2658 | } 2659 | @keyframes arnav-btn-2-glitch { 2660 | 0% { 2661 | clip-path: var(--slice-1); 2662 | transform: translate(-20px, -10px); 2663 | } 2664 | 10% { 2665 | clip-path: var(--slice-3); 2666 | transform: translate(10px, 10px); 2667 | } 2668 | 20% { 2669 | clip-path: var(--slice-1); 2670 | transform: translate(-10px, 10px); 2671 | } 2672 | 30% { 2673 | clip-path: var(--slice-3); 2674 | transform: translate(0px, 5px); 2675 | } 2676 | 40% { 2677 | clip-path: var(--slice-2); 2678 | transform: translate(-5px, 0px); 2679 | } 2680 | 50% { 2681 | clip-path: var(--slice-3); 2682 | transform: translate(5px, 0px); 2683 | } 2684 | 60% { 2685 | clip-path: var(--slice-4); 2686 | transform: translate(5px, 10px); 2687 | } 2688 | 70% { 2689 | clip-path: var(--slice-2); 2690 | transform: translate(-10px, 10px); 2691 | } 2692 | 80% { 2693 | clip-path: var(--slice-5); 2694 | transform: translate(20px, -10px); 2695 | } 2696 | 90% { 2697 | clip-path: var(--slice-1); 2698 | transform: translate(-10px, 0px); 2699 | } 2700 | 100% { 2701 | clip-path: var(--slice-1); 2702 | transform: translate(0); 2703 | } 2704 | } 2705 | 2706 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | CSS Buttons 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 26 |
27 |
28 |
29 |
30 | 31 |
32 | Created by 33 | Design and Code 34 |
35 |
36 |
37 | 40 | 41 |
42 | Created by 43 | Design and Code 44 |
45 |
46 |
47 | 48 |
49 | Created by 50 | Design and Code 51 |
52 |
53 |
54 | 65 |
66 | Created by 67 | Design and Code 68 |
69 |
70 |
71 | 82 |
83 | Created by 84 | Design and Code 85 |
86 |
87 |
88 | 89 |
90 | Created by 91 | Design and Code 92 |
93 |
94 | 95 | 96 | 97 | 102 |
103 | 106 |
107 | Created by 108 | jackwebdev 109 |
110 |
111 | 112 | 113 | 114 | 115 |
116 | 119 |
120 | Created by 121 | Rhysha Kachari 122 |
123 |
124 | 125 |
126 | 127 |
128 | Created by 129 | Amit Sahoo 130 |
131 |
132 | 133 |
134 | 135 |
136 | Created by 137 | Amit Sahoo 138 |
139 |
140 | 141 |
142 | 143 |
144 | Created by 145 | Amit Sahoo 146 |
147 |
148 | 149 | 150 | 151 | 152 |
153 | 154 |
155 | Created by 156 | Mahek jain 157 |
158 |
159 | 160 | 161 | 162 | 163 |
164 | 173 |
174 | Created by 175 | Mahek jain 176 |
177 |
178 | 179 | 180 | 181 |
182 | 183 |
184 | Created by 185 | Ingrzs 186 |
187 |
188 | 189 | 190 | 191 |
192 | 193 |
194 | Created by 195 | Mahi Chowdhury 196 |
197 |
198 | 199 |
200 | 201 |
202 | Created by 203 | Mahi Chowdhury 204 |
205 |
206 | 207 |
208 | 209 |
210 | Created by 211 | Mahi Chowdhury 212 |
213 |
214 | 215 |
216 | 217 |
218 | Created by 219 | Mahi Chowdhury 220 |
221 |
222 | 223 | 224 | 225 |
226 | 227 |
228 | Created by 229 | AjayMaheshwari 230 |
231 |
232 | 233 | 234 | 235 |
236 |
237 | 238 |
239 |
240 | Created by 241 | ImOnlyYisus 242 |
243 |
244 | 245 | 246 |
247 | 248 |
249 | Created by 250 | mjmanas 251 |
252 |
253 | 254 |
255 | 256 |
257 | Created by 258 | Anurag 259 |
260 |
261 | 262 | 263 |
264 | 265 |
266 | Created by 267 | raulwwq0 268 |
269 |
270 | 271 | 272 | 273 | 274 |
275 | 276 |
277 | Created by 278 | Mayank1170 279 |
280 |
281 | 282 | 283 |
284 | 285 |
286 | Created by 287 | Srishti Majumder 288 |
289 |
290 | 291 | 292 | 293 |
294 | 295 |
296 | Created by 297 | Olamilekan 298 |
299 |
300 | 301 | 302 | 303 |
304 | 305 |
306 | Created by 307 | cypher 1002 308 |
309 |
310 | 311 | 312 | 313 | 314 |
315 | 316 |  317 | 318 | 319 |
320 | Created by 321 | Swaroop 322 |
323 |
324 | 325 | 326 | 327 |
328 | 329 |
330 | Created by 331 | Blurry Brush 332 |
333 |
334 | 335 | 336 | 337 |
338 | 339 |
340 | Created by 341 | Harsh_DD 342 |
343 |
344 | 345 | 346 | 347 |
348 | 351 |
352 | Created by 353 | Ankush Roy 354 |
355 |
356 | 357 | 358 | 359 |
360 | 367 |
368 | Created by 369 | davidbru 370 |
371 |
372 | 373 | 374 | 375 | 376 |
377 | 378 |
379 | Created by 380 | Aniket Sinha 381 |
382 |
383 | 384 | 385 | 386 |
387 | 388 |
389 | Created by 390 | Harsh Jain 391 |
392 |
393 | 394 | 395 | 396 |
397 |
398 |
399 |
400 |
401 |
402 |
403 |
404 |
405 | 406 |
407 |
408 | Created by 409 | Harsh Jain 410 |
411 |
412 | 413 | 414 | 415 |
416 | 417 |
418 | Created by 419 | Nitish Singh 420 |
421 |
422 | 423 | 424 |
425 | 426 |
427 | Created by 428 | Thiago Souza 429 |
430 |
431 | 432 | 433 | 434 |
435 | 436 |
437 | Created by 438 | cypher1002 439 |
440 |
441 | 442 | 443 | 444 |
445 | 446 |
447 | Created by 448 | kkartik07 449 |
450 |
451 | 452 | 453 | 454 | 455 |
456 | 457 |
458 | Created by Deepak Kumar 459 |
460 |
461 | 462 | 463 | 464 |
465 |
466 | 467 | 468 |
469 |
470 | Created by 471 | Shridhar Kamat 472 |
473 |
474 | 475 | 476 | 477 | 478 |
479 | 480 | 481 |
482 | Created by 483 | Anup Haldar 484 |
485 |
486 | 487 | 488 | 489 | 490 |
491 | 492 |
Created by Shani
493 |
494 | 495 | 496 | 497 |
498 | 499 |
500 | Created by 501 | Nitish Singh 502 |
503 |
504 | 505 | 506 | 507 |
508 | 509 |
510 | Created by 511 | Sumit 512 |
513 |
514 | 515 | 516 | 517 |
518 | 519 |
520 | Created by 521 | Sumit 522 |
523 |
524 | 525 | 526 | 527 |
528 | 529 |
530 | Created by 531 | Sumit 532 |
533 |
534 | 535 | 536 | 537 |
538 | 539 |
540 | Created by 541 | dilshad360 542 |
543 |
544 | 545 | 546 | 547 |
548 | 549 |
550 | Created by 551 | Jasim Razi 552 |
553 |
554 | 555 | 556 | 557 | 558 |
559 | 560 |
561 | Created by 562 | cypher 1002 563 |
564 |
565 | 566 | 567 | 568 | 569 |
570 | 571 |
572 | Created by 573 | Deepesh Sharma 574 |
575 |
576 | 577 | 578 |
579 | 580 |
581 | Created by 582 | Arvind0302 583 |
584 |
585 | 586 | 587 | 588 |
589 | 590 |
591 | Created by 592 | radzhiv25 593 |
594 |
595 | 596 | 597 | 598 | 599 |
600 | 601 |
602 | Created by 603 | shivanshi-s 604 |
605 |
606 | 607 | 608 | 609 | 610 |
611 | 612 | 614 |
615 | Created by 616 | avishaan24 617 |
618 |
619 | 620 | 621 | 622 | 623 |
624 | 625 |
626 | Created by 627 | Aditya-ahirwar 628 |
629 |
630 | 631 | 632 | 633 | 634 |
635 | 641 |
642 | Created by 643 | gauravsharmatheofficial 644 |
645 |
646 | 647 | 648 | 649 | 650 |
651 | 652 |
653 | Created by 654 | getRicha 655 |
656 |
657 | 658 | 659 | 660 | 661 |
662 | 663 |
664 | Created by 665 | 0b51d14n217 666 |
667 |
668 | 669 | 670 | 671 | 672 | 673 |
674 | Hover me 675 |
676 | Created by 677 | laveshverma007 678 |
679 |
680 | 681 | 682 | 683 |
684 | HOVER ME 685 |
686 | Created by 687 | 0b51d14n217 688 |
689 |
690 | 691 | 692 | 693 |
694 | 695 |
696 | Created by 697 | radzhiv25 698 |
699 |
700 | 701 | 702 | 703 |
704 | 705 |
706 | Created by 707 | amthub 708 |
709 |
710 | 711 | 712 | 713 | 714 |
715 | 716 |
717 | 718 | 762 | 763 | 764 | 765 | 766 | 767 | 768 | --------------------------------------------------------------------------------