Created
April 20, 2017 13:12
-
-
Save chrisobriensp/df2199a88abef830867a0f9de202292a to your computer and use it in GitHub Desktop.
Styles to accompany https://gist.github.com/chrisobriensp/407b4c6fa26bf54b3675952ce6fefc50
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
.helloWorld { | |
.container { | |
max-width: 700px; | |
margin: 0px auto; | |
box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2), 0 25px 50px 0 rgba(0, 0, 0, 0.1); | |
} | |
.result { | |
margin-top: 10px; | |
} | |
.formRow { | |
padding-top: 15px; | |
padding-bottom: 10px; | |
} | |
.formLabel { | |
float: left; | |
min-width: 120px; | |
} | |
.formRow::after { | |
clear: both; | |
} | |
.buttonRow { | |
margin-bottom: 15px; | |
} | |
.row { | |
padding: 20px; | |
} | |
.listItem { | |
max-width: 715px; | |
margin: 5px auto 5px auto; | |
box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.2), 0 25px 50px 0 rgba(0, 0, 0, 0.1); | |
} | |
.button { | |
// Our button | |
text-decoration: none; | |
height: 32px; | |
// Primary Button | |
min-width: 80px; | |
background-color: #0078d7; | |
border-color: #0078d7; | |
color: #ffffff; | |
// Basic Button | |
outline: transparent; | |
position: relative; | |
font-family: "Segoe UI WestEuropean","Segoe UI",-apple-system,BlinkMacSystemFont,Roboto,"Helvetica Neue",sans-serif; | |
-webkit-font-smoothing: antialiased; | |
font-size: 14px; | |
font-weight: 400; | |
border-width: 0; | |
text-align: center; | |
cursor: pointer; | |
display: inline-block; | |
padding: 0 16px; | |
.label { | |
font-weight: 600; | |
font-size: 14px; | |
height: 32px; | |
line-height: 32px; | |
margin: 0 4px; | |
vertical-align: top; | |
display: inline-block; | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment