Blame view

public/css/style_table.css 709 Bytes
232c33a82   Андрей Ларионов   Все формы обратно...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
  .table {
      width: 100%;
      border: none;
      margin-bottom: 20px;
  }
  .table thead th {
      font-weight: bold;
      text-align: left;
      border: none;
      padding: 10px 15px;
      background: #d8d8d8;
      font-size: 14px;
      border-left: 1px solid #ddd;
      border-right: 1px solid #ddd;
  }
  .table tbody td {
      text-align: left;
      border-left: 1px solid #ddd;
      border-right: 1px solid #ddd;
      padding: 10px 15px;
      font-size: 14px;
      vertical-align: top;
  }
  .table thead tr th:first-child, .table tbody tr td:first-child {
      border-left: none;
  }
  .table thead tr th:last-child, .table tbody tr td:last-child {
      border-right: none;
  }
  .table tbody tr:nth-child(even){
      background: #f3f3f3;
  }