This commit is contained in:
Frederikmillingpytlick
2020-06-15 11:28:37 +02:00
parent e73e2aacdc
commit a840a4b2f0
8 changed files with 96 additions and 2 deletions
+3
View File
@@ -16,3 +16,6 @@
// Content
@import 'content/content';
// Tables
@import "content/table";
+31
View File
@@ -0,0 +1,31 @@
.tbl {
border-collapse: collapse;
width: 100%;
}
.tbl td, .tbl th {
border: 1px solid #ddd;
padding: 8px;
}
.tbl tr:nth-child(even){background-color: rgba(0, 0, 0, 0.1);}
.tbl tr:hover {background-color: #ddd;}
.tbl th {
padding-top: 12px;
padding-bottom: 12px;
text-align: left;
background-color: #00788a;
color: white;
}
.tbl > tbody > tr > td > a {
width: 100%;
display: flex;
}
.tbl > tbody > tr > td > a > img {
width: 1em;
margin: auto;
}