Created
October 14, 2020 00:36
-
-
Save karkranikhil/1314f83cbfdde5dcd122b4d5a46fc609 to your computer and use it in GitHub Desktop.
Car Color Picker in lwc
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| span{ | |
| height:25px; | |
| width:25px; | |
| border-radius:50%; | |
| margin:10px; | |
| display:inline-block; | |
| background-color:#bbb; | |
| } | |
| span:hover{ | |
| cursor:pointer; | |
| } | |
| .red{ | |
| background: linear-gradient(#fb7f69, #a2261a); | |
| } | |
| .white{ | |
| background: linear-gradient(#f4f4f4, #cacaca); | |
| } | |
| .black{ | |
| background: linear-gradient(#767676, #070707); | |
| } | |
| .green{ | |
| background: linear-gradient(#8ed65a, #0e7d10); | |
| } | |
| .blue{ | |
| background: linear-gradient(#3468c3, #04348b); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment