summaryrefslogtreecommitdiff
path: root/src/medicmate.css
diff options
context:
space:
mode:
Diffstat (limited to 'src/medicmate.css')
-rw-r--r--src/medicmate.css71
1 files changed, 71 insertions, 0 deletions
diff --git a/src/medicmate.css b/src/medicmate.css
new file mode 100644
index 0000000..54174fc
--- /dev/null
+++ b/src/medicmate.css
@@ -0,0 +1,71 @@
+body {
+ font-size: 16px;
+ font-family: 'Roboto', sans-serif;
+ font-weight: 300;
+ padding: 0;
+ margin: 0;
+ color: #333;
+}
+
+h1 {
+ margin: 0;
+ font-size: 2em;
+ font-weight: 300;
+ color: #dd8800;
+}
+
+h2 {
+ font-size: 1.2em;
+ font-weight: 300;
+ color: #dd8800;
+}
+
+header {
+ margin: 0;
+ background-color: #dd8800;
+ color: white;
+ text-align: center;
+ padding: 1em;
+
+}
+
+header h1 {
+ color: white;
+}
+
+main {
+ padding: 1em;
+ margin-left: auto;
+ margin-right: auto;
+ max-width: 600px;
+}
+
+footer {
+ text-align: center;
+ color: #999;
+}
+
+li {
+ padding: 0.5em;
+}
+
+p {
+ margin-top: 1em;
+ margin-bottom: 0;
+}
+
+a {
+ color: #00e;
+ text-decoration: none;
+}
+
+a:hover {
+ text-decoration: underline;
+}
+
+@media (min-width: 600px) {
+ header {
+ padding: 3em;
+ }
+}
+