diff --git a/popup.css b/popup.css index 6854de5..5f5c61a 100644 --- a/popup.css +++ b/popup.css @@ -101,6 +101,11 @@ button.main-button.whitelist.active::after { flex-flow: column; border-top: 1px solid #ddd; } + +/*==================*/ +/*= OPTIONS BUTTON =*/ +/*==================*/ + button.options-button { font-size: 1.125rem; padding: 10px; @@ -130,7 +135,46 @@ button.options-button::after { .misc { height: 4rem; position: relative; + display: flex; } +.misc > * { + flex: 1 1 auto; +} + +/*================*/ +/*= MODE DISPLAY =*/ +/*================*/ + +.mode-display { + font-family: Inconsolata, sans-serif; + padding: 10px; + display: block; + text-align: center; + font-weight: bold; + font-size: 1rem; + line-height: 1.35; + cursor: default; +} +.mode-display::before { + content: "Mode:"; + display: block; + font-weight: normal; +} +.mode-display.whitelist { + background-color: #000; + color: #fff; +} +.mode-display::after { + content: "Blacklist"; +} +.mode-display.whitelist::after { + content: "Whitelist"; +} + +/*=================*/ +/*= RELOAD BUTTON =*/ +/*=================*/ + button.reload-button { background-color: #ffd; margin: 4px; diff --git a/popup.html b/popup.html index 311d6d0..5852a3a 100644 --- a/popup.html +++ b/popup.html @@ -9,6 +9,7 @@