You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
dokuwiki-plugin-keksAccount/style.less

57 lines
1.6 KiB
Plaintext

.plugin_oauth_button(@color) {
border-top: 1px solid lighten(@color, 20%);
border-left: 1px solid lighten(@color, 20%);
border-right: 1px solid darken(@color, 20%);
border-bottom: 1px solid darken(@color, 20%);
background-color: @color;
}
#dw__login {
.plugin_oauth {
a {
padding: 10px 20px;
margin: 5px;
line-height: 50px;
background-position: 10px center;
background-repeat: no-repeat;
color: #fff;
text-decoration: none;
font-weight: bold;
.plugin_oauth_button(#999);
}
a.plugin_oauth_Facebook {
.plugin_oauth_button(#3b5998);
background-image: url(images/facebook.png);
padding-left: (20px+24px);
}
a.plugin_oauth_Auth0 {
.plugin_oauth_button(#d0d2d3);
background-image: url(https://cdn.auth0.com/styleguide/1.0.0/img/badge.png);
padding-left: (20px+24px);
background-size: 22px 24px;
color:#5c666f;
}
a.plugin_oauth_Google {
.plugin_oauth_button(#DC4A38);
background-image: url(images/google.png);
padding-left: (20px+24px);
}
a.plugin_oauth_Github {
.plugin_oauth_button(#404041);
background-image: url(images/github.png);
padding-left: (20px+24px);
}
a.plugin_oauth_Yahoo {
.plugin_oauth_button(#7B0099);
background-image: url(images/yahoo.png);
padding-left: (20px+24px);
}
}
}