81 lines
1.3 KiB
CSS
81 lines
1.3 KiB
CSS
/* Minimal iOS-like clean theme */
|
|
|
|
body {
|
|
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu,
|
|
Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
background: #f9f9fa;
|
|
color: #1c1c1e;
|
|
margin: 0;
|
|
padding: 20px;
|
|
}
|
|
|
|
table {
|
|
border-collapse: separate;
|
|
border-spacing: 0 12px;
|
|
width: 100%;
|
|
background: transparent;
|
|
}
|
|
|
|
thead th {
|
|
color: #6e6e73;
|
|
text-transform: uppercase;
|
|
font-weight: 600;
|
|
cursor: pointer;
|
|
padding: 10px 15px;
|
|
user-select: none;
|
|
}
|
|
|
|
thead th.sort-asc::after {
|
|
content: " ▲";
|
|
font-size: 12px;
|
|
}
|
|
|
|
thead th.sort-desc::after {
|
|
content: " ▼";
|
|
font-size: 12px;
|
|
}
|
|
|
|
tbody td {
|
|
background: white;
|
|
padding: 12px 15px;
|
|
border-radius: 12px;
|
|
box-shadow: 0 1px 3px rgba(60, 60, 67, 0.08);
|
|
vertical-align: middle;
|
|
}
|
|
|
|
tbody tr:hover td {
|
|
background: #f3f3f7;
|
|
}
|
|
|
|
input.filter {
|
|
width: 100%;
|
|
padding: 7px 10px;
|
|
border-radius: 12px;
|
|
border: 1px solid #ccc;
|
|
font-size: 14px;
|
|
color: #1c1c1e;
|
|
box-sizing: border-box;
|
|
user-select: text;
|
|
}
|
|
|
|
.btn {
|
|
background-color: #007aff;
|
|
border: none;
|
|
color: white;
|
|
padding: 8px 14px;
|
|
border-radius: 14px;
|
|
font-weight: 600;
|
|
cursor: pointer;
|
|
margin-right: 6px;
|
|
transition: background-color 0.2s ease;
|
|
}
|
|
|
|
.btn:hover {
|
|
background-color: #005bb5;
|
|
}
|
|
|
|
.btn:active {
|
|
background-color: #004494;
|
|
}
|
|
|