diff options
| author | 8cy <[email protected]> | 2020-06-22 15:47:46 -0700 |
|---|---|---|
| committer | 8cy <[email protected]> | 2020-06-22 15:47:46 -0700 |
| commit | e34f19a50bda8de4812e9c2c364c303e1fd7ebfe (patch) | |
| tree | dd980c424adbb82771cd0fe41a5f4d7418af73f4 /index.css | |
| download | monkey-type-desktop-e34f19a50bda8de4812e9c2c364c303e1fd7ebfe.tar.xz monkey-type-desktop-e34f19a50bda8de4812e9c2c364c303e1fd7ebfe.zip | |
woah :star:
Diffstat (limited to 'index.css')
| -rw-r--r-- | index.css | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/index.css b/index.css new file mode 100644 index 0000000..f8d0840 --- /dev/null +++ b/index.css @@ -0,0 +1,43 @@ +html, +body { + padding: 0; + margin: 0; + background: transparent; +} + +/* Use OS default fonts */ +body { + font-family: -apple-system, + BlinkMacSystemFont, + 'Segoe UI', + Roboto, + Oxygen-Sans, + Ubuntu, + Cantarell, + 'Helvetica Neue', + sans-serif, + 'Apple Color Emoji', + 'Segoe UI Emoji', + 'Segoe UI Symbol'; + text-rendering: optimizeLegibility; + font-feature-settings: 'liga', 'clig', 'kern'; +} + +header { + position: absolute; + width: 500px; + height: 250px; + top: 50%; + left: 50%; + margin-top: -125px; + margin-left: -250px; + text-align: center; +} + +header h1 { + font-size: 60px; + font-weight: 200; + margin: 0; + padding: 0; + opacity: 0.7; +} |