You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
57 lines
841 B
CSS
57 lines
841 B
CSS
/** dayanswer start */
|
|
|
|
.state-tab-wrap {
|
|
margin: 10px 0;
|
|
}
|
|
|
|
.state-tabs {
|
|
list-style: none;
|
|
padding: 0;
|
|
margin: 0;
|
|
display: flex;
|
|
}
|
|
|
|
.state-tabs li {
|
|
padding: 6px 14px;
|
|
border: 1px solid #ccc;
|
|
border-bottom: none;
|
|
background: #f5f5f5;
|
|
font-size: 12px;
|
|
cursor: pointer;
|
|
margin-right: 4px;
|
|
}
|
|
|
|
.state-tabs li.on {
|
|
background: #ffffff;
|
|
font-weight: bold;
|
|
border-bottom: 1px solid #ffffff;
|
|
}
|
|
.state-area {
|
|
margin-top: 10px;
|
|
padding: 10px 0;
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 10px;
|
|
}
|
|
|
|
.state-label {
|
|
font-weight: bold;
|
|
margin-right: 5px;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.state-input {
|
|
width: 120px;
|
|
height: 28px;
|
|
padding: 4px;
|
|
border: 1px solid #ccc;
|
|
}
|
|
|
|
.state-area button {
|
|
height: 32px;
|
|
padding: 0 12px;
|
|
}
|
|
|
|
|
|
|
|
/** dayanswer end */ |