From 4661124acebed56184bb197e9d5512ced78a12c0 Mon Sep 17 00:00:00 2001 From: Arjun Venkatakrishnan Date: Tue, 28 Mar 2017 16:17:49 +0000 Subject: [PATCH] Test 12 --- index.php | 2 +- style.css | 49 ++++++++++++++++++++++++++++++++++++++++++++----- 2 files changed, 45 insertions(+), 6 deletions(-) diff --git a/index.php b/index.php index 4819ddd..a8d9043 100644 --- a/index.php +++ b/index.php @@ -174,7 +174,7 @@ function update() { -
+

CLONE CLICKER


diff --git a/style.css b/style.css index 47e6248..ae7fa0d 100644 --- a/style.css +++ b/style.css @@ -1,6 +1,45 @@ #health{ - background-color: darkred; - color: white; - display: block; - white-space: nowrap; -} \ No newline at end of file + background-color: darkred; + color: white; + display: block; + white-space: nowrap; +} +.row{ + display: flex; + +} +.col{ + flex: 1; + padding: 1em; + +} +@media only screen and (max-width: 500px) { + .col{ + flex: 0.1; + padding: 1em; + + } +} +#footer{ + padding-top: 2em; + border-top: 1px #222; +} + body { + background-color: #fff; + + } + button{ + background-color: #4CAF50; + border: none; + color: white; + padding: 15px 32px; + text-align: center; + text-decoration: none; + display: inline-block; + font-size: 16px; + margin: 4px 2px; + cursor: pointer; + } +img{ + vertical-align:middle; +}