Last active
August 29, 2015 14:01
-
-
Save czajkovsky/981500b7a678cc62af8e 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
#nav | |
%h1 Netguru front-end rekru | |
#users{ style: "background: #f00" } | |
%a{ href: 'http://sample.com/czajkovsky' } | |
#user.id_13 | |
.user__id 13 | |
.user__name Mateusz Czajka | |
%a{ href: 'http://sample.com/olabee' } | |
#user.id_14 | |
.user__id 14 | |
.user__name Aleksandra Pszczoła | |
#footer | |
%h1 Good luck! |
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.3.7) | |
// Compass (v1.0.0.alpha.18) | |
// ---- | |
body { | |
#users { | |
a { | |
#user { | |
.user__id { | |
color: #f00; | |
} | |
.user__name { | |
color: #0f0 !important; | |
} | |
} | |
} | |
} | |
} | |
@media (max-width: 20rem) { | |
.hidden-xs { | |
display: none !important; | |
} | |
} | |
nav#nav { | |
background: #f00; | |
} |
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 #users a #user .user__id { | |
color: #f00; | |
} | |
body #users a #user .user__name { | |
color: #0f0 !important; | |
} | |
@media (max-width: 20rem) { | |
.hidden-xs { | |
display: none !important; | |
} | |
} | |
nav#nav { | |
background: #f00; | |
} |
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
<div id='nav'> | |
<h1>Netguru front-end rekru</h1> | |
</div> | |
<div id='users' style='background: #f00'> | |
<a href='http://sample.com/czajkovsky'> | |
<div class='id_13' id='user'> | |
<div class='user__id'>13</div> | |
<div class='user__name'>Mateusz Czajka</div> | |
</div> | |
</a> | |
<a href='http://sample.com/olabee'> | |
<div class='id_14' id='user'> | |
<div class='user__id'>14</div> | |
<div class='user__name'>Aleksandra Pszczoła</div> | |
</div> | |
</a> | |
</div> | |
<div id='footer'> | |
<h1>Good luck!</h1> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment