Spaces:
Runtime error
Runtime error
File size: 2,633 Bytes
a637d5e |
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 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 |
/*
* CSS for WebUI
**/
.posex_cont {
display: flex;
flex-flow: column;
gap: 0.5em 0;
width: max-content;
overflow: auto !important;
max-width: 100%;
}
.posex_cont input[type=checkbox] {
appearance: auto;
}
.posex_reset_cont {
display: flex;
flex-direction: row;
gap: 0 0.5em;
}
.posex_box {
display: block;
border: 1px solid gray;
padding: 0.5em 0;
text-decoration: none;
text-align: center;
}
.posex_reset_cont .posex_box {
flex: 1 1 0;
}
.posex_canvas_cont {
display: flex;
flex-direction: row;
}
.posex_canvas_size {
background-color: transparent !important;
}
.posex_setting_cont {
margin-left: 1em;
display: flex;
flex-direction: column;
gap: 0.25em;
}
.posex_body {
width: max-content;
min-width: 100%;
text-align: left;
border: 1px solid gray;
padding: 0.5em;
}
.posex_bg_cont {
display: flex;
flex-direction: row;
gap: 0 0.25em;
}
.posex_bg {
flex: 0 0 0;
border: 1px solid gray;
padding: 0.25em 1em;
min-width: 5em;
}
.posex_notation {
display: none;
position: absolute;
color: black;
background-color: rgba(255, 255, 255, 0.75);
padding: 0.1em 0.25em;
pointer-events: none;
font-size: small;
}
.posex_indicator1 {
display: none;
position: absolute;
outline: 1px solid white;
pointer-events: none;
}
.posex_indicator2 {
display: none;
position: absolute;
outline: 1px solid gray;
pointer-events: none;
}
.posex_misc_cont {
display: flex;
flex-flow: row;
gap: 0 0.5em;
}
.posex_misc {
flex: 1 1 0;
}
.posex_saved_poses {
display: flex;
flex-direction: row;
gap: 0.25em;
font-size: small;
}
.posex_saved_poses > * {
margin: 0;
outline: 1px solid gray;
max-width: 128px;
}
.posex_saved_poses img {
max-width: 128px;
max-height: 128px;
}
.posex_saved_poses figcaption {
padding: 0 0.25em;
overflow-wrap: anywhere; /* Opera Android may not be able to interpret `anywhere` keyword. */
}
.posex_saved_poses .close {
position: absolute;
cursor: pointer;
background-color: white;
opacity: 0.5 !important;
width: 16px;
height: 16px;
text-align: center;
vertical-align: middle;
margin: 0;
padding: 0;
font-family: monospace;
}
.posex_saved_poses .close:hover {
opacity: 1.0 !important;
}
.posex_saved_poses .close2 {
display: none;
position: absolute;
left: 1.5em;
top: 0;
}
.posex_saved_poses .close:hover .close2 {
display: block;
color: white;
pointer-events: none;
} |