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.
72 lines
957 B
CSS
72 lines
957 B
CSS
/* styles.css */
|
|
body {
|
|
background-color: #f5f7fa;
|
|
font-family: Arial, sans-serif;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
.container {
|
|
max-width: 1200px;
|
|
margin: 0 auto;
|
|
padding: 20px;
|
|
}
|
|
|
|
h1 {
|
|
font-size: 2rem;
|
|
text-align: center;
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.table {
|
|
width: 100%;
|
|
border-collapse: collapse;
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.table th,
|
|
.table td {
|
|
padding: 10px;
|
|
border: 1px solid #ddd;
|
|
text-align: left;
|
|
}
|
|
|
|
.table th {
|
|
background-color: #f2f2f2;
|
|
}
|
|
|
|
.table tr:nth-child(even) td {
|
|
background-color: #fff;
|
|
}
|
|
|
|
.table td.editable {
|
|
cursor: pointer;
|
|
}
|
|
|
|
.button {
|
|
padding: 8px 16px;
|
|
background-color: #4a86e8;
|
|
color: #fff;
|
|
border: none;
|
|
border-radius: 4px;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.category {
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.category-name {
|
|
font-size: 1.2rem;
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
.new-table-button {
|
|
padding: 8px 16px;
|
|
background-color: #6ab04c;
|
|
color: #fff;
|
|
border: none;
|
|
border-radius: 4px;
|
|
cursor: pointer;
|
|
}
|