๐Ÿ“ฆ PeDro0210 / General-Dotfiles

๐Ÿ“„ style.css ยท 48 lines
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
@import 'colors.css';

* {
    background-image: none;
}

window {
    background-color: rgba(25, 0, 46, 0.5);
}

button {
    color: @text-color;
    font-size: 16px;
    background-color: @background-one;
    border-style: none;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 50%;
    margin: 10px;
    text-shadow: 0px 0px;
    box-shadow: 0px 0px;
}

button:focus,
button:active,
button:hover {
    border-style: solid;
    border-color: @color-border;
    border-width: 2px;
    outline-style: none;
}

#logout {
    background-image: image(url("/home/pedro0210/.config/wlogout/logout.png"));
}

#shutdown {
    background-image: image(
        url("/home/pedro0210/.config/wlogout/shutdown.png")
    );
}

#reboot {
    background-image: image(url("/home/pedro0210/.config/wlogout/reboot.png"));
}