From 0d11405c7d4d14d288d5b8b7aab85732965ca8ab Mon Sep 17 00:00:00 2001 From: Splash Date: Sat, 18 Apr 2020 11:42:08 +0800 Subject: [PATCH] Add some style for language selector. --- css/styles.css | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/css/styles.css b/css/styles.css index 6f643eb..01513da 100644 --- a/css/styles.css +++ b/css/styles.css @@ -74,6 +74,27 @@ h2 { display: inline; } +.dialog-box-lng select { + font-size: 1rem; + padding: 4px; + font-weight: bold; + border-radius: 4px; + border-color: #DEF2D9; + color: #837865; + cursor: pointer; + transition: 0.2s all; +} + +.dialog-box-lng select:hover { + background-color: #EBFEFD; + border-color: #5ECEDB; + box-shadow: 0 2px 4px rgba(0, 0, 0, 0.16); +} + +.dialog-box-lng select:focus { + outline: none; +} + .dialog-box p { font-family: 'Raleway', sans-serif; font-weight: 800;