Created
October 14, 2018 13:32
-
-
Save tarunama/b8c8e7c486ad99ec1c8407e3091dba07 to your computer and use it in GitHub Desktop.
OOCSSについて調べた ref: https://qiita.com/tarunama/items/b4597ae0afdbf63e25da
This file contains 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
#button { | |
width: 200px; | |
height: 50px; | |
padding: 10px; | |
border: solid 1px #ccc; | |
background: linear-gradient(#ccc, #222); | |
box-shadow: rgba(0, 0, 0, .5) 2px 2px 5px; | |
} | |
#widget { | |
width: 500px; | |
min-height: 200px; | |
overflow: auto; | |
border: solid 1px #ccc; | |
background: linear-gradient(#ccc, #222); | |
box-shadow: rgba(0, 0, 0, .5) 2px 2px 5px; | |
} |
This file contains 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
.button { | |
width: 200px; | |
height: 50px; | |
} | |
.widget { | |
width: 500px; | |
min-height: 200px; | |
overflow: auto; | |
} | |
.skin { | |
border: solid 1px #ccc; | |
background: linear-gradient(#ccc, #222); | |
box-shadow: rgba(0, 0, 0, .5) 2px 2px 5px; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment