aboutsummaryrefslogtreecommitdiffstats
path: root/public/projects/angular-small-apps/apps/recipes/src/app/components/search/search.component.scss
diff options
context:
space:
mode:
authorArmand Philippot <git@armandphilippot.com>2022-02-20 16:11:50 +0100
committerArmand Philippot <git@armandphilippot.com>2022-02-20 16:15:08 +0100
commit73a5c7fae9ffbe9ada721148c8c454a643aceebe (patch)
treec8fad013ed9b5dd589add87f8d45cf02bbfc6e91 /public/projects/angular-small-apps/apps/recipes/src/app/components/search/search.component.scss
parentb01239fbdcc5bbc5921f73ec0e8fee7bedd5c8e8 (diff)
chore!: restructure repo
I separated public files from the config/dev files. It improves repo readability. I also moved dotenv helper to public/inc directory and extract the Matomo tracker in the same directory.
Diffstat (limited to 'public/projects/angular-small-apps/apps/recipes/src/app/components/search/search.component.scss')
-rw-r--r--public/projects/angular-small-apps/apps/recipes/src/app/components/search/search.component.scss49
1 files changed, 49 insertions, 0 deletions
diff --git a/public/projects/angular-small-apps/apps/recipes/src/app/components/search/search.component.scss b/public/projects/angular-small-apps/apps/recipes/src/app/components/search/search.component.scss
new file mode 100644
index 0000000..0b66d92
--- /dev/null
+++ b/public/projects/angular-small-apps/apps/recipes/src/app/components/search/search.component.scss
@@ -0,0 +1,49 @@
+.form {
+ background: #fff;
+ border: 1px solid #d7d7d7;
+ border-radius: 5px;
+ box-shadow: 0 0 5px -3px #000000a5;
+ padding: 0.5rem;
+ margin-bottom: 1rem;
+
+ &__fieldset {
+ border: none;
+ display: flex;
+ flex-flow: row wrap;
+ align-items: flex-end;
+ gap: 0.5rem;
+ }
+
+ &__legend {
+ font-size: 1.2rem;
+ font-weight: 600;
+ margin: 0 0 0.5rem;
+ padding: 0;
+ }
+
+ &__item {
+ display: flex;
+ flex-flow: column wrap;
+ }
+
+ &__label {
+ color: hsl(0, 0%, 25%);
+ font-size: 0.85rem;
+ font-weight: 600;
+ letter-spacing: 1px;
+ text-transform: uppercase;
+ cursor: pointer;
+ margin-bottom: 0.2rem;
+ }
+
+ &__input,
+ &__select {
+ background: #fff;
+ border: 2px solid #195881;
+ padding: 0.5rem;
+ }
+
+ &__select {
+ cursor: pointer;
+ }
+}