91 lines
1.3 KiB
CSS
91 lines
1.3 KiB
CSS
/* /css/daily-issue.css */
|
|
|
|
body {
|
|
font-family: Arial, sans-serif;
|
|
background: #f5f7fa;
|
|
margin: 0;
|
|
padding: 40px 20px;
|
|
}
|
|
|
|
.container {
|
|
max-width: 500px;
|
|
margin: auto;
|
|
background: #fff;
|
|
border-radius: 12px;
|
|
box-shadow: 0 0 10px rgba(0,0,0,0.05);
|
|
padding: 32px;
|
|
}
|
|
|
|
h2 {
|
|
text-align: center;
|
|
color: #333;
|
|
margin-bottom: 24px;
|
|
}
|
|
|
|
label {
|
|
display: block;
|
|
margin-top: 20px;
|
|
font-weight: bold;
|
|
color: #333;
|
|
}
|
|
|
|
select, input[type="date"], button {
|
|
width: 100%;
|
|
padding: 10px;
|
|
margin-top: 6px;
|
|
border: 1px solid #ccc;
|
|
border-radius: 6px;
|
|
box-sizing: border-box;
|
|
font-size: 1rem;
|
|
}
|
|
|
|
button#submitBtn {
|
|
margin-top: 30px;
|
|
background: #1976d2;
|
|
color: white;
|
|
border: none;
|
|
font-size: 1rem;
|
|
border-radius: 6px;
|
|
cursor: pointer;
|
|
transition: background 0.2s;
|
|
}
|
|
|
|
button#submitBtn:hover {
|
|
background: #125cb1;
|
|
}
|
|
|
|
.multi-select-box {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
gap: 8px;
|
|
margin-top: 8px;
|
|
}
|
|
|
|
.multi-select-box .btn {
|
|
flex: 1 0 30%;
|
|
padding: 8px;
|
|
border: 1px solid #1976d2;
|
|
border-radius: 4px;
|
|
background: white;
|
|
color: #1976d2;
|
|
text-align: center;
|
|
cursor: pointer;
|
|
transition: background 0.2s, color 0.2s;
|
|
}
|
|
|
|
.multi-select-box .btn.selected {
|
|
background: #1976d2;
|
|
color: white;
|
|
}
|
|
|
|
.time-range {
|
|
display: flex;
|
|
gap: 8px;
|
|
align-items: center;
|
|
margin-top: 6px;
|
|
}
|
|
|
|
.time-range select {
|
|
flex: 1;
|
|
}
|