Created
October 5, 2015 09:05
-
-
Save mcanthony/6f08d21e89437942a1c3 to your computer and use it in GitHub Desktop.
qEaKpa
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
.panel | |
h2 This is a title | |
p Lorem ipsum dolor sit amet, consectetur adipisicing elit. Odio quo, necessitatibus assumenda, molestiae saepe, id itaque nesciunt labore laudantium debitis corporis enim ex ea? Sint nisi itaque minus, voluptatum neque! |
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
@bgColor: hsl(40, 15%, 3%); | |
@highlightColor: hsl(20, 65%, 50%); | |
@glowColor: hsla(20, 85%, 50%, 70%); | |
html, body { | |
background: @bgColor; | |
color: @highlightColor; | |
font-family: 'Open Sans'; | |
font-size: 14px; | |
text-shadow: 0px 0px 5px @glowColor; | |
} | |
.panel { | |
width: 400px; | |
height: 600px; | |
margin: 20px auto; | |
padding: 1em; | |
border: 1px solid @highlightColor; | |
border-radius: 2px; | |
box-shadow: 0 0 5px @glowColor, 0 0 5px @glowColor inset; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment