blob: 17c09f80726bd7209a0598acd98ee714318f710c [file] [log] [blame]
Davit Tabidze5f1a2c62024-07-17 17:57:27 +04001[data-theme="light"],
2:root:not([data-theme="dark"]) {
3 --pico-font-family: Hack, monospace;
4 --pico-font-size: 14px;
5 --pico-header-height: 56px;
6 --pico-border-radius: 0;
7 --pico-background-color: #d6d6d6;
8 --pico-form-element-border-color: #3a3a3a;
9 --pico-form-element-active-border-color: #7f9f7f;
10 --pico-form-element-focus-color: #7f9f7f;
11 --pico-form-element-background-color: #d6d6d6;
12 --pico-form-element-active-background-color: #d6d6d6;
13 --pico-form-element-selected-background-color: #d6d6d6;
14 --pico-primary: #7f9f7f;
15 --pico-primary-background: #7f9f7f;
16 --pico-primary-hover: #d4888d;
17 --pico-primary-hover-background: #d4888d;
18 --pico-grid-spacing-horizontal: 0;
19 --search-background-color: #d6d6d6;
20 --pico-color: #3a3a3a;
21 --pico-form-element-color: #3a3a3a;
22 --pico-primary-inverse: #3a3a3a;
23 --pico-tooltip-background-color: #3a3a3a;
24 --pico-tooltip-color: #d6d6d6;
25 --pico-icon-color: #3a3a3a;
26 --pico-group-box-shadow-focus-with-button: 0 0 0 0;
27 --pico-card-background-color: var(--pico-card-sectioning-background-color);
28 p {
29 --pico-color: #3a3a3a;
30 }
31 h1 {
32 font-size: 20px;
33 --pico-color: #3a3a3a;
34 }
35 h2 {
36 font-size: 18px;
37 --pico-color: #3a3a3a;
38 }
39 h3 {
40 font-size: 16px;
41 --pico-color: #3a3a3a;
42 }
43 h4 {
44 font-size: 14px;
45 --pico-color: #3a3a3a;
46 }
47 label {
48 color: var(--pico-color);
49 }
50 input:is([type="checkbox"]) {
51 --pico-form-element-focus-color: none;
52 --pico-border-color: var(--pico-color);
53 }
54 [data-tooltip]:not(a, button, input) {
55 text-decoration: none;
56 cursor: pointer;
57 }
58 hr {
59 border-top: 1px solid var(--pico-color);
60 }
61 :is(button, [type="submit"], [type="button"], [role="button"]).secondary,
62 [type="file"]::file-selector-button,
63 [type="reset"] {
64 --pico-background-color: var(--pico-primary-hover-background);
65 --pico-border-color: var(--pico-primary-hover);
66 --pico-color: var(--pico-color);
67 cursor: pointer;
68 }
69 #confirm-button:hover {
70 background-color: var(--pico-primary);
71 border-color: var(--pico-primary);
72 }
DTabidze0d802592024-03-19 17:42:45 +040073}
74
Davit Tabidze5f1a2c62024-07-17 17:57:27 +040075@media (min-width: 768px) {
76 .grid.first {
77 grid-template-columns: 1fr 1fr 200px;
78 }
79
80 .grid.twoone {
81 grid-template-columns: 2fr 200px;
82 align-items: center;
83 grid-row-gap: 0;
84 }
85}
86
87.grid-header,
88.grid-row {
89 display: contents;
90}
91
92.headline {
93 margin-top: 15px;
DTabidze0d802592024-03-19 17:42:45 +040094}
95
96.divider {
Davit Tabidze5f1a2c62024-07-17 17:57:27 +040097 margin-top: 10px;
98 margin-bottom: 10px;
99}
100
101.remove {
102 margin-bottom: 0;
103 background-color: var(--pico-primary-hover);
104 /* border-top-right-radius: 0.25rem;
105 border-bottom-right-radius: 0.25rem; */
106 border: none;
107 outline: none;
108 padding: 0;
109 height: 100%;
110 display: inline-flex;
111 align-items: center;
112 justify-content: center;
113}
114
115.remove svg {
116 height: 20px;
117 width: 20px;
118}
119
120.test {
121 margin-right: 3rem;
122}
123
124.link-button {
125 /* border-top-left-radius: 0.25rem;
126 border-bottom-left-radius: 0.25rem; */
127}
128
129.user-remove {
130 display: flex;
131 flex-direction: row;
132 gap: 5px;
133 flex-wrap: wrap;
134}
135
136a[role="button"],
137a[role="button"]:hover,
138a[role="button"]:focus {
139 background-color: var(--pico-primary);
140 border: none;
141 outline: none;
DTabidze0d802592024-03-19 17:42:45 +0400142}