File: dialogs.css

package info (click to toggle)
akira 0.0.16-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 4,024 kB
  • sloc: xml: 40; python: 13; makefile: 11; sh: 8
file content (30 lines) | stat: -rw-r--r-- 855 bytes parent folder | download | duplicates (2)
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
.warning-message {
    background-color: alpha (@STRAWBERRY_300, 0.2);
    border: 1px solid @STRAWBERRY_500;
    border-radius: 4px;
}

.banner {
    background-color: @bg_color;
    background-image:
        url("/com/github/akiraux/akira/akira-banner.jpg"),
        linear-gradient(
            to bottom,
            shade(@bg_color, 1.02),
            shade(@bg_color, 0.98)
        );
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    border: 1px solid alpha(black, 0.15);
    border-radius: 6px;
    box-shadow:
        inset 0 0 0 1px alpha(white, 0.05),
        inset 0 1px 0 0 alpha(white, 0.45),
        inset 0 -1px 0 0 alpha(white, 0.15),
        0 3px 2px -1px alpha(black, 0.15),
        0 3px 5px alpha(black, 0.1);
    color: @fg_color;
    font-size: 32px;
    font-weight: 300;
}