|
| 1 | +*{ |
| 2 | + margin: 0; |
| 3 | + padding: 0; |
| 4 | + box-sizing: border-box; |
| 5 | + } |
| 6 | + body { |
| 7 | + background: black; |
| 8 | + height: 100vh; |
| 9 | + width: 100%; |
| 10 | + display: flex; |
| 11 | + color: white; |
| 12 | + justify-content: center; |
| 13 | + align-items: center; |
| 14 | + } |
| 15 | + .fab { |
| 16 | + cursor: pointer; |
| 17 | + margin: 20px 70px; |
| 18 | + border-radius: 40%; |
| 19 | + padding: 10px 20px; |
| 20 | + /* border: 2px solid saddlebrown; */ |
| 21 | + font-size: 100px; |
| 22 | + font-weight: lighter; |
| 23 | + transition: 0.5s ease-in; |
| 24 | + } |
| 25 | + .icons:hover i { |
| 26 | + opacity: 0.1; |
| 27 | + } |
| 28 | + .icons i:hover { |
| 29 | + opacity: 1; |
| 30 | + font-size: 150px; |
| 31 | + font-weight: 200; |
| 32 | + |
| 33 | + } |
| 34 | + |
| 35 | + .icons i:hover:nth-child(1) { |
| 36 | + background: rgb(20, 80, 211); |
| 37 | + box-shadow: 0 3px 30px 0 rgb(20, 80, 211) inset, |
| 38 | + 0 3px 30px 0 rgb(20, 80, 211), |
| 39 | + 0 3px 30px 0 rgb(20, 80, 211) inset, |
| 40 | + 0 3px 30px 0 rgb(20, 80, 211); |
| 41 | + text-shadow: 0 0 5px rgb(20, 80, 211), |
| 42 | + 0 0 5px rgb(20, 80, 211); |
| 43 | + |
| 44 | + } |
| 45 | + .icons i:hover:nth-child(2) { |
| 46 | + background: rgb(52, 159, 25); |
| 47 | + box-shadow: 0 3px 30px 0 hsl(108, 73%, 36%) inset, |
| 48 | + 0 3px 30px 0 hsl(108, 73%, 36%), |
| 49 | + 0 3px 30px 0 hsl(108, 73%, 36%) inset, |
| 50 | + 0 3px 30px 0 hsl(108, 73%, 36%); |
| 51 | + text-shadow: 0 0 5px hsl(108, 73%, 36%), |
| 52 | + 0 0 5px hsl(108, 73%, 36%); |
| 53 | + |
| 54 | + |
| 55 | + } |
| 56 | + .icons i:hover:nth-child(3) { |
| 57 | + background: #c13584; |
| 58 | + box-shadow: 0 3px 30px 0 #c13584 inset, |
| 59 | + 0 3px 30px 0 #c13584, |
| 60 | + 0 3px 30px 0 #c13584 inset, |
| 61 | + 0 3px 30px 0 #c13584; |
| 62 | + text-shadow: 0 0 5px #c13584, |
| 63 | + 0 0 5px #c13584; |
| 64 | + |
| 65 | + } |
| 66 | + .icons i:hover:nth-child(4) { |
| 67 | + background: rgb(82, 120, 201); |
| 68 | + box-shadow: 0 3px 30px 0 rgb(82, 120, 201) inset, |
| 69 | + 0 3px 30px 0 rgb(82, 120, 201), |
| 70 | + 0 3px 30px 0 rgb(82, 120, 201) inset, |
| 71 | + 0 3px 30px 0 rgb(82, 120, 201); |
| 72 | + text-shadow: 0 0 5px rgb(82, 120, 201), |
| 73 | + 0 0 5px rgb(82, 120, 201); |
| 74 | + } |
| 75 | + |
0 commit comments