+
+
+
{{timezone.name}}
+ {{timezone.time?.toFormat('tt')}}
+
+
+
\ No newline at end of file
diff --git a/src/app/timezone/components/timezone-list/timezone-list.component.scss b/src/app/timezone/components/timezone-list/timezone-list.component.scss
new file mode 100644
index 0000000..97e7fa3
--- /dev/null
+++ b/src/app/timezone/components/timezone-list/timezone-list.component.scss
@@ -0,0 +1,57 @@
+.container {
+ display:flex;
+ align-items: center;
+ flex-direction: column;
+ justify-content: center;
+ width: 100%;
+ margin: 0;
+ padding: 0;
+}
+
+.single-container {
+ display:flex;
+ align-items: center;
+ flex-direction: column;
+ justify-content: center;
+ height: 100%;
+ width: 100%;
+ margin: 0;
+ padding: 0;
+}
+
+@media (max-width: 350px) {
+ .timezone {
+ font-size: 1.0em;
+ }
+
+ .time {
+ font-size: 0.5em
+ }
+}
+
+@media (min-width:350px) and (max-width: 500px) {
+ .timezone {
+ font-size: 1.5em;
+ }
+
+ .time {
+ font-size: 1.0em
+ }
+}
+
+.timezone {
+ font-family: "Open Sans", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
+ color: whitesmoke;
+ margin-bottom: 0;
+}
+
+.time {
+ font-family: "Open Sans", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
+ color: whitesmoke;
+ margin-top: 0;
+}
+
+.background {
+ background: #2e2e2e;
+ height: 100%;
+}
\ No newline at end of file
diff --git a/src/app/timezone/components/timezone-list/timezone-list.component.spec.ts b/src/app/timezone/components/timezone-list/timezone-list.component.spec.ts
new file mode 100644
index 0000000..e02259e
--- /dev/null
+++ b/src/app/timezone/components/timezone-list/timezone-list.component.spec.ts
@@ -0,0 +1,25 @@
+import { ComponentFixture, TestBed } from '@angular/core/testing';
+
+import { TimezoneListComponent } from './timezone-list.component';
+
+describe('TimezoneListComponent', () => {
+ let component: TimezoneListComponent;
+ let fixture: ComponentFixture