1
1
Fork 0
This repository has been archived on 2022-03-02. You can view files and clone it, but cannot push or open issues or pull requests.
natenom-websites/scss/import/files.scss

47 lines
899 B
SCSS
Raw Normal View History

2020-10-19 09:34:36 +02:00
body {
background: var(--background);
color: var(--text);
2020-10-19 09:34:36 +02:00
display: flex;
flex-direction: column;
2020-10-23 21:40:04 +02:00
font-family: Arial, Helvetica, sans-serif;
2020-10-19 09:34:36 +02:00
margin: 0;
2020-10-19 10:08:12 +02:00
min-height: 100vh;
h1 {
margin: 20px;
}
table#list {
border: 0;
border-spacing: 0;
margin: 20px;
width: calc(100% - 40px);
thead {
tr {
th {
background: var(--background);
border-bottom: 2px solid var(--text);
2020-10-19 10:08:12 +02:00
padding: 5px 10px;
a {
color: var(--text);
2020-10-19 10:08:12 +02:00
text-decoration: none;
}
}
}
}
tbody {
tr {
background: var(--background);
2020-10-19 10:08:12 +02:00
&:nth-child(2n) {
background: var(--background-contrast);
2020-10-19 10:08:12 +02:00
}
td {
padding: 5px 10px;
a {
color: var(--text);
2020-10-19 10:08:12 +02:00
text-decoration: none;
}
}
}
}
}
2020-10-19 09:34:36 +02:00
}