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
847 B
SCSS
Raw Normal View History

2020-10-19 09:34:36 +02:00
body {
2020-10-19 10:08:12 +02:00
background: $blog_body-bg;
color: $white;
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: $nom_blue;
border-bottom: 0;
padding: 5px 10px;
a {
color: $white;
text-decoration: none;
}
}
}
}
tbody {
tr {
background: $blog_body-bg-light;
&:nth-child(2n) {
background: $blog_body-bg-light;
}
td {
padding: 5px 10px;
a {
color: $white;
text-decoration: none;
}
}
}
}
}
2020-10-19 09:34:36 +02:00
}