aboutsummaryrefslogtreecommitdiffstats
path: root/src/styles/globals.css
diff options
context:
space:
mode:
authorArmand Philippot <git@armandphilippot.com>2021-12-12 23:23:52 +0100
committerArmand Philippot <git@armandphilippot.com>2021-12-12 23:23:52 +0100
commit6c1cbe9f4d956ad6140c780b2f88f5de4e4eee67 (patch)
tree86ecc5b223a771d90dd977bc3917a8dacedb4128 /src/styles/globals.css
parentf3d462c8183598362605dc53589583f2859f20b9 (diff)
build: move global styles and pages inside src directory
Diffstat (limited to 'src/styles/globals.css')
-rw-r--r--src/styles/globals.css16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/styles/globals.css b/src/styles/globals.css
new file mode 100644
index 0000000..e5e2dcc
--- /dev/null
+++ b/src/styles/globals.css
@@ -0,0 +1,16 @@
+html,
+body {
+ padding: 0;
+ margin: 0;
+ font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen,
+ Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
+}
+
+a {
+ color: inherit;
+ text-decoration: none;
+}
+
+* {
+ box-sizing: border-box;
+}