blob: 1a44b92812613b59e5fdd11ab83567fda018b5f4 [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
Davit Tabidze75d57c32024-07-19 19:17:55 +040092.ssh-key-grid {
93 display: grid;
94 grid-template-columns: auto 1fr;
95 gap: 10px;
96}
97
98.ssh-key-item {
99 display: contents;
100}
101
102.ssh-key {
103 box-sizing: border-box;
104 word-wrap: break-word;
105 word-break: break-all;
106}
107
108.ssh-key-grid button {
109 height: 16px;
110}
111
112.ssh-key-grid button:focus {
113 --pico-primary-focus: var(--pico-primary-hover);
114}
115
Davit Tabidze5f1a2c62024-07-17 17:57:27 +0400116.headline {
117 margin-top: 15px;
DTabidze0d802592024-03-19 17:42:45 +0400118}
119
120.divider {
Davit Tabidze5f1a2c62024-07-17 17:57:27 +0400121 margin-top: 10px;
122 margin-bottom: 10px;
123}
124
125.remove {
126 margin-bottom: 0;
127 background-color: var(--pico-primary-hover);
Davit Tabidze5f1a2c62024-07-17 17:57:27 +0400128 border: none;
129 outline: none;
130 padding: 0;
131 height: 100%;
132 display: inline-flex;
133 align-items: center;
134 justify-content: center;
135}
136
137.remove svg {
Davit Tabidze75d57c32024-07-19 19:17:55 +0400138 height: 16px;
139 width: 16px;
Davit Tabidze5f1a2c62024-07-17 17:57:27 +0400140}
141
142.test {
143 margin-right: 3rem;
144}
145
146.link-button {
147 /* border-top-left-radius: 0.25rem;
148 border-bottom-left-radius: 0.25rem; */
149}
150
151.user-remove {
152 display: flex;
153 flex-direction: row;
154 gap: 5px;
155 flex-wrap: wrap;
156}
157
158a[role="button"],
159a[role="button"]:hover,
160a[role="button"]:focus {
161 background-color: var(--pico-primary);
162 border: none;
163 outline: none;
DTabidze0d802592024-03-19 17:42:45 +0400164}