web-ft/style.css

83 lines
1.5 KiB
CSS
Raw Normal View History

2019-10-23 12:53:42 +02:00
@viewport {
width: device-width;
zoom: 1;
}
2019-10-22 15:49:57 +02:00
body{
position: relative;
min-height: 100vh;
margin: 0;
}
.core {
font-family: 'Roboto', sans-serif;
max-width: 900px;
2019-04-28 15:27:55 +02:00
margin: auto;
2019-10-22 15:49:57 +02:00
padding: 5px;
2019-04-28 15:27:55 +02:00
padding-top:50px;
2019-10-22 15:49:57 +02:00
text-align: center;
padding-bottom: 85px;
}
@media (min-width: 370px) {
.core {
padding-bottom: 65px;
}
}
@media (min-width: 600px) {
.core {
padding-bottom: 45px;
}
}
h1 {
font-size: 38;
2019-04-28 15:27:55 +02:00
}
.dragndrop {
margin-top: 5%;
margin-bottom: 3%;
2019-04-28 15:27:55 +02:00
background-color: #a3a3a3;
padding: 1px;
padding-top: 5%;
height:40%;
font-size: 20px;
border: 6px dashed #444444;
border-radius: 20px;
2019-10-23 13:41:26 +02:00
min-height: 250px;
2019-04-28 15:27:55 +02:00
}
2019-10-22 15:49:57 +02:00
.dragndrop .button {
cursor: pointer;
2019-10-23 13:41:26 +02:00
min-height: 30px;
min-width: 120px;
}
2019-10-22 15:49:57 +02:00
.dragover {
2019-04-28 15:27:55 +02:00
background-color: #888888;
}
2019-04-28 15:27:55 +02:00
.infobox {
text-align: left;
background: #eeeeee;
border-radius: 20px;
border: 4px solid #a3a3a3;
padding: 10px;
}
2019-10-22 15:49:57 +02:00
footer {
position: absolute;
padding-top: 10px;
padding-bottom: 10px;
bottom: 0;
width: 100%;
text-align: center;
background-color: #eeeeee;
}
2019-10-22 15:49:57 +02:00
footer a {
color: #555;
font-weight: bold;
text-decoration: none;
}
small {
color: #555;
}