aboutsummaryrefslogtreecommitdiff
path: root/.config/ags/greeter/greeter.scss
blob: e3a5cd8fb73026b5d11894d148ee65e7a8e2127a (plain)
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
@import "../style/mixins/floating-widget.scss";
@import "../style/mixins/widget.scss";
@import "../style/mixins/spacing.scss";
@import "../style/mixins/unset.scss";
@import "../style/mixins/a11y-button.scss";
@import "../widget/bar/bar.scss";

window#greeter {
    background-color: lighten($bg, 6%);
    color: $fg;

    .bar {
        background-color: transparent;

        .date {
            @include unset($rec: true);
            @include panel-button($flat: true, $reactive: false);
        }
    }

    .auth {
        @include floating_widget;
        border-radius: $radius;
        min-width: 400px;
        padding: 0;

        .wallpaper {
            min-height: 220px;
            background-size: cover;
            border-top-left-radius: $radius;
            border-top-right-radius: $radius;
        }

        .wallpaper-contrast {
            min-height: 100px;
        }

        .avatar {
            border-radius: 99px;
            min-width: 140px;
            min-height: 140px;
            background-size: cover;
            box-shadow: 3px 3px 6px 0 $shadow-color;
            margin-bottom: $spacing;
        }


        .password {
            entry {
                @include button;
                padding: $padding*.7 $padding;
                margin-left: $spacing*.5;
            }

            margin: 0 $padding*4;
            margin-top: $spacing;
        }

        .response-box {
            color: $error-bg;
            margin: $spacing 0;
        }
    }
}