File size: 775 Bytes
147da27
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
33
34
35
36
37
38
39
40
41
42
43
44
#translation-table {
    width: 100%;
  }
  
  #translation-table th,
  #translation-table td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
  }
  
  #translation-table th:first-child {
    border-left: none;
  }
  
  #translation-table th:last-child {
    border-right: none;
  }
  
  #translation-table th:not(:first-child) {
    border-left: none;
    border-right: none;
  }
  
  #translation-table th div {
    border-bottom: 1px solid #ddd;
    padding: 8px;
  }
  
  #translation-table td div {
    padding: 8px;
  }
  
  #translation-table thead th {
    background-color: #f2f2f2;
  }
  
  #translation-table tbody tr:nth-child(even) {
    background-color: #f2f2f2;
  }
  
  #translation-table tbody tr:hover {
    background-color: #ddd;
  }