diff --git a/static/colors.css b/static/colors.css new file mode 100644 index 0000000..8608ff1 --- /dev/null +++ b/static/colors.css @@ -0,0 +1,44 @@ +.redBG { + color: #F9F9F9; + background-color: #BF3128; +} + +.blueBG { + color: #F9F9F9; + background-color: #0059A6; +} + +.orangeBG { + background-color: #FF851B; + color: #111; +} + +.grayBG { + background-color: #AAAAAA; + color: #111; +} + +.blackBG { + background-color: #111; + color: #F9F9F9; +} + +.yellowBG { + background-color: #FFDC00; + color: #111111; +} + +.greenBG { + background-color: #2ECC40; + color: #F9F9F9; +} + +.silverBG { + background-color: #DDDDDD; + color: #111; +} + +.whiteBG { + background-color: #F9F9F9; + color: #111; +} \ No newline at end of file diff --git a/static/info.html b/static/info.html new file mode 100644 index 0000000..acaf1d6 --- /dev/null +++ b/static/info.html @@ -0,0 +1,5170 @@ + QuadFile info +

Limits

+ +

Allowed filetypes

+ +

Tracking

+

Views are the only metric tracked on this site.

+

For this I use Piwik.

+

Contact

+

You may contact me by mail at domen178[at]gmail.com

+

Special inqueries and serious matters will be redirected to a different mail address.

+

You will be informed of this in a mail from domen178[at]gmail.com if this is the case.

+

For less formal requests you may mention me on twitter.

+

Credit

+

I couldn't have done this alone.

+

Okay, maybe I could. But not with the same results.

+

I would especially like to thank the leafcat team for helping me out quite a bit.

+

Some people who have helped a lot include:

+ +

Why?

+
+

The goal of this site was to learn PHP. + However, as I've made it, I ended up making it public. + So thank you to everyone who uses it.

+
+

People using my work is only more motivation to keep doing it, so I thank you dearly for that, whomever reads this

+

Source code

+

The source code is now available on GitHub

+

It might not always be up to date.

+ + diff --git a/static/logo.png b/static/logo.png new file mode 100644 index 0000000..cdf3d78 Binary files /dev/null and b/static/logo.png differ diff --git a/static/view.css b/static/view.css new file mode 100644 index 0000000..31fe9da --- /dev/null +++ b/static/view.css @@ -0,0 +1,110 @@ +body { + color: #F9F9F9; + font-family: sans-serif; + margin: 0; + padding: 0; + padding-top: 15px; + padding-bottom: 15px; + background-color: #111; +} + +.topBar { + display: inline; + position: fixed; + top: 0px; + width: 100%; + padding: 10px; + padding-left: 30px; + padding-right: 30px; + margin: 0; + height: 30px; + background-color: rgba(17, 17, 17, 0.85); + z-index: 10; +} + +.subtle { + font-size: 12px; + opacity: 0.6; +} + +a, a:visited, a:hover { + color: #FF851B; +} + +.dltext { + color: #FF851B; + text-align: center; +} + +.videoprev { + display: block; + margin-right: auto; + margin-left: auto; + height: auto; +} + +.audioprev { + display: block; + margin-top: 60px; + margin-right: auto; + margin-left: auto; + min-width: 640px; + max-width: 1024px; + height: auto; +} + +.button { + border: solid 4px #F9F9F9; + color: #F9F9F9; + font-weight: bold; + border-radius: 0px; + display: inline-block; + margin: 5px; + padding: 14px; + font-size: 24px; + transition: background 0.15s ease-in-out; +} + +.uploadinterface { + width: 420px; + display: block; + margin-right: auto; + margin-left: auto; + height: auto; +} + +.fileselector { + font-size: 18px; + color: #FF851B; +} + +.submitbutton { + font-size: 18px; +} + +.submitbutton:hover { + border-color: #FF851B; +} + +.buttoncontainer { + margin-top: 20px; + margin-bottom: 20px; + display: block; + max-width: 440px; + margin-left: auto; + margin-right: auto; +} + +.button:hover { + background-color: rgba(249, 249, 249, 1); + color: rgb(255, 133, 27); +} + +img { + display: block; + border: solid 5px #2d2d2d; + margin-right: auto; + margin-left: auto; + max-width: 80%; + height: auto; +}