mirror of
https://github.com/kognise/water.css.git
synced 2025-12-06 06:44:58 +01:00
50 lines
662 B
SCSS
50 lines
662 B
SCSS
img {
|
|
max-width: 100%;
|
|
}
|
|
|
|
hr {
|
|
border: none;
|
|
border-top: 1px solid $border;
|
|
}
|
|
|
|
table {
|
|
border-collapse: collapse;
|
|
margin-bottom: 10px;
|
|
width: 100%;
|
|
}
|
|
|
|
td, th {
|
|
padding: 6px;
|
|
text-align: left;
|
|
}
|
|
|
|
thead {
|
|
border-bottom: 1px solid $border;
|
|
}
|
|
|
|
tfoot {
|
|
border-top: 1px solid $border;
|
|
}
|
|
|
|
tr:nth-child(even) {
|
|
background-color: $background-alt;
|
|
}
|
|
|
|
::-webkit-scrollbar {
|
|
height: 10px;
|
|
width: 10px;
|
|
}
|
|
|
|
::-webkit-scrollbar-track {
|
|
background: $background-alt;
|
|
border-radius: 6px;
|
|
}
|
|
|
|
::-webkit-scrollbar-thumb {
|
|
background: $scrollbar-thumb;
|
|
border-radius: 6px;
|
|
}
|
|
|
|
::-webkit-scrollbar-thumb:hover {
|
|
background: $scrollbar-thumb-hover;
|
|
}
|