66 lines
1008 B
CSS
Executable File
66 lines
1008 B
CSS
Executable File
.row {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
width: 98%;
|
|
font-size: 16px;
|
|
margin: 0px auto;
|
|
background: #fff;
|
|
padding: 5px 5px;
|
|
}
|
|
.row select {
|
|
padding: 0px 5px;
|
|
margin: 0px 0px;
|
|
height: 40px;
|
|
color: #363636 ;
|
|
font-size: 16px;
|
|
direction: rtl;
|
|
/* text-align: right; */
|
|
}
|
|
.row select::placeholder {
|
|
text-align: right;
|
|
color: #ccc ;
|
|
|
|
}
|
|
.row select option {
|
|
color: #363636 ;
|
|
text-align: right;
|
|
}
|
|
.row input {
|
|
padding: 0px 5px;
|
|
margin: 0px 0px;
|
|
color: #363636;
|
|
font-size: 16px;
|
|
text-align: right;
|
|
border: 0px;
|
|
}
|
|
.row_text{
|
|
display: inline-block;
|
|
min-width: 100px;
|
|
font-size: 16px;
|
|
font-weight: 200;
|
|
color: #363636;
|
|
padding-left: 5px;
|
|
}
|
|
.down {
|
|
margin: 55px auto ;
|
|
|
|
}
|
|
.down .btn {
|
|
margin: 0px auto ;
|
|
width: 200px;
|
|
height: 40px;
|
|
line-height: 40px;
|
|
text-align: center;
|
|
padding: 10px auto;
|
|
background: #DD524D;
|
|
font-size: 18px;
|
|
font-weight: 200;
|
|
color: #FDECEA;
|
|
}
|
|
/* 添加备忘录图片控制 */
|
|
.row_bottom .btn {
|
|
margin: 5px 0px;
|
|
}
|
|
|