You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
388 B
CSS
24 lines
388 B
CSS
.table {
|
|
width: calc(100% - 100px);
|
|
max-width: 800px;
|
|
margin: 0 auto;
|
|
background: white;
|
|
border-collapse: collapse;
|
|
border: solid 1px gray;
|
|
}
|
|
|
|
.table td, .table th {
|
|
border-top: solid 1px gray;
|
|
border-bottom: solid 1px gray;
|
|
text-align: left;
|
|
}
|
|
|
|
.table th {
|
|
padding: 5px 15px;
|
|
font-family: 'Cormorant SC',serif;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.table td {
|
|
padding: 15px;
|
|
} |