Skip to content

Instantly share code, notes, and snippets.

@AlexArchive
Last active December 29, 2015 07:29
Show Gist options
  • Select an option

  • Save AlexArchive/7636540 to your computer and use it in GitHub Desktop.

Select an option

Save AlexArchive/7636540 to your computer and use it in GitHub Desktop.
Metro Definition List for Modern Browsers
*, *: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