Bryan 5 days ago
parent
commit
8f79831a28
  1. 32
      app/assets/stylesheets/application.css

32
app/assets/stylesheets/application.css

@ -1,40 +1,48 @@
.table {
text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
display: flex;
flex-direction: column;
width: 100%;
border: 1px solid #ccc;
border: 1px solid #e0e0e0;
border-radius: 6px;
margin-top: 30px;
background-color: #fafafa;
}
.table-header,
.table-row {
display: flex;
padding: 10px;
border-bottom: 1px solid #ddd;
padding: 12px;
border-bottom: 1px solid #eaeaea;
}
.cell {
display: flex;
flex: 1;
padding: 6px 12px;
padding: 8px 12px;
}
.table-header {
background-color: blueviolet;
font-weight: bold;
background-color: #f5f7fa;
font-weight: 600;
color: #a51010;
}
.btn {
background-color: darkgoldenrod;
color: white;
padding: 6px 10px;
margin-right: 5px;
text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
display: inline-block;
background-color: #b7e1ff;
color: #0f0f0f;
padding: 1px 10px;
margin-right: 8px;
border: none;
border-radius: 4px;
border-radius: 6px;
text-decoration: none;
font-size: 14px;
cursor: pointer;
transition: background-color 0.3s ease;
}
.btn:hover {
background-color: #0056b3;
background-color: #f6fafe;
}
Loading…
Cancel
Save