Files
espid2sensor/public/styles.css

54 lines
659 B
CSS

body {
font-family: system-ui, sans-serif;
padding: 20px;
max-width: 800px;
margin: auto;
}
input, button {
font-size: 1rem;
padding: 8px;
margin: 2px;
}
.card {
border: 1px solid #ddd;
padding: 12px;
border-radius: 8px;
margin-bottom: 12px;
}
#result {
margin-top: 10px;
}
.controls {
margin-bottom: 8px;
}
.controls input {
width: 50px;
}
table {
width: 100%;
border-collapse: collapse;
}
th, td {
text-align: left;
padding: 8px;
border-bottom: 1px solid #eee;
}
.controls input#page,
.controls input#limit {
width: 50px;
margin-left: 10px;
}
.error {
color: red;
font-weight: bold;
margin: 10px 0;
}