diff --git a/kibicara-frontend/src/app/dashboard/hoods/hoods.component.html b/kibicara-frontend/src/app/dashboard/hoods/hoods.component.html index eed2ef6..d89283f 100644 --- a/kibicara-frontend/src/app/dashboard/hoods/hoods.component.html +++ b/kibicara-frontend/src/app/dashboard/hoods/hoods.component.html @@ -1,2 +1,32 @@ -

hoods works!

- +
+
+

Your Hoods

+

+ Your role as an hood admin is to build a community in real life that + supports each other. Kibicara hoods will support you by providing the + technology for your community to florish! +

+ +
Configure your hoods
+ + + +
+ settings +
+ Your Hood - {{ hood.name }} +
+
+ +
+
+
+ +
+ +
diff --git a/kibicara-frontend/src/app/dashboard/hoods/hoods.component.scss b/kibicara-frontend/src/app/dashboard/hoods/hoods.component.scss index e69de29..6b48f55 100644 --- a/kibicara-frontend/src/app/dashboard/hoods/hoods.component.scss +++ b/kibicara-frontend/src/app/dashboard/hoods/hoods.component.scss @@ -0,0 +1,62 @@ +a { + text-decoration: none; +} + +.title { + text-align: left; + padding-top: 10%; + padding-left: 15%; + padding-right: 15%; + @media (max-width: 600px) { + text-align: center; + padding-left: 10%; + padding-right: 10%; + } +} + +h1 { + font-size: 2.3125rem; + line-height: 3rem; +} + +p { + color: grey; + font-size: 1.4375rem; + line-height: 1.875rem; +} + +.container { + display: grid; + grid-template-columns: 1fr 1fr; + align-items: stretch; + justify-items: stretch; + height: 100%; + @media (max-width: 600px) { + grid-template-columns: 1fr; + } +} + +.banner { + background: url("../../../assets/hoods.jpg"); + background-size: 90%; + display: block; + width: 100%; + height: 100%; + z-index: -1; + opacity: 0.5; +} + +.add-hood-button { + margin-top: 30px; +} + +.list-entry { + text-align: left; + margin-left: 10px; + margin-top: 5px; +} + +.list-entry-container { + display: grid; + grid-template-columns: 30px 1fr; +} diff --git a/kibicara-frontend/src/assets/hoods.jpg b/kibicara-frontend/src/assets/hoods.jpg new file mode 100644 index 0000000..65af816 Binary files /dev/null and b/kibicara-frontend/src/assets/hoods.jpg differ