fixes #22
This commit is contained in:
parent
2d10676bd9
commit
fad98bade3
3 changed files with 43 additions and 0 deletions
|
@ -1,4 +1,5 @@
|
|||
$blog_body-bg: rgb(33, 39, 48);
|
||||
$blog_body-bg-light: rgb(37, 45, 57);
|
||||
|
||||
// nom == natenom
|
||||
$nom-blue: rgb(70, 136, 222); // #4588de
|
||||
|
@ -6,3 +7,4 @@ $nom-blue-dark: rgb(50, 116, 202);
|
|||
$nom-blue-light: rgb(110, 176, 255); // #6db0ff
|
||||
$grey: rgb(155, 155, 170);
|
||||
$grey-light: rgb(175, 175, 190);
|
||||
$white: rgb(255, 255, 255);
|
||||
|
|
|
@ -1,5 +1,45 @@
|
|||
body {
|
||||
background: $blog_body-bg;
|
||||
color: $white;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
margin: 0;
|
||||
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;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -45,6 +45,7 @@ $ngtb_height: 32px; // ngtb == nom_globaltopbar
|
|||
display: flex;
|
||||
flex: 1;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
li {
|
||||
display: flex;
|
||||
margin: 0;
|
||||
|
|
Reference in a new issue