diff options
author | Frederick Yin <fkfd@macaw.me> | 2020-07-04 22:12:11 +0800 |
---|---|---|
committer | Frederick Yin <fkfd@macaw.me> | 2020-07-04 22:12:11 +0800 |
commit | 9527f0b05945871190e1592086e1d48e134dbaa5 (patch) | |
tree | 49a4bef40b10d9bf44b19ee3e7c05c885c1d154b /utab/data/css | |
parent | 0be69d4b5db18b1e0794fd3dc3297da0a16b1ccf (diff) |
Add or edit site
Diffstat (limited to 'utab/data/css')
-rw-r--r-- | utab/data/css/index.css | 45 |
1 files changed, 41 insertions, 4 deletions
diff --git a/utab/data/css/index.css b/utab/data/css/index.css index 5f03851..651a540 100644 --- a/utab/data/css/index.css +++ b/utab/data/css/index.css @@ -20,13 +20,50 @@ body { height: 80px; } -.sites-item:hover { - border: #ccc 2px solid; -} - .site-favicon { width: 64px; height: 64px; position: relative; top: 8px; } + +.form-input { + border: #888 2px solid; + width: 40%; + height: 2em; + background-color: inherit; + color: inherit; + margin-left: 20px; + margin-bottom: 20px; +} + +.form-button { + border: #888 2px solid; + border-radius: 5px; + height: 36px; + margin: 20px; + padding: 10px; + background-color: inherit; + color: white; +} + +.sites-item:hover, +.form-input:hover, +.form-button:hover { + border: #ccc 2px solid; +} + +.ctrl { + margin-top: 20px; +} + +.ctrl-icon { + width: 48px; + height: 48px; + margin: 20px; + opacity: 60%; +} + +.ctrl-icon:hover { + opacity: 100%; +} |