diff options
author | Shin'ya Ueoka <ueokande@i-beam.org> | 2017-11-23 21:22:42 +0900 |
---|---|---|
committer | Shin'ya Ueoka <ueokande@i-beam.org> | 2017-11-26 11:45:05 +0900 |
commit | 7b44b652473b487e2d00a5b705a7f78ee66dec65 (patch) | |
tree | 6957bd276294d1c5be395b1e95e045d2e03a9a29 /src/settings/components/form/search-engine-form.scss | |
parent | 4e5ddc1d57ba4f42314eb49ae57a9b67950be596 (diff) |
Add search form
Diffstat (limited to 'src/settings/components/form/search-engine-form.scss')
-rw-r--r-- | src/settings/components/form/search-engine-form.scss | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/src/settings/components/form/search-engine-form.scss b/src/settings/components/form/search-engine-form.scss new file mode 100644 index 0000000..1ca43b7 --- /dev/null +++ b/src/settings/components/form/search-engine-form.scss @@ -0,0 +1,38 @@ +.form-search-engine-form { + @mixin row-base { + display: flex; + + .column-name { + flex: 1; + } + .column-url { + flex: 5; + } + .column-option { + text-align: right; + flex-basis: 5rem; + } + } + + &-header { + @include row-base; + + font-weight: bold; + } + + &-row { + @include row-base; + + .column-option input[type='button'] { + border: none; + padding: 4; + display: inline; + background: none; + color: red; + + &:hover { + color: darkred; + } + } + } +} |