Last active
February 2, 2017 07:28
-
-
Save somethvictory/0c1eb77f3cc6f77560107267ac034505 to your computer and use it in GitHub Desktop.
Sample load module sass. Every page should have a distinguish body id, and css should be place under a specific body id, so that we don't have a style confiction
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[id=companies_index] { | |
.main-loading { | |
border-radius: 2px; | |
color: $main-blue; | |
height: 260px; | |
margin-top: 40px; | |
padding-top: 200px; | |
} | |
.main-search { | |
background-color: $super-light-blue; | |
border-radius: 2px; | |
display: none; | |
padding: 50px; | |
margin-top: 40px; | |
} | |
.welcome { | |
color: $main-blue; | |
font-size: $font-size-head1; | |
letter-spacing: $tracking; | |
margin: 0; | |
} | |
.clue { | |
color: $main-copy; | |
font-size: $font-size-subhead1; | |
letter-spacing: $tracking; | |
} | |
.form-group { | |
margin-top: 25px; | |
&:focus { | |
background-color: blue; | |
} | |
input { | |
display: inline; | |
height: 42px; | |
width: 95%; | |
&:visited { | |
background-color: red; | |
} | |
&:focus { | |
border: 1px solid $main-blue; | |
} | |
&:focus + button { | |
visibility: visible; | |
} | |
} | |
.inner { | |
height: 42px; | |
margin-left: -104px; | |
visibility: hidden; | |
width: 10%; | |
&:hover { | |
visibility: visible; | |
} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment