Created
February 8, 2012 21:19
-
-
Save skvggor/1773969 to your computer and use it in GitHub Desktop.
Css Aula 2 Selectors
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
*{ | |
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