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
49
50
|
html, body {
height: 100%;
}
.divider {
height: 2rem;
background-color: rgba(255, 255, 255, .5);
border: solid rgba(0, 0, 0, .15);
border-width: 1px 0;
box-shadow: inset 0 .5em 1.5em rgba(0, 0, 0, .1), inset 0 .125em .5em rgba(0, 0, 0, .15);
}
@media (min-width: 992px) {
.rounded-lg-3 {
border-radius: .3rem;
}
}
#monster {
cursor: pointer;
}
body {
background-image: linear-gradient(0deg,rgba(0,0,0,.0),rgba(0,0,0,.6),rgba(0,0,0,.8)),url(/custom/background.jpg);
background-size: cover;
}
#output {
background: white;
border-radius: .25rem;
padding: 1.625rem 1rem .625rem;
}
#output label {
transform: scale(.85) translateY(-.5rem) translateX(.15rem);
opacity: .65;
font-size: smaller;
}
.highlight {
background-color: yellow;
}
#shared-notice {
display: none;
}
#share-notice {
cursor: pointer;
}
|