Created
November 4, 2014 21:07
-
-
Save tolja/4af194b71733ff4bb83e to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
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
<body> | |
<nav> | |
<ul> | |
<li><a>Home</a></li> | |
<li><a>Bilder </a></li> | |
<li><a>Impressum</a></li> | |
</ul> | |
</nav> | |
</body> |
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
// ---- | |
// Sass (v3.4.7) | |
// Compass (v1.0.1) | |
// ---- | |
body{ | |
border:{ | |
width: 4px; | |
color: #000; | |
style: solid; | |
} | |
} | |
nav{ | |
background-color: red; | |
ul{ | |
list-style-type:none; | |
margin: 0; | |
padding:10px; | |
a{ | |
text-decoration: none; | |
&:hover, &:focus &:active{ | |
cursor: pointer; | |
background-color: orange | |
} | |
} | |
} | |
} |
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
body { | |
border-width: 4px; | |
border-color: #000; | |
border-style: solid; } | |
nav { | |
background-color: red; } | |
nav ul { | |
list-style-type: none; | |
margin: 0; | |
padding: 10px; } | |
nav ul a { | |
text-decoration: none; } | |
nav ul a:hover, nav ul a:focus nav ul a:active { | |
cursor: pointer; | |
background-color: orange; } |
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
<body> | |
<nav> | |
<ul> | |
<li><a>Home</a></li> | |
<li><a>Bilder </a></li> | |
<li><a>Impressum</a></li> | |
</ul> | |
</nav> | |
</body> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment