summaryrefslogtreecommitdiff
path: root/recipeBuddy/src/app/main-page/main-page.component.css
diff options
context:
space:
mode:
authorJacob <gatelyjm@clarkson.edu>2019-12-03 08:58:29 -0500
committerTucker Evans <tuckerevans24@gmail.com>2019-12-07 15:02:44 -0500
commit33ff048f5efb30e767780f24424588af562ea400 (patch)
treee37e66274d43269bc4d606aa325477ffa37aca67 /recipeBuddy/src/app/main-page/main-page.component.css
parent445816bc374be098156b33e2c7051091f391786f (diff)
Added new recipe card and main page components. Added new files in each
of these components for html, css, ts, and spec.ts. HTML and CSS files were updated with code from stackblitz. Apparently this thing also thinks I changed the app.module.ts file, but I do not think I did.
Diffstat (limited to 'recipeBuddy/src/app/main-page/main-page.component.css')
-rw-r--r--recipeBuddy/src/app/main-page/main-page.component.css29
1 files changed, 29 insertions, 0 deletions
diff --git a/recipeBuddy/src/app/main-page/main-page.component.css b/recipeBuddy/src/app/main-page/main-page.component.css
new file mode 100644
index 0000000..4dffa18
--- /dev/null
+++ b/recipeBuddy/src/app/main-page/main-page.component.css
@@ -0,0 +1,29 @@
+p {
+ font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
+}
+
+h1 {
+ text-align: center;
+ font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
+}
+h2 {
+font-family:'Times New Roman', Times, serif;
+}
+button{
+ background-color: #D87620;
+ color: white;
+ padding : 15px 25px;
+ cursor: pointer;
+}
+#container{
+ width:100%;
+ }
+#left{
+ float:left;width:100px;
+ }
+#right{
+ float:right;width:175px;
+ }
+#center{
+ margin:0 auto;width:100px;
+ } \ No newline at end of file