aboutsummaryrefslogtreecommitdiff
path: root/public/global.css
diff options
context:
space:
mode:
authorJoris2017-03-04 12:30:50 +0100
committerJoris2017-03-04 12:30:50 +0100
commitf466c27fedc73e37132259930efad4f25d01f0b9 (patch)
treec427ae50ecd6e62f2726c810d706f23cba46e802 /public/global.css
parentd38f069dc6e98c19382b29e99c8ebfd9e370fd78 (diff)
downloadreading-f466c27fedc73e37132259930efad4f25d01f0b9.tar.gz
reading-f466c27fedc73e37132259930efad4f25d01f0b9.tar.bz2
reading-f466c27fedc73e37132259930efad4f25d01f0b9.zip
Transform global style from Scala to CSS
Diffstat (limited to 'public/global.css')
-rw-r--r--public/global.css26
1 files changed, 26 insertions, 0 deletions
diff --git a/public/global.css b/public/global.css
new file mode 100644
index 0000000..d9a82c3
--- /dev/null
+++ b/public/global.css
@@ -0,0 +1,26 @@
+html {
+ box-sizing: border-box;
+}
+
+body {
+ position: absolute;
+ width: 100%;
+ height: 100%;
+}
+
+a {
+ color: inherit;
+}
+
+*, *:before, *:after {
+ box-sizing: inherit;
+}
+
+button {
+ cursor: pointer;
+ display: flex;
+ background-color: initial;
+ color: black;
+ border: none;
+ font-size: inherit;
+}