aboutsummaryrefslogtreecommitdiff
path: root/styles.css
diff options
context:
space:
mode:
authorMark Powers <markppowers0@gmail.com>2020-09-04 22:28:08 -0500
committerMark Powers <markppowers0@gmail.com>2020-09-04 22:28:08 -0500
commit3ad949e08e8e289d6af3b629ab62d686cbef7e48 (patch)
treed6855cf1333d8c9e9ec7078cef0842a2b13000d6 /styles.css
Initial commit
Diffstat (limited to 'styles.css')
-rw-r--r--styles.css93
1 files changed, 93 insertions, 0 deletions
diff --git a/styles.css b/styles.css
new file mode 100644
index 0000000..2a1c06d
--- /dev/null
+++ b/styles.css
@@ -0,0 +1,93 @@
+body {
+ width: 80%;
+ margin-left: 10%;
+ background-color: #333;
+}
+
+.items {
+ display: flex;
+ flex-wrap: wrap;
+}
+
+a.item,
+a.item:visited {
+ color: #ddd;
+ display: block;
+ font-size: 24pt;
+ margin-top: 10px;
+ margin-left: 10px;
+ border: 1px solid #ddd;
+ padding: 10px;
+ text-decoration: none;
+ min-width: 10em;
+ min-height: 2em;
+ text-align: center;
+ line-height: 2em;
+ flex-grow: 1;
+ box-shadow: 0 5px #999;
+}
+
+a:hover,
+a:hover:visited {
+ background-color: #222;
+}
+
+a:active {
+ transform: translateY(4px);
+ box-shadow: 0 1px #666;
+}
+
+span.search {
+ width: 100%;
+ display: flex;
+}
+
+span.icon {
+ margin-right: 10px;
+}
+
+input {
+ height: 48px;
+ font-size: 28px;
+ flex-grow: 4;
+ margin-left: 10px;
+}
+
+button {
+ height: 48px;
+ font-size: 28px;
+ margin-left: 20px;
+ flex-grow: 1;
+}
+
+.weather {
+ color: #fff;
+ text-align: center;
+ font-size: 28px;
+ line-height: 50px;
+ text-align: center;
+}
+
+.weather td {
+ width: 200px;
+}
+
+#weatherIcon {
+ width: 100px;
+}
+.forecast{
+ color: #fff;
+ text-align: center;
+ line-height: 50px;
+ text-align: center;
+}
+.forecast th, .forecast td {
+ border: 1px solid white;
+ margin: 0px;
+}
+.forecast th {
+ font-size: 28px;
+}
+.forecast td {
+ font-size: 16px;
+} \ No newline at end of file