web-cfw-loader/style.css

65 lines
1020 B
CSS
Raw Permalink Normal View History

2018-05-17 21:43:34 +00:00
@import url('https://fonts.googleapis.com/css?family=Open+Sans');
@media only screen and (max-device-width: 768px) {
#title h1 {
font-size: 5vw;
}
#pageBody, #mainForm h4, #goButton, #clearlogsbutton, .btn-group a, #title h4 {
2018-05-21 17:53:56 +00:00
font-size: 3vw;
}
#shouldDebug {
width: 4vw;
height: 4vw;
}
2018-05-21 17:53:56 +00:00
}
2018-05-17 19:58:31 +00:00
body {
margin-top: 0px;
margin-left: 0px;
2018-05-18 02:13:39 +00:00
margin-right: auto;
2018-05-17 21:43:09 +00:00
font-family: 'Open Sans', sans-serif;
2018-05-17 19:58:31 +00:00
}
2018-05-17 19:10:07 +00:00
#title {
2018-05-17 19:03:18 +00:00
text-align: center;
2018-05-19 14:24:31 +00:00
font-size: 1.5vw;
2018-05-19 14:15:50 +00:00
padding-top: 10vw;
padding-bottom: 10vw;
background-size: cover;
2018-05-17 19:03:18 +00:00
background-color: black;
2018-07-10 13:05:46 +00:00
background-image: url("background-image.jpg");
2018-05-17 19:18:32 +00:00
color: white;
margin-top: 0px;
top: 0px;
2018-05-17 18:50:32 +00:00
}
2018-05-17 22:04:39 +00:00
#uploadContainer {
margin-bottom: 8px;
}
2018-05-19 06:36:12 +00:00
#output {
height: 200px;
border: 1px solid black;
2018-05-19 09:16:29 +00:00
overflow: scroll;
2018-05-19 06:36:12 +00:00
}
#page-footer {
padding: 32px;
background: #222528;
color: whitesmoke;
}
#disclaimer {
text-align: center;
}
.divider-line {
border-bottom: 1px solid gainsboro;
2018-05-17 22:04:39 +00:00
}
.margin-top-md {
margin-top: 24px;
2018-05-17 22:04:39 +00:00
}