codigocomentado/static/css/post.css

71 lines
1.1 KiB
CSS
Raw Permalink Normal View History

2019-11-20 21:59:35 +00:00
div.container {
display: grid;
grid-template-columns: 1fr auto;
2019-11-20 21:59:35 +00:00
gird-template-rows: 1fr 1fr 1fr;
grid-template-areas:
"title title"
". date"
"content content";
}
.title {
grid-area: title;
margin: 0;
margin-top: 10px;
}
article {
grid-area: content;
overflow: hidden;
2019-11-20 21:59:35 +00:00
}
.date {
grid-area: date;
text-align: right;
2019-11-20 21:59:35 +00:00
}
pre {
font-family: monospace;
background-color: #333333;
2019-11-20 21:59:35 +00:00
padding-top: 0.7em;
padding-right: 0.7em;
padding-bottom: 0.7em;
padding-left: 0.5em;
color: white;
white-space: pre;
word-wrap: normal;
overflow-x: auto;
2019-11-20 21:59:35 +00:00
}
2019-12-04 23:53:39 +00:00
article p {
2019-12-05 00:04:21 +00:00
font-size: 16px;
2019-12-04 23:53:39 +00:00
}
/* 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;
}