wip Pup 1.0.0
This commit is contained in:
commit
cdc15f019d
48 changed files with 1100 additions and 0 deletions
52
imports/ui/components/OAuthLoginButton/OAuthLoginButton.scss
Normal file
52
imports/ui/components/OAuthLoginButton/OAuthLoginButton.scss
Normal file
|
|
@ -0,0 +1,52 @@
|
|||
@import '../../stylesheets/colors';
|
||||
|
||||
.OAuthLoginButton {
|
||||
display: block;
|
||||
width: 100%;
|
||||
padding: 10px 15px;
|
||||
border: none;
|
||||
background: $gray-lighter;
|
||||
border-radius: 3px;
|
||||
|
||||
i {
|
||||
margin-right: 3px;
|
||||
font-size: 18px;
|
||||
position: relative;
|
||||
top: 1px;
|
||||
}
|
||||
|
||||
&.OAuthLoginButton-facebook {
|
||||
background: $facebook;
|
||||
color: #fff;
|
||||
|
||||
&:hover { background: darken($facebook, 5%); }
|
||||
}
|
||||
|
||||
&.OAuthLoginButton-google {
|
||||
background: $google;
|
||||
color: #fff;
|
||||
|
||||
&:hover { background: darken($google, 5%); }
|
||||
}
|
||||
|
||||
&.OAuthLoginButton-github {
|
||||
background: $github;
|
||||
color: #fff;
|
||||
|
||||
&:hover { background: darken($github, 5%); }
|
||||
}
|
||||
|
||||
&:active {
|
||||
position: relative;
|
||||
top: 1px;
|
||||
}
|
||||
|
||||
&:active,
|
||||
&:focus {
|
||||
outline: 0;
|
||||
}
|
||||
}
|
||||
|
||||
.OAuthLoginButton + .OAuthLoginButton {
|
||||
margin-top: 10px;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue