styles.css
 1  :root {
 2    --advanced-tables-helper-size: 28px;
 3  }
 4  
 5  .HyperMD-table-row span.cm-inline-code {
 6    font-size: 100%;
 7    padding: 0px;
 8  }
 9  
10  .advanced-tables-buttons>div>.title {
11    font-weight: var(--font-medium);
12    font-size: var(--nav-item-size);
13    color: var(--nav-item-color);
14    text-decoration: underline;
15  }
16  
17  [data-type="advanced-tables-toolbar"] .nav-buttons-container {
18    column-gap: 0.2rem;
19    margin: 0.2rem 0 0.2rem 0;
20    justify-content: start;
21  }
22  
23  [data-type="advanced-tables-toolbar"] .nav-buttons-container::before {
24    min-width: 2.6rem;
25    line-height: var(--advanced-tables-helper-size);
26    font-size: var(--nav-item-size);
27    font-weight: var(--nav-item-weight);
28    color: var(--nav-item-color);
29  }
30  
31  [data-type="advanced-tables-toolbar"] .nav-buttons-container>* {
32    height: var(--advanced-tables-helper-size);
33    line-height: var(--advanced-tables-helper-size);
34  }
35  
36  [data-type="advanced-tables-toolbar"] .nav-buttons-container .nav-action-button {
37    width: var(--advanced-tables-helper-size);
38    height: var(--advanced-tables-helper-size);
39    display: flex;
40    justify-content: center;
41    align-items: center;
42    border-radius: var(--radius-s);
43  }
44  
45  [data-type="advanced-tables-toolbar"] .nav-buttons-container .nav-action-button:hover {
46    background-color: var(--nav-item-background-hover);
47    color: var(--nav-item-color-hover);
48    font-weight: var(--nav-item-weight-hover);
49  }
50  
51  .advanced-tables-row-label {
52    width: 50px;
53  }
54  
55  .widget-icon {
56    width: 20px;
57    height: 20px;
58    fill: var(--text-muted);
59  }
60  
61  .widget-icon:hover {
62    fill: var(--text-normal);
63  }
64  
65  .advanced-tables-csv-export textarea {
66    height: 200px;
67    width: 100%;
68  }
69  
70  .advanced-tables-donation {
71    width: 70%;
72    margin: 0 auto;
73    text-align: center;
74  }
75  
76  .advanced-tables-donate-button {
77    margin: 10px;
78  }