diff options
Diffstat (limited to 'style.css')
-rw-r--r-- | style.css | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/style.css b/style.css new file mode 100644 index 0000000..aa9af4d --- /dev/null +++ b/style.css @@ -0,0 +1,38 @@ +{ + padding: 0; + margin: 0; +} +body { + overflow-x: hidden; +} +canvas { + width: 100vw; + height: 100vh; + display: block; + position: fixed; + top: 0; + left: 0; + z-index: -9999; +} +#textbox { + margin: 10vh auto 0 auto; + background: rgba(255, 0, 0,0.8); + border-radius: 30px/50px; + padding: 5vh 2vw; + width: 30vw; +} +h1 { + text-align: center; + font-family: 'Open Sans Condensed', sans-serif; + font-size: 300%; + color: rgba(0, 255, 0,0.5); +} +p,ul { + font-family: 'Asar', serif; +} +a { + text-decoration: none; +} +a:visited { + color: blue; +} |