chore: cleanup
This commit is contained in:
parent
9e73dbe4c1
commit
28fe4b21f2
19 changed files with 134 additions and 187 deletions
|
@ -5,11 +5,6 @@ body {
|
|||
font-family: var(--font-mono);
|
||||
}
|
||||
|
||||
html {
|
||||
font-size: 100%;
|
||||
-webkit-text-size-adjust: none;
|
||||
}
|
||||
|
||||
body {
|
||||
font-size: var(--font-size-base);
|
||||
line-height: var(--line-height-base);
|
||||
|
@ -17,19 +12,13 @@ body {
|
|||
word-spacing: -.05rem;
|
||||
}
|
||||
|
||||
::-moz-selection {
|
||||
color: var(--text-color-inverted);
|
||||
background: var(--accent-color);
|
||||
}
|
||||
|
||||
::selection {
|
||||
color: var(--text-color-inverted);
|
||||
color: var(--color-lightest);
|
||||
background: var(--accent-color);
|
||||
}
|
||||
|
||||
p {
|
||||
margin: var(--margin-vertical-base-horizontal-zero);
|
||||
overflow: visible;
|
||||
}
|
||||
|
||||
:is(p, ul, ol) a {
|
||||
|
@ -162,9 +151,7 @@ a:active,
|
|||
:is(.main-title, footer nav.sub-pages) a:focus,
|
||||
:is(.main-title, footer nav.sub-pages) a:active {
|
||||
color: var(--accent-color-hover);
|
||||
transition-property: color;
|
||||
transition-timing-function: var(--transition-ease-in-out);
|
||||
transition-duration: var(--transition-duration-default);
|
||||
transition: color var(--transition-duration-default) var(--transition-ease-in-out);
|
||||
}
|
||||
|
||||
:is(
|
||||
|
@ -233,11 +220,6 @@ table {
|
|||
overscroll-behavior: none;
|
||||
}
|
||||
|
||||
table,
|
||||
tr {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
table,
|
||||
th,
|
||||
td {
|
||||
|
@ -261,10 +243,11 @@ td {
|
|||
&:first-child {
|
||||
position: sticky;
|
||||
left: 0;
|
||||
border-inline-end: none;
|
||||
max-width: 200px;
|
||||
text-overflow: ellipsis;
|
||||
border-inline-end: none;
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
|
||||
&::after {
|
||||
content: '';
|
||||
|
@ -284,15 +267,6 @@ th {
|
|||
text-align: left;
|
||||
}
|
||||
|
||||
:is(th, td):first-child {
|
||||
position: sticky;
|
||||
left: 0;
|
||||
white-space: nowrap;
|
||||
max-width: 200px;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
}
|
||||
|
||||
td {
|
||||
min-width: calc(var(--spacing-3xl) * 2);
|
||||
white-space: nowrap;
|
||||
|
|
Reference in a new issue