Added CSS file

This commit is contained in:
2022-06-29 00:50:04 +03:00
parent b64b9ec1af
commit 92753905f4
3 changed files with 49 additions and 17 deletions
@@ -0,0 +1,36 @@
h1 {
text-align: center;
}
table.month, table.month th, table.month td {
border: 1px solid white;
border-collapse: collapse;
padding: 5px;
background: gainsboro;
}
table.month th {
text-align: center;
}
table.month td {
text-align: right;
}
table.month td.current {
background: dimgrey;
color: white;
}
table.month th.subtitle {
font-style: italic;
font-weight: normal;
}
table.month {
margin: 10px;
float: left;
width: 300px;
max-width: 300px;
border-radius: 10px;
}