├── README.md ├── index.html ├── LICENSE └── style.css /README.md: -------------------------------------------------------------------------------- 1 | # ___---___Icones__---__ -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Rafael 8 | 9 | 10 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2024 Rafael Assis Santos 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /style.css: -------------------------------------------------------------------------------- 1 | body { 2 | background-color: green; 3 | display: flex; 4 | justify-content: center; 5 | align-items: center; 6 | height: 100vh; 7 | margin: 0; 8 | font-family: 'Raleway', sans-serif; 9 | } 10 | 11 | .btn { 12 | padding: 8px 20px; 13 | width: 200px; 14 | height: 50px; 15 | color: #fff; 16 | font-weight: 700; 17 | border-radius: 0; 18 | text-transform: uppercase; 19 | margin: 25px; 20 | overflow: hidden; 21 | position: relative; 22 | border: 1px solid transparent; 23 | } 24 | 25 | .btn::before { 26 | content: ""; 27 | top: 0; 28 | left: 0; 29 | width: 100%; 30 | height: 100%; 31 | background: linear-gradient(120deg, transparent, #eefffc, transparent); 32 | transform: translateX(-100%); 33 | transition: 0.6s; 34 | position: absolute; 35 | } 36 | 37 | .btn:hover { 38 | background: transparent; 39 | box-shadow: 0 0 20px 5px #00fffc; 40 | } 41 | 42 | .btn:hover::before { 43 | transform: translateX(100%); 44 | } 45 | 46 | .btn:nth-child(2) { 47 | border: 0px solid #e819ef; 48 | } 49 | 50 | .btn:nth-child(2)::before { 51 | background: linear-gradient(120deg, transparent, #e819ef, transparent); 52 | } 53 | 54 | .btn:nth-child(2):hover { 55 | box-shadow: 0 0 20px 5px #e819ef; 56 | } 57 | 58 | .btn:nth-child(3) { 59 | border: 1px solid #67dcle; 60 | } 61 | 62 | .btn:nth-child(3)::before { 63 | background: linear-gradient(120deg, transparent, #67dcle, transparent); 64 | } 65 | 66 | .btn:nth-child(3):hover { 67 | box-shadow: 0 0 20px 5px #67dcle; 68 | } 69 | --------------------------------------------------------------------------------