summaryrefslogtreecommitdiff
path: root/style.css
diff options
context:
space:
mode:
authorLogan Hunt <loganthebean222@gmail.com>2017-07-11 21:14:14 -0700
committerGitHub <noreply@github.com>2017-07-11 21:14:14 -0700
commit2d108095a2cec042375dbb935b5261e2339e4fcc (patch)
tree969f4e7f3eba70e5e7e9699750bc3db7c4af880f /style.css
parentcd928ffaae6ff879df180600b337edeb04e2ad62 (diff)
downloadold-src-backup-2d108095a2cec042375dbb935b5261e2339e4fcc.tar.gz
old-src-backup-2d108095a2cec042375dbb935b5261e2339e4fcc.zip
Add files via upload
Diffstat (limited to 'style.css')
-rw-r--r--style.css38
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;
+}