Remove unneded executable bits.
[wolnelektury.git] / src / wolnelektury / static / scss / main / auth.scss
1 .email_list {
2     .verified {
3         display: inline-block;
4         margin-left: 2em;
5         font-style: italic;
6     }
7     .unverified {
8         display: inline-block;
9         margin-left: 2em;
10         color: #717171;
11         font-style: italic;
12     }
13     .primary {
14         display: inline-block;
15         margin-left: 2em;
16         font-weight: bold;
17     }
18 }
19
20 .socialaccount_provider {
21     display: inline-block;
22     background-repeat: no-repeat;
23     color: transparent;
24     
25     @include size(height, 40px);
26     @include size(width, 40px);
27     vertical-align: middle;
28
29     &.google {
30         background-image: url(/static/img/auth/google.png);
31     }
32     &.facebook {
33         background-image: url(/static/img/auth/facebook.png);
34     }
35 }
36
37
38 .socialaccount_providers {
39     @include size(margin, 10px 0);
40     padding: 0;
41
42     li {
43         display: inline;
44         list-style: none;
45         @include size(margin-right, 10px);
46     }
47 }