diff options
Diffstat (limited to 'src/styles/custom.css')
| -rw-r--r-- | src/styles/custom.css | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/src/styles/custom.css b/src/styles/custom.css index 9ce60e9..1cda79f 100644 --- a/src/styles/custom.css +++ b/src/styles/custom.css @@ -1215,3 +1215,37 @@ h3:hover .heading-anchor { opacity: 1; color: var(--sl-color-green-high, #16a34a); } + +/* 議案の賛否一覧: 議決結果のアイコン */ +.sanpi-kekka { + display: inline-flex; + align-items: center; + justify-content: center; + width: 1.5em; + height: 1.5em; + border-radius: 50%; + font-size: 0.8em; + font-weight: 700; + line-height: 1; + vertical-align: middle; +} +.sanpi-kekka.ok { + background: #e8f5e9; + color: #2e7d32; + border: 1.5px solid #66bb6a; +} +.sanpi-kekka.ng { + background: #ffebee; + color: #c62828; + border: 1.5px solid #ef5350; +} +:root[data-theme="dark"] .sanpi-kekka.ok { + background: #14301a; + color: #81c784; + border-color: #388e3c; +} +:root[data-theme="dark"] .sanpi-kekka.ng { + background: #3a1414; + color: #ef9a9a; + border-color: #c62828; +} |
