Files: c27d9c765e55088d4fd855d29313c20839bb982c / app / html / lightbox.mcss
644 bytesRaw
1 | Lightbox { |
2 | display: flex |
3 | flex-direction: row |
4 | position: fixed |
5 | z-index: 999 |
6 | width: 100% |
7 | height: 100% |
8 | text-align: center |
9 | top: 0 |
10 | left: 0 |
11 | background: rgba(0,0,0,0.8) |
12 | |
13 | div.content { |
14 | margin: auto |
15 | padding: 30px |
16 | border-radius: 5px |
17 | $backgroundPrimary |
18 | $dontSelect |
19 | |
20 | div.dialog { |
21 | div.message { |
22 | $colorFontPrimary |
23 | } |
24 | |
25 | div.actions { |
26 | display: flex |
27 | padding-top: 15px |
28 | |
29 | div.Button { |
30 | margin: auto |
31 | |
32 | -primary { |
33 | $backgroundPrimary |
34 | } |
35 | } |
36 | } |
37 | } |
38 | } |
39 | |
40 | -open { |
41 | display: flex; |
42 | } |
43 | |
44 | -close { |
45 | display: none; |
46 | } |
47 | } |
Built with git-ssb-web