From 83d6459f4ab64e798d345d5bedc62c41e0ec6d59 Mon Sep 17 00:00:00 2001 From: Luke Montoya Date: Tue, 24 Apr 2018 14:50:12 -0700 Subject: [PATCH] completed --- index.html | 37 +++++++++++++++++++++- style.css | 90 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 126 insertions(+), 1 deletion(-) diff --git a/index.html b/index.html index 36ce3bc..e3fdf59 100644 --- a/index.html +++ b/index.html @@ -6,6 +6,41 @@ - +
+
+
+ +
+
+ +
+
+ +
+
+ +
+
+
+ +
+
+
+
+ +
+
+ +
+
+ +
+
+
+
+
+ + + diff --git a/style.css b/style.css index e69de29..c665a0d 100644 --- a/style.css +++ b/style.css @@ -0,0 +1,90 @@ +body{ + height:100vh; + width: 100vw; +} + +header{ + width: 100%; + background-color: #303030; +} + +.coin_purse{ + display: flex; + flex-direction: row; + +} + +.small_coin{ + align-items: flex-start; + padding: 10px; +} + +.ethiopia1{ + padding: 2px; + max-width: 90px; + max-height: 90px; +} + +#spinner{ + animation-name: spin; + animation-duration: 5000ms; + animation-iteration-count: infinite; + animation-timing-function: linear; +} + +@keyframes spin { + from { + transform:rotate(0deg); + } + to { + transform:rotate(360deg); + } +} + +.small_coin:nth-child(4){ + margin-left: auto; +} +.bottom{ + height: 100%; + +} + +.left{ + background: purple; + width: 400px; + height: 100%; + +} + +.liberty{ + background-size: contain; + background-image: url("images/usa1.png"); + background-repeat: no-repeat; + background-position: center; + height: 300px; + text-align: center; +} + +.back{ + +} + +.img { + padding: 2px; + height: 30px; + width: 30px; + animation-name: spin; + animation-duration: 5000ms; + animation-iteration-count: infinite; + animation-timing-function: linear; +} + +.fixed { + position: fixed; + left: 0; + bottom: 0; + width: 100%; + background-color: #303030; + color: orange; + text-align: center; +}