Custom Theming See merge request Volkor/QuadFile!2pull/13/head
@ -1,130 +0,0 @@
|
||||
@import url(https://fonts.googleapis.com/css?family=Open+Sans:400,300,700);
|
||||
|
||||
/* Being lazy 101 */
|
||||
* {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
body {
|
||||
font-family: "Open Sans", "Lato", sans-serif;
|
||||
color: #ffffff;
|
||||
background-color: #1d1d1d;
|
||||
}
|
||||
|
||||
@keyframes rise {
|
||||
from {margin-top: 50px;opacity:0;}
|
||||
to {margin-top: 0;opacity:1;}
|
||||
}
|
||||
|
||||
@keyframes appear {
|
||||
from {opacity:0;}
|
||||
to {opacity:1;}
|
||||
}
|
||||
|
||||
.a4 {
|
||||
width: 100%;
|
||||
max-width: 920px;
|
||||
padding: 15px;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
animation: appear 0.75s ease-out;
|
||||
}
|
||||
|
||||
.a4 .title {
|
||||
font-size: 24pt;
|
||||
font-weight: 300;
|
||||
text-align: right;
|
||||
margin: 0;
|
||||
animation: rise 0.75s ease-out;
|
||||
}
|
||||
|
||||
.title {
|
||||
font-size: 34pt;
|
||||
font-weight: 300;
|
||||
margin-bottom: 20px;
|
||||
text-align: center;
|
||||
animation: appear 0.75s ease-out;
|
||||
}
|
||||
|
||||
.links {
|
||||
font-size: 0;
|
||||
margin-top: 20px;
|
||||
text-align: center;
|
||||
list-style: none;
|
||||
}
|
||||
|
||||
.links li {
|
||||
font-size: 12pt;
|
||||
display: inline-block;
|
||||
padding: 5px;
|
||||
width: 25%;
|
||||
animation: rise 1s ease-out;
|
||||
}
|
||||
|
||||
.links li a {
|
||||
color: inherit;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.links li a:hover {
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
.note {
|
||||
text-align: center;
|
||||
font-size: 8pt;
|
||||
color: #AAAAAA;
|
||||
animation: appear 0.75s ease-out;
|
||||
}
|
||||
|
||||
/* Restyle with custom margins */
|
||||
|
||||
p {
|
||||
margin-top: 5px;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
h1 {
|
||||
margin-top: 25px;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
h2 {
|
||||
margin-top: 25px;
|
||||
margin-bottom: 5px;
|
||||
}
|
||||
|
||||
.title a {
|
||||
color: inherit;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.title a:hover {
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
a {
|
||||
color: #33BB33;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
a:hover {
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
ul {
|
||||
list-style: none;
|
||||
padding-left: 15px;
|
||||
}
|
||||
|
||||
ul li:before {
|
||||
content: "- ";
|
||||
}
|
||||
|
||||
.dmca {
|
||||
width: 100%;
|
||||
height: auto;
|
||||
padding: 10px;
|
||||
}
|
@ -1,138 +0,0 @@
|
||||
@import url(https://fonts.googleapis.com/css?family=Open+Sans:400,300,700);
|
||||
|
||||
/* Being lazy 101 */
|
||||
* {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
body {
|
||||
font-family: "Open Sans", "Lato", sans-serif;
|
||||
color: #ffffff;
|
||||
background-color: #1d1d1d;
|
||||
}
|
||||
|
||||
@keyframes rise {
|
||||
from {margin-top: 50px;opacity:0;}
|
||||
to {margin-top: 0;opacity:1;}
|
||||
}
|
||||
|
||||
@keyframes appear {
|
||||
from {opacity:0;}
|
||||
to {opacity:1;}
|
||||
}
|
||||
|
||||
.page {
|
||||
width: 100%;
|
||||
max-width: 720px;
|
||||
padding: 10px;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
margin-top: 50vh;
|
||||
transform: translateY(-50%)
|
||||
}
|
||||
|
||||
.note {
|
||||
text-align: center;
|
||||
font-size: 8pt;
|
||||
color: #AAAAAA;
|
||||
animation: appear 0.75s ease-out;
|
||||
}
|
||||
|
||||
.title {
|
||||
font-size: 34pt;
|
||||
font-weight: 300;
|
||||
margin-bottom: 5px;
|
||||
text-align: center;
|
||||
animation: appear 0.75s ease-out;
|
||||
}
|
||||
|
||||
.links {
|
||||
font-size: 0;
|
||||
margin-top: 5px;
|
||||
text-align: center;
|
||||
list-style: none;
|
||||
}
|
||||
|
||||
.links li {
|
||||
font-size: 12pt;
|
||||
display: inline-block;
|
||||
padding: 5px;
|
||||
width: 15%;
|
||||
animation: rise 1s ease-out;
|
||||
}
|
||||
|
||||
@media all and (max-width: 360px){
|
||||
.links li {
|
||||
width: 40%;
|
||||
margin-bottom: 5px;
|
||||
padding: 5px;
|
||||
}
|
||||
}
|
||||
|
||||
@media all and (max-width: 600px){
|
||||
.links li {
|
||||
width: 20%;
|
||||
margin-bottom: 5px;
|
||||
padding: 5px;
|
||||
}
|
||||
}
|
||||
|
||||
.links li a, .fileLink {
|
||||
color: inherit;
|
||||
text-decoration: none;
|
||||
color: #999999;
|
||||
}
|
||||
|
||||
.links li a:hover, .fileLink {
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
.uploadForm {
|
||||
width: 100%;
|
||||
text-align: center;
|
||||
animation: appear 0.75s ease-out;
|
||||
}
|
||||
|
||||
.uploadButton {
|
||||
position: relative;
|
||||
margin-right: auto;
|
||||
margin-left: auto;
|
||||
max-width: 100%;
|
||||
cursor: pointer;
|
||||
background-color: #229922;
|
||||
border-radius: 10px;
|
||||
transition: background 0.1s ease-out;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.uploadButton:hover {
|
||||
background-color: #33BB33;
|
||||
}
|
||||
|
||||
@keyframes pulse {
|
||||
0% {background-color: #117711;}
|
||||
50% {background-color: #44CC44;}
|
||||
100% {background-color: #117711;}
|
||||
}
|
||||
|
||||
.uploading {
|
||||
animation: pulse 3s infinite;
|
||||
}
|
||||
|
||||
.uploadButton p {
|
||||
padding: 20px;
|
||||
font-weight: 300;
|
||||
font-size: 24pt;
|
||||
}
|
||||
|
||||
.uploadButton input[type="file"] {
|
||||
position: absolute;
|
||||
display: block;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
top: 0;
|
||||
right: 0;
|
||||
opacity: 0;
|
||||
}
|
Before Width: | Height: | Size: 107 KiB After Width: | Height: | Size: 107 KiB |
Before Width: | Height: | Size: 31 KiB After Width: | Height: | Size: 31 KiB |
Before Width: | Height: | Size: 3.0 KiB After Width: | Height: | Size: 3.0 KiB |
Before Width: | Height: | Size: 397 B After Width: | Height: | Size: 397 B |
Before Width: | Height: | Size: 637 B After Width: | Height: | Size: 637 B |
Before Width: | Height: | Size: 1.1 KiB After Width: | Height: | Size: 1.1 KiB |
@ -0,0 +1,26 @@
|
||||
*{margin:0;padding:0;box-sizing:border-box;}
|
||||
body{font-family:"Open Sans", "Lato", sans-serif;color:#ffffff;background-color:#1d1d1d;}
|
||||
@keyframes rise{from{margin-top:50px;opacity:0;}
|
||||
to{margin-top:0;opacity:1;}
|
||||
}
|
||||
@keyframes appear{from{opacity:0;}
|
||||
to{opacity:1;}
|
||||
}
|
||||
.a4{width:100%;max-width:920px;padding:15px;margin-left:auto;margin-right:auto;animation:appear 0.75s ease-out;}
|
||||
.a4 .title{font-size:24pt;font-weight:300;text-align:right;margin:0;animation:rise 0.75s ease-out;}
|
||||
.title{font-size:34pt;font-weight:300;margin-bottom:20px;text-align:center;animation:appear 0.75s ease-out;}
|
||||
.links{font-size:0;margin-top:20px;text-align:center;list-style:none;}
|
||||
.links li{font-size:12pt;display:inline-block;padding:5px;width:25%;animation:rise 1s ease-out;}
|
||||
.links li a{color:inherit;text-decoration:none;}
|
||||
.links li a:hover{text-decoration:underline;}
|
||||
.note{text-align:center;font-size:8pt;color:#AAAAAA;animation:appear 0.75s ease-out;}
|
||||
p{margin-top:5px;margin-bottom:10px;}
|
||||
h1{margin-top:25px;margin-bottom:10px;}
|
||||
h2{margin-top:25px;margin-bottom:5px;}
|
||||
.title a{color:inherit;text-decoration:none;}
|
||||
.title a:hover{text-decoration:underline;}
|
||||
a{color:#33BB33;text-decoration:none;}
|
||||
a:hover{text-decoration:underline;}
|
||||
ul{list-style:none;padding-left:15px;}
|
||||
ul li:before{content:"- ";}
|
||||
.dmca{width:100%;height:auto;padding:10px;}
|
@ -0,0 +1,33 @@
|
||||
*{padding:0;box-sizing:border-box;}
|
||||
html{background-color:#1d1d1d;background-size:cover;}
|
||||
body{font-family:"Open Sans", "Lato", sans-serif;color:#ffffff;display:block;}
|
||||
.btn{font-size:0;position:fixed;bottom:0;right:0;float:right;color:#ffffff;cursor:pointer;}
|
||||
.btn li{font-size:12pt;display:inline-block;}
|
||||
@keyframes rise{from{margin-top:50px;opacity:0;}
|
||||
to{margin-top:0;opacity:1;}
|
||||
}
|
||||
@keyframes appear{from{opacity:0;}
|
||||
to{opacity:1;}
|
||||
}
|
||||
.img{width: -moz-available;width: -webkit-fill-available;}
|
||||
.page{max-width: 720px;padding: 10px;margin-left: auto;margin-right: auto;display: flex;flex-direction: column;justify-content: center;min-height: 97vh;}
|
||||
.note{text-align:center;font-size:8pt;color:#AAAAAA;animation:appear 0.75s ease-out;}
|
||||
.title{font-size:34pt;font-weight:300;margin-bottom:30px;text-align:center;animation:appear 0.75s ease-out;}
|
||||
.links{font-size:0;margin-top:40px;text-align:center;list-style:none;}
|
||||
.links li{font-size:12pt;display:inline-block;padding:5px;width:15%;animation:rise 1s ease-out;}
|
||||
@media all and (max-width:360px){.links li{width:40%;margin-bottom:5px;padding:5px;}
|
||||
}
|
||||
@media all and (max-width:600px){.links li{width:20%;margin-bottom:5px;padding:5px;}
|
||||
}
|
||||
.links li a, .fileLink{color:inherit;text-decoration:none;color:#999999;}
|
||||
.links li a:hover, .fileLink{text-decoration:underline;}
|
||||
.uploadForm{width:100%;text-align:center;animation:appear 0.75s ease-out;}
|
||||
.uploadButton{position:relative;margin-right:auto;margin-left:auto;max-width:100%;cursor:pointer;background-color:#229922;border-radius:10px;transition:background 0.1s ease-out;}
|
||||
.uploadButton:hover{background-color:#33BB33;}
|
||||
@keyframes pulse{0%{background-color:#117711;}
|
||||
50%{background-color:#44CC44;}
|
||||
100%{background-color:#117711;}
|
||||
}
|
||||
.uploading{animation:pulse 3s infinite;}
|
||||
.uploadButton p{padding:20px;font-weight:300;font-size:24pt;}
|
||||
.uploadButton input[type="file"]{position:absolute;display:block;width:100%;height:100%;top:0;right:0;opacity:0;}
|