aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/styles
diff options
context:
space:
mode:
Diffstat (limited to 'src/styles')
-rw-r--r--src/styles/custom.css47
1 files changed, 24 insertions, 23 deletions
diff --git a/src/styles/custom.css b/src/styles/custom.css
index 1cda79f..dcafb08 100644
--- a/src/styles/custom.css
+++ b/src/styles/custom.css
@@ -1216,36 +1216,37 @@ h3:hover .heading-anchor {
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;
+ display: inline-block;
+ padding: 0.05em 0.4em;
+ border: 1.5px solid;
+ border-radius: 3px;
+ font-size: 0.72em;
font-weight: 700;
- line-height: 1;
+ line-height: 1.5;
+ white-space: nowrap;
vertical-align: middle;
}
-.sanpi-kekka.ok {
- background: #e8f5e9;
- color: #2e7d32;
- border: 1.5px solid #66bb6a;
-}
-.sanpi-kekka.ng {
+/* 可決・認定・採択(実際はほとんどがこれになる) */
+.sanpi-kekka.pass {
+ color: #b71c1c;
+ border-color: #c62828;
background: #ffebee;
- color: #c62828;
- border: 1.5px solid #ef5350;
}
-:root[data-theme="dark"] .sanpi-kekka.ok {
- background: #14301a;
- color: #81c784;
- border-color: #388e3c;
+/* 否決・不採択 */
+.sanpi-kekka.stop {
+ color: #0d47a1;
+ border-color: #1565c0;
+ background: #e3f2fd;
}
-:root[data-theme="dark"] .sanpi-kekka.ng {
- background: #3a1414;
+:root[data-theme="dark"] .sanpi-kekka.pass {
color: #ef9a9a;
border-color: #c62828;
+ background: #3a1414;
+}
+:root[data-theme="dark"] .sanpi-kekka.stop {
+ color: #90caf9;
+ border-color: #1565c0;
+ background: #10243a;
}