Skip to content

Instantly share code, notes, and snippets.

@skvggor
Created February 8, 2012 21:19
Show Gist options
  • Save skvggor/1773969 to your computer and use it in GitHub Desktop.
Save skvggor/1773969 to your computer and use it in GitHub Desktop.
Css Aula 2 Selectors
*{
font-family:'Glegoo', Arial, Verdana, sans-serif;
text-transform:uppercase;
font-size:96%;
}
body{
background:#666;
}
.grey{
background:#777;
}
.yellow{
background:yellow;
}
ul{
background:#FFF;
width:135px;
}
li{
margin-left:-40px;
text-align:right;
list-style-type:none;
width:150px;
padding:10px;
}
li:hover{
border-right:5px solid #CCC;
}
a{
text-decoration:none;
color:#FFF;
}
a:hover{
color:#CCC;
}
/* <link rel='stylesheet' href='http://fonts.googleapis.com/css?family=Glegoo' /> */
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment