Spaces:
Sleeping
Sleeping
File size: 1,626 Bytes
9314fc1 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 |
.column1 {
float: left;
width: 30%;
height: 400px; /* Should be removed. Only for demonstration */
background-color: #fff;
}
.column2 {
float: left;
width: 70%;
height: 400px; /* Should be removed. Only for demonstration */
background-color: #0f4da6;
}
/* Clear floats after the columns */
.row:after {
content: "";
display: table;
clear: both;
}
.row{
margin-left: 10%;
margin-right: 10%;
margin-bottom: 3%;
background-color: #060073;
}
/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
.column1 {
width: 100%;
}
}
@media screen and (max-width: 600px) {
.column2 {
width: 100%;
}
}
#imgInp {
opacity: 0;
position: absolute;
z-index: -1;
}
label {
cursor: pointer;
/* Style as you please, it will become the visible UI component. */
padding-left: 10%;
padding-right: 10%;
padding-top: 2%;
padding-bottom: 2%;
font-size: 100%;
color: #fff;
border-radius: 25px;
background-color: #0f4da6;
}
#blah{
max-width: 60%;
max-height: 60%;
}
#image_div1{
max-width: 70%;
max-height: 70%;
}
#stop,#start{
cursor: pointer;
/* Style as you please, it will become the visible UI component. */
padding-left: 10%;
padding-right: 10%;
padding-top: 2%;
padding-bottom: 2%;
font-size: 100%;
color: #fff;
border-radius: 25px;
background-color: #0f4da6;
margin-top: 10%;
} |