summaryrefslogtreecommitdiff
path: root/www/style.css
diff options
context:
space:
mode:
Diffstat (limited to 'www/style.css')
-rw-r--r--www/style.css80
1 files changed, 80 insertions, 0 deletions
diff --git a/www/style.css b/www/style.css
new file mode 100644
index 0000000..80c25c5
--- /dev/null
+++ b/www/style.css
@@ -0,0 +1,80 @@
+html {
+ box-sizing: border-box;
+}
+
+body {
+ font-family: sans-serif;
+ padding: 0;
+ margin: 0;
+ background: #EEE;
+}
+
+header {
+ font-size: 200%;
+ background: #ddd;
+ padding: 10px;
+}
+
+header img {
+ vertical-align: middle;
+}
+
+.btn {
+ padding: 10px;
+ background: white;
+ border: solid 1px #999;
+ border-radius: 7px;
+}
+
+.btn:hover {
+ background: #EEE;
+}
+
+.btn.primary {
+ background: #6ACC62;
+}
+
+.btn.primary:hover {
+ background: #6FD166;
+}
+
+.card {
+ margin: 25px;
+ padding: 0px 10px;
+ border: solid 1px white;
+ border-radius: 7px;
+ background: white;
+ position: relative;
+}
+
+.card .actions {
+ text-align: right;
+}
+
+.card img {
+ vertical-align: middle;
+}
+
+.sadflower {
+ text-align: center;
+ font-style: italic;
+}
+
+.level {
+ margin-left: 20px;
+ font-weight: bold;
+ font-size: 200%;
+}
+
+.edit {
+ cursor: pointer;
+ position: absolute;
+ top: 10px;
+ right: 10px;
+}
+
+.detail {
+ font-size: small;
+ font-style: italic;
+ color: #555;
+}