~starkingdoms/starkingdoms

ref: 992891fbb02a84f34814269ce200d14fcefeffcc starkingdoms/starkingdoms-client/src/css/popup.css -rw-r--r-- 505 bytes
992891fb — ghostlyzsh Merge branch 'bevy_rewrite' of https://gitlab.com/starkingdoms.tk/starkingdoms.tk into bevy_rewrite 2 years ago
                                                                                
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
.popup {
    padding: 1em;

    background-color: var(--bg-secondary-1);

    height: min-content;

    border-radius: 5px;
    z-index: 100000;
}
.popup-max-width-300 {
    max-width: 300px;
}
.popup-wmin {
    width: min-content;
}
.popup-center {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}
.popup > h1 {
    margin: 0;
}
.popup > h2 {
    margin: 0 0 0.5em;
    color: var(--sub-headline);
}
.hidden {
    display: none;
    visibility: hidden;
}