summaryrefslogtreecommitdiff
path: root/recipeBuddy/src/app/add-recipe/add-recipe.component.css
diff options
context:
space:
mode:
authorTucker Evans <tuckerevans24@gmail.com>2019-12-07 11:51:22 -0500
committerTucker Evans <tuckerevans24@gmail.com>2019-12-08 15:03:07 -0500
commit2a89221eee68bc26ea3e90c380ce983f5a0985f0 (patch)
tree501a272365dca078ec5d63765a940bdf9e35954d /recipeBuddy/src/app/add-recipe/add-recipe.component.css
parent3b43f292a605717d08d3623e09bf35a4e0301414 (diff)
Add removing Ingredients/Steps from add form
Diffstat (limited to 'recipeBuddy/src/app/add-recipe/add-recipe.component.css')
-rw-r--r--recipeBuddy/src/app/add-recipe/add-recipe.component.css30
1 files changed, 29 insertions, 1 deletions
diff --git a/recipeBuddy/src/app/add-recipe/add-recipe.component.css b/recipeBuddy/src/app/add-recipe/add-recipe.component.css
index 901e02d..9d74c53 100644
--- a/recipeBuddy/src/app/add-recipe/add-recipe.component.css
+++ b/recipeBuddy/src/app/add-recipe/add-recipe.component.css
@@ -1,15 +1,43 @@
.form {
min-width: 150px;
max-width: 750px;
- width: 100%;
+ width: 95%;
margin-left: auto;
margin-right: auto;
+ padding-left: 5px;
+ padding-right: 5px;
}
.full-width {
width: 100%;
}
+.half-width {
+ width: 50%;
+ padding: 1%;
+ margin-left:auto;
+ margin-right:auto;
+}
+
+.quarter-width {
+ width: 25%;
+ padding: 1%;
+ margin-left:auto;
+ margin-right:auto;
+}
+
+.third-width {
+ width: 33%;
+ padding: 1%;
+ margin-left:auto;
+ margin-right:auto;
+}
+
td {
padding-right: 8px;
}
+
+.center {
+ margin-left:auto;
+ margin-right:auto;
+}