mirror of
https://github.com/wassname/talk.git
synced 2026-06-30 00:33:54 +08:00
50 lines
851 B
CSS
50 lines
851 B
CSS
.textField {
|
|
margin-top: 15px;
|
|
}
|
|
|
|
.textField label {
|
|
font-size: 1.08em;
|
|
font-weight: bold;
|
|
margin-bottom: 5px;
|
|
}
|
|
|
|
.textField input {
|
|
width: 100%;
|
|
display: block;
|
|
border: none;
|
|
outline: none;
|
|
border: 1px solid rgba(0,0,0,.12);
|
|
padding: 10px 6px;
|
|
box-sizing: border-box;
|
|
border-radius: 2px;
|
|
margin: 5px auto;
|
|
font-size: 14px;
|
|
}
|
|
|
|
input.error{
|
|
border: solid 2px #f44336;
|
|
}
|
|
|
|
.errorMsg, .hint {
|
|
color: grey;
|
|
font-weight: 600;
|
|
padding: 3px 0 16px;
|
|
}
|
|
|
|
.attention {
|
|
display: inline-block;
|
|
width: 15px;
|
|
height: 15px;
|
|
background: #B71C1C;
|
|
color: #FFEBEE;
|
|
font-weight: bolder;
|
|
padding: 4px;
|
|
vertical-align: middle;
|
|
border-radius: 20px;
|
|
box-sizing: border-box;
|
|
font-size: 9px;
|
|
line-height: 7px;
|
|
text-align: center;
|
|
margin-right: 5px;
|
|
}
|