51 lines
659 B
CSS
51 lines
659 B
CSS
body,html{
|
|
width: 100%;
|
|
height: 100%;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
.main-box{
|
|
width: 100%;
|
|
height: 100%;
|
|
padding: 1% 2%;
|
|
box-sizing: border-box;
|
|
}
|
|
p:nth-of-type(1){
|
|
font-size: 20px;
|
|
font-weight: bold;
|
|
}
|
|
#title{
|
|
width: 100%;
|
|
height: 5%;
|
|
float: left;
|
|
font-size: 23px;
|
|
line-height:40px;
|
|
text-align: center;
|
|
color: #fff;
|
|
}
|
|
#photoDiv{
|
|
width: 98%;
|
|
height: 80%;
|
|
margin: 1%;
|
|
float: left;
|
|
overflow: auto;
|
|
}
|
|
#dataDiv{
|
|
width: 98%;
|
|
height: 10%;
|
|
margin-left: 1%;
|
|
margin-top: -15%;
|
|
float: left;
|
|
color: #fff;
|
|
text-align: center;
|
|
font-size: 25px;
|
|
color: #000;
|
|
}
|
|
img {
|
|
width: 30%;
|
|
height: 45%;
|
|
margin-left: 2.5%;
|
|
margin-top: 1%;
|
|
float: left;
|
|
} |