|
|
@ -1,40 +1,48 @@ |
|
|
.table { |
|
|
.table { |
|
|
|
|
|
text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2); |
|
|
display: flex; |
|
|
display: flex; |
|
|
flex-direction: column; |
|
|
flex-direction: column; |
|
|
width: 100%; |
|
|
width: 100%; |
|
|
border: 1px solid #ccc; |
|
|
|
|
|
|
|
|
border: 1px solid #e0e0e0; |
|
|
|
|
|
border-radius: 6px; |
|
|
margin-top: 30px; |
|
|
margin-top: 30px; |
|
|
|
|
|
background-color: #fafafa; |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
.table-header, |
|
|
.table-header, |
|
|
.table-row { |
|
|
.table-row { |
|
|
display: flex; |
|
|
display: flex; |
|
|
padding: 10px; |
|
|
|
|
|
border-bottom: 1px solid #ddd; |
|
|
|
|
|
|
|
|
padding: 12px; |
|
|
|
|
|
border-bottom: 1px solid #eaeaea; |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
.cell { |
|
|
.cell { |
|
|
|
|
|
display: flex; |
|
|
flex: 1; |
|
|
flex: 1; |
|
|
padding: 6px 12px; |
|
|
|
|
|
|
|
|
padding: 8px 12px; |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
.table-header { |
|
|
.table-header { |
|
|
background-color: blueviolet; |
|
|
|
|
|
font-weight: bold; |
|
|
|
|
|
|
|
|
background-color: #f5f7fa; |
|
|
|
|
|
font-weight: 600; |
|
|
|
|
|
color: #a51010; |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
.btn { |
|
|
.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: none; |
|
|
border-radius: 4px; |
|
|
|
|
|
|
|
|
border-radius: 6px; |
|
|
text-decoration: none; |
|
|
text-decoration: none; |
|
|
font-size: 14px; |
|
|
font-size: 14px; |
|
|
cursor: pointer; |
|
|
cursor: pointer; |
|
|
|
|
|
transition: background-color 0.3s ease; |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
.btn:hover { |
|
|
.btn:hover { |
|
|
background-color: #0056b3; |
|
|
|
|
|
|
|
|
background-color: #f6fafe; |
|
|
} |
|
|
} |