quadfile/static/style.css

65 lines
898 B
CSS
Raw Normal View History

2015-12-23 13:11:38 +00:00
@import url(https://fonts.googleapis.com/css?family=Lato:700,300,400,100);
/* Being lazy 101 */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: "Lato", sans-serif;
color: #ffffff;
2015-12-23 13:41:25 +00:00
background-color: #2d2d2d;
2015-12-23 13:11:38 +00:00
}
.header {
width: 100%;
padding: 10px;
}
.header h1 {
font-size: 36pt;
font-weight: 300;
text-align: center;
}
.header .inner {
width: 100%;
max-width: 920px;
margin-left: auto;
margin-right: auto;
}
.page {
width: 100%;
max-width: 920px;
padding: 10px;
margin-left: auto;
margin-right: auto;
}
.uploadForm {
2015-12-23 13:41:25 +00:00
margin-top: 80px;
2015-12-23 13:11:38 +00:00
width: 100%;
text-align: center;
}
2015-12-23 13:41:25 +00:00
.uploadButton {
background-color: #229922;
border-radius: 10px;
2015-12-23 13:11:38 +00:00
}
2015-12-23 13:41:25 +00:00
.uploadButton p {
2015-12-23 13:11:38 +00:00
padding: 20px;
}
2015-12-23 13:41:25 +00:00
.uploadButton input[type="file"] {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
opacity: 0;
z-index: 900;
2015-12-23 13:11:38 +00:00
}