forked from cosmocode/dokuwiki-plugin-oauth
-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.less
49 lines (42 loc) · 1.32 KB
/
style.less
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
.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_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);
}
}
}