49 lines
873 B
CSS
49 lines
873 B
CSS
.header{
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
margin: 100px auto;
|
|
border-radius: 20px;
|
|
height: 460px;
|
|
width: 378px;
|
|
box-sizing: border-box;
|
|
box-shadow: 0 0 20px rgba(0, 0, 0, .2);
|
|
}
|
|
|
|
|
|
.header img{
|
|
width: 200px;
|
|
border-radius:150px;
|
|
margin: 50px 0 ;
|
|
}
|
|
|
|
input{
|
|
width: 50%;
|
|
/* background-color: red; */
|
|
width: 100%;
|
|
font-size: 20px;
|
|
padding-bottom: 5px;
|
|
border-bottom: solid 1px #ddddde;
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.header div{
|
|
height: 50px;
|
|
background-color: #88b4d8;
|
|
width: 100%;
|
|
color: #fff;
|
|
text-align: center;
|
|
font-size:20px;
|
|
line-height: 50px;
|
|
border-radius: 30px;
|
|
}
|
|
.modal-body {}
|
|
.modal-body img{
|
|
width: 120px;
|
|
height: 120px;
|
|
margin-bottom: 10px;
|
|
}
|
|
.modal-body .active {
|
|
border: 1px solid #000;
|
|
box-sizing: border-box;
|
|
} |