Last active
January 9, 2018 20:22
-
-
Save hibuno/909ba3107c9b414628674dad0732a1c0 to your computer and use it in GitHub Desktop.
Not standard CSS code
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
/* On some file */ | |
.title { | |
font-size: 20px; | |
color: blue; | |
} | |
.description { | |
font-size: 14px; | |
} | |
.content.kiri { | |
display: inline-block; | |
float: left; | |
width: 600px; | |
} | |
/* On another file */ | |
.title { | |
font-size: 48px; | |
} | |
/* And then */ | |
.title { | |
font-size: 18px !important; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment