Last active
December 29, 2015 07:29
-
-
Save AlexArchive/7636540 to your computer and use it in GitHub Desktop.
Metro Definition List for Modern Browsers
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
| *, *:before, *:after | |
| { | |
| -webkit-box-sizing: border-box; | |
| -moz-box-sizing: border-box; | |
| box-sizing: border-box; | |
| } | |
| body | |
| { | |
| font-family: sans-serif; | |
| } | |
| dl | |
| { | |
| width: 700px; | |
| } | |
| dt | |
| { | |
| float: left; | |
| clear: right; | |
| width: 190px; | |
| color: white; | |
| background-color: #2eaae8; | |
| } | |
| dd | |
| { | |
| float: right; | |
| width: 510px; | |
| margin-left: 0; | |
| margin-bottom: 5px; | |
| color: #444; | |
| border: 1px #cccccc solid; | |
| border-left: none; | |
| } | |
| dt, dd | |
| { | |
| height: 56px; | |
| line-height: 56px; | |
| padding-left: 14px; | |
| font-size: 20px; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment