summaryrefslogtreecommitdiff
path: root/client/style/main.css
diff options
context:
space:
mode:
Diffstat (limited to 'client/style/main.css')
-rw-r--r--client/style/main.css66
1 files changed, 66 insertions, 0 deletions
diff --git a/client/style/main.css b/client/style/main.css
new file mode 100644
index 0000000..b7edb5b
--- /dev/null
+++ b/client/style/main.css
@@ -0,0 +1,66 @@
+body {
+ font-family: 'Lato', sans-serif;
+ padding: 0px;
+ margin: 0px;
+
+ --primary-color: #007936;
+ --accent-color: #eee;
+ --light-text-color: rgb(107, 107, 107);
+}
+
+/* Describes the styling of the one and only emenent with id="mainheader", note the # in front of mainheader */
+#mainheader {
+ background-color: var(--primary-color);
+ font-size: 3rem;
+ color: white;
+}
+
+#logo-header {
+ display: flex;
+ justify-content: flex-start;
+ align-items: center;
+}
+
+#logo-header img {
+ margin-left: 30px;
+}
+
+main {
+ padding: 25px;
+}
+
+nav
+{
+ height: 2rem;
+ line-height: 2rem;
+ background-color: var(--accent-color);
+}
+
+/* Describes the styling of all elements with class="parkname", note the . in front of parkname */
+.parkname {
+ background-color: var(--primary-color);
+ color: white;
+ font-size: 2rem;
+ font-weight: bold;
+ text-transform: uppercase;
+}
+
+/* Describes the styling of all <article> elements */
+article {
+ border: 1px solid var(--primary-color);
+ color: var(--light-text-color);
+ margin: 5px;
+}
+
+.order {
+ padding-top: 25px;
+}
+
+.badge {
+ background-color: red;
+ display: none;
+ color: white;
+ font-weight: bold;
+ width: 25px;
+ border-radius: 25px;
+} \ No newline at end of file