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.
32 lines
652 B
SCSS
32 lines
652 B
SCSS
/* Tables */
|
|
.tblcon{overflow-x:auto}
|
|
table{text-align:left;width:100%;
|
|
border-collapse:collapse;
|
|
overflow-wrap:normal;
|
|
margin:24px 0}
|
|
th{font-weight:bold}
|
|
th,
|
|
td {
|
|
padding: 12px 15px;
|
|
text-align: left;
|
|
border-bottom: 1px solid $tableBorder; }
|
|
th:first-child,
|
|
td:first-child {
|
|
padding-left: 0; }
|
|
th:last-child,
|
|
td:last-child {
|
|
padding-right: 0; }
|
|
thead tr{border-color:red}
|
|
tbody tr:nth-child(odd) td{background-color: $offWhite}
|
|
tbody tr:hover td{background:$code}
|
|
|
|
@media print{.container{max-width:none}}
|
|
@media(min-width:720px){
|
|
ul li{margin:auto}
|
|
}
|
|
@media(max-width:320px){
|
|
body{overflow-wrap:anywhere}
|
|
img{width:100%;height:auto}
|
|
}
|
|
|