#e8e8e8
1.main { 2 display: flex; 3 flex-direction: column; 4 gap: 0.5em; 5} 6 7.up { 8 display: flex; 9 flex-direction: row; 10 gap: 0.5em; 11} 12 13.down { 14 display: flex; 15 flex-direction: row; 16 gap: 0.5em; 17} 18 19.card1 { 20 width: 90px; 21 height: 90px; 22 outline: none; 23 border: none; 24 background: white; 25 border-radius: 90px 5px 5px 5px; 26 box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, 27 rgba(0, 0, 0, 0.3) 0px 1px 3px -1px; 28 transition: 0.2s ease-in-out; 29} 30 31.instagram { 32 margin-top: 1.5em; 33 margin-left: 1.2em; 34 fill: #cc39a4; 35} 36 37.card2 { 38 width: 90px; 39 height: 90px; 40 outline: none; 41 border: none; 42 background: white; 43 border-radius: 5px 90px 5px 5px; 44 box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, 45 rgba(0, 0, 0, 0.3) 0px 1px 3px -1px; 46 transition: 0.2s ease-in-out; 47} 48 49.twitter { 50 margin-top: 1.5em; 51 margin-left: -0.9em; 52 fill: #03a9f4; 53} 54 55.card3 { 56 width: 90px; 57 height: 90px; 58 outline: none; 59 border: none; 60 background: white; 61 border-radius: 5px 5px 5px 90px; 62 box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, 63 rgba(0, 0, 0, 0.3) 0px 1px 3px -1px; 64 transition: 0.2s ease-in-out; 65} 66 67.github { 68 margin-top: -0.6em; 69 margin-left: 1.2em; 70} 71 72.card4 { 73 width: 90px; 74 height: 90px; 75 outline: none; 76 border: none; 77 background: white; 78 border-radius: 5px 5px 90px 5px; 79 box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, 80 rgba(0, 0, 0, 0.3) 0px 1px 3px -1px; 81 transition: 0.2s ease-in-out; 82} 83 84.discord { 85 margin-top: -0.9em; 86 margin-left: -1.2em; 87 fill: #8c9eff; 88} 89 90.card1:hover { 91 cursor: pointer; 92 scale: 1.1; 93 background-color: #cc39a4; 94 box-shadow: 1px 1px 0px #eeb1de, 2px 2px 0px #d365b6, 3px 3px 0px #d365b6, 95 4px 4px 0px #d365b6, 5px 5px 0px #d365b6; 96} 97 98.card1:hover .instagram { 99 fill: white; 100} 101 102.card2:hover { 103 cursor: pointer; 104 scale: 1.1; 105 background-color: #03a9f4; 106 box-shadow: 1px 1px 0px #a1defa, 2px 2px 0px #41bef8, 3px 3px 0px #41bef8, 107 4px 4px 0px #41bef8, 5px 5px 0px #41bef8; 108} 109 110.card2:hover .twitter { 111 fill: white; 112} 113 114.card3:hover { 115 cursor: pointer; 116 scale: 1.1; 117 background-color: black; 118 box-shadow: 1px 1px 0px rgb(124, 123, 123), 2px 2px 0px #333, 3px 3px 0px #333, 119 4px 4px 0px #333, 5px 5px 0px #333; 120} 121 122.card3:hover .github { 123 fill: white; 124} 125 126.card4:hover { 127 cursor: pointer; 128 scale: 1.1; 129 background-color: #8c9eff; 130 box-shadow: 1px 1px 0px #bdc2e2, 2px 2px 0px #9ca6e0, 3px 3px 0px #9ca6e0, 131 4px 4px 0px #9ca6e0, 5px 5px 0px #9ca6e0; 132} 133 134.card4:hover .discord { 135 fill: white; 136} 137 138.card1, 139.card2, 140.card3, 141.card4 { 142 box-shadow: 1px 1px 0px rgb(179, 175, 175), 2px 2px 0px rgb(179, 175, 175), 143 3px 3px 0px rgb(179, 175, 175), 4px 4px 0px rgb(179, 175, 175), 144 5px 5px 0px rgb(179, 175, 175); 145} 146
227 views
Variation of abutton
227 views
Variation of abutton
Comments
MIT License