Welcome to mirror list, hosted at ThFree Co, Russian Federation.

_table.scss « content « _post « _partial « sass « assets - github.com/xianmin/hugo-theme-jane.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: fd0debbe58f801335e3c0981f4b80e2ffadb13b6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
table {
  display: block;
  border: none;
  width: 100%;
  overflow-x: auto;

  td {
    background-color: #f0e4e4;
    border: 3px solid #fff;
    padding: 5px 15px;
  }

  th {
    text-align: left;
    background-color: #a65b5b;
    color: #fff;
    border: 3px solid #fff;
    padding: 5px 15px;
  }
}