diff options
author | rohan09-raj <[email protected]> | 2022-07-17 23:17:33 +0530 |
---|---|---|
committer | rohan09-raj <[email protected]> | 2022-07-17 23:17:33 +0530 |
commit | c44c85af7ade620419c097d9fc8ce4c9c66c00a7 (patch) | |
tree | fa9b5f6322088ad75a1675780e47807efbc3108f /src/index.css | |
parent | e571b19f3c3215fbb7436d2f023eca02c0955e4e (diff) |
Built a basic folder structure
Diffstat (limited to 'src/index.css')
-rw-r--r-- | src/index.css | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/src/index.css b/src/index.css index ec2585e..c05147c 100644 --- a/src/index.css +++ b/src/index.css @@ -1,13 +1,19 @@ -body { +* { margin: 0; - font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', - 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', + padding: 0; +} + +body { + font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", + "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; + height: 100%; + width: 100%; } code { - font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New', + font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New", monospace; } |