Created
October 11, 2017 17:23
-
-
Save allenhwkim/d6e213d201325055c7b9349b8f21d21a to your computer and use it in GitHub Desktop.
Custom Element Common Css
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
:root { | |
font-family: Roboto, sans-serif; | |
--theme-primary: #212121; | |
--theme-text-primary: #fff; | |
--theme-shadow-4dp: | |
0px 2px 4px -1px rgba(0, 0, 0, 0.2), | |
0px 4px 5px 0px rgba(0, 0, 0, 0.14), | |
0px 1px 10px 0px rgba(0, 0, 0, 0.12); | |
} | |
.float-left { | |
float: left; | |
} | |
.float-right { | |
float: right; | |
} | |
.ce-icon { | |
font-family: 'Material Icons'; | |
font-size: 24px; | |
display: inline-block; | |
padding: 16px; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment