47 lines
709 B
CSS
47 lines
709 B
CSS
#start_main{
|
|
margin: auto;
|
|
width: 1000px;
|
|
background: white;
|
|
}
|
|
|
|
#dropZone{
|
|
width: 800px;
|
|
margin: auto;
|
|
outline: 3px dashed background;
|
|
}
|
|
|
|
#dropZone li{
|
|
list-style-type: none;
|
|
}
|
|
|
|
#dropZone p, #pullZone p{
|
|
display: table-cell;
|
|
height: 400px;
|
|
width: 400px;
|
|
vertical-align: middle;
|
|
text-align: center;
|
|
}
|
|
|
|
#pullZone{
|
|
width: 400px;
|
|
height: 400px;
|
|
float: left;
|
|
outline: 3px solid #eee;
|
|
margin-left: 15px;
|
|
}
|
|
|
|
#link_container {
|
|
padding-top: 40px;
|
|
font-size: 8pt;
|
|
margin: auto;
|
|
width: 800px;
|
|
}
|
|
|
|
#link_container tr{
|
|
height: 40px;
|
|
background: white;
|
|
width: 800px;
|
|
border: solid 2px background;
|
|
border-radius: 20px;
|
|
}
|