now the tables are a little bit more beauty and readable
parent
205d3c48e9
commit
ce21662007
|
@ -4,3 +4,6 @@ Cargo.lock
|
||||||
|
|
||||||
# Enviroment variables
|
# Enviroment variables
|
||||||
.env
|
.env
|
||||||
|
|
||||||
|
# Geany proyect config
|
||||||
|
proyectos
|
||||||
|
|
|
@ -79,7 +79,7 @@ div.container {
|
||||||
|
|
||||||
strong {
|
strong {
|
||||||
font-family: monospace;
|
font-family: monospace;
|
||||||
font-size: 10px;
|
font-size: 15px;
|
||||||
}
|
}
|
||||||
|
|
||||||
footer {
|
footer {
|
||||||
|
|
|
@ -41,3 +41,30 @@ pre {
|
||||||
article p {
|
article p {
|
||||||
font-size: 16px;
|
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;
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in New Issue