diff --git a/dist/index.html b/dist/index.html index 35332a6f..9cf6aa3f 100644 --- a/dist/index.html +++ b/dist/index.html @@ -4,11 +4,38 @@ - Webpack Starter Kit + Travel Tracker +
+

+ To Travel Is To Live! +

+
- turing logo - +
+
+
+

Upcoming Trips

+
+
+
+
+

Pending Trips

+
+
+
+
+

Past Trips

+
+
+
+
+

Book A Trip!

+
+
+
+
+
diff --git a/src/css/styles.css b/src/css/styles.css index d0637ec3..2dadc6bd 100644 --- a/src/css/styles.css +++ b/src/css/styles.css @@ -1,4 +1,27 @@ +body, html { + height: 100%; + padding: 0; + margin: 0; +} + +.welcome-message { + text-align: center; +} + +.main-wrapper { + width: 100% +} + +div { + border: 5px hotpink solid; + height: 150px; + width: auto; +} -body { - background: radial-gradient(circle, rgba(63,94,251,1) 0%, rgba(252,70,107,1) 100%); +.upcoming-trips-header, +.pending-trips-header, +.past-trips-header, +.book-a-trip-wrapper { + text-align: center; } +