Skip to content

Instantly share code, notes, and snippets.

@mcanthony
Created October 5, 2015 09:05
Show Gist options
  • Save mcanthony/6f08d21e89437942a1c3 to your computer and use it in GitHub Desktop.
Save mcanthony/6f08d21e89437942a1c3 to your computer and use it in GitHub Desktop.
qEaKpa
.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!
@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