Files: b755e93b29216ff4f3cc1b14472292cca8524023 / app / html / modal.mcss
786 bytesRaw
1 | Modal { |
2 | display: flex |
3 | flex-direction: row |
4 | position: fixed |
5 | z-index: 90 |
6 | text-align: center |
7 | top: 2.5rem |
8 | right: 0 |
9 | bottom: 0 |
10 | left: 0 |
11 | background: rgba(15, 0, 25, 0.78) |
12 | |
13 | div.content { |
14 | max-width: 90vw |
15 | max-height: 90vh |
16 | overflow: auto |
17 | |
18 | $backgroundPrimary |
19 | padding: 30px |
20 | box-shadow: rgba(0,0,0,.34) 2px 6px 10px |
21 | margin: auto |
22 | $dontSelect |
23 | |
24 | div.dialog { |
25 | div.message { |
26 | $colorFontPrimary |
27 | } |
28 | |
29 | div.actions { |
30 | display: flex |
31 | padding-top: 15px |
32 | |
33 | button { |
34 | margin: auto |
35 | |
36 | -primary { |
37 | $backgroundPrimary |
38 | } |
39 | } |
40 | } |
41 | } |
42 | } |
43 | |
44 | -open { |
45 | display: flex |
46 | } |
47 | |
48 | -close { |
49 | display: none |
50 | } |
51 | |
52 | -dark { |
53 | div.content { |
54 | background: #000 |
55 | } |
56 | } |
57 | } |
58 | |
59 |
Built with git-ssb-web