now the tables are a little bit more beauty and readable

master
kirbylife 2023-01-03 01:05:36 -06:00
parent 205d3c48e9
commit ce21662007
3 changed files with 32 additions and 2 deletions

5
.gitignore vendored
View File

@ -3,4 +3,7 @@
Cargo.lock
# Enviroment variables
.env
.env
# Geany proyect config
proyectos

View File

@ -79,7 +79,7 @@ div.container {
strong {
font-family: monospace;
font-size: 10px;
font-size: 15px;
}
footer {

View File

@ -41,3 +41,30 @@ pre {
article p {
font-size: 16px;
}
/* Table things */
article table {
border-collapse: collapse;
}
article table td, article table th {
border: 1px solid #f0f0f0;
padding: 3px;
}
article table tr:nth-child(even){
background-color: #f6f6f6;
}
article table tr:hover {
background-color: #f0f0f0;
}
article table th {
padding-top: 5px;
padding-bottom: 5px;
text-align: left;
background-color: #444444;
color: white;
}