From 47254348140fce18c985e9a0ffb592390b226c80 Mon Sep 17 00:00:00 2001 From: schencej Date: Thu, 12 Dec 2019 11:56:57 -0500 Subject: added main page --- .../src/app/recipe-card/recipe-card.component.css | 28 ++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 recipeBuddy/src/app/recipe-card/recipe-card.component.css (limited to 'recipeBuddy/src/app/recipe-card/recipe-card.component.css') diff --git a/recipeBuddy/src/app/recipe-card/recipe-card.component.css b/recipeBuddy/src/app/recipe-card/recipe-card.component.css new file mode 100644 index 0000000..b29ad9a --- /dev/null +++ b/recipeBuddy/src/app/recipe-card/recipe-card.component.css @@ -0,0 +1,28 @@ +.example-viewport { + height: 1000px; + width: 100%; + display: flex; + margin-left: auto; + margin-right: auto; +} +button{ + float: left; + padding: 10px; +} +.example-card { + float: left; + width: 100%; + margin: 10px; +} +.example-card:hover { + border: solid; +} +#card-title { + font-weight: bold; + cursor: pointer; +} +#cardContainer { + width: 35%; + padding: 5%; + float: left; +} -- cgit v1.1