From d59419779f8e051ec501c1edbe51d1a1f05789ef Mon Sep 17 00:00:00 2001 From: TangledTippet Date: Mon, 15 Aug 2016 16:29:42 -0600 Subject: [PATCH] first_commit --- display-exercise.html | 14 ++++++++++++- styles/display-page.css | 46 +++++++++++++++++++++++++++++++++++++++++ 2 files changed, 59 insertions(+), 1 deletion(-) diff --git a/display-exercise.html b/display-exercise.html index 433b6cba..2ee7c492 100644 --- a/display-exercise.html +++ b/display-exercise.html @@ -17,6 +17,18 @@ -

Placeholder!

+
+
+
+
+
+ +
+
+
+
+
+
+ \ No newline at end of file diff --git a/styles/display-page.css b/styles/display-page.css index e69de29b..8ad5bf57 100644 --- a/styles/display-page.css +++ b/styles/display-page.css @@ -0,0 +1,46 @@ +.outer-box { + width:800px; + height:800px; + border: 1px solid black; + font-size: 0px; + margin-left: auto; + margin-right: auto; +} + +.green { + + background-color: green; + height:200px; + width: 50%; + display: inline-block; + font-size: 0px; +} + +.blue { + background-color: blue; + height:200px; + width: 50%; + display:inline-block; +} + +.grey { + background-color: grey; + height: 300px; + width: 33.33%; + display: inline-block; +} + +.black { + background-color: black; + height: 300px; + width: 33.33%; + display: inline-block; +} + +.orange { + background-color: orange; + height: 300px; + width: 33.33%; + display: inline-block; + +} \ No newline at end of file