-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinput.css
More file actions
54 lines (50 loc) · 1.79 KB
/
input.css
File metadata and controls
54 lines (50 loc) · 1.79 KB
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
45
46
47
48
49
50
51
52
53
54
/*
* Leptodon-starter
*
* Copyright (C) 2025-2026 Open Analytics NV
*
* ===========================================================================
*
* This program is free software: you can redistribute it and/or modify it
* under the terms of the Apache License as published by The Apache Software
* Foundation, either version 2 of the License, or (at your option) any later
* version.
*
* This program is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
* FOR A PARTICULAR PURPOSE. See the Apache License for more details.
*
* You should have received a copy of the Apache License along with this program.
* If not, see <http://www.apache.org/licenses/>
*/
@tailwind base;
@tailwind components;
@tailwind utilities;
[type="text"]:focus, [type="email"]:focus, [type="url"]:focus, [type="password"]:focus, [type="number"]:focus, [type="date"]:focus, [type="datetime-local"]:focus, [type="month"]:focus, [type="search"]:focus, [type="tel"]:focus, [type="time"]:focus, [type="week"]:focus, [multiple]:focus, textarea:focus, select:focus {
outline-offset: 2px;
--tw-ring-inset: var(--tw-empty, /*!*/ /*!*/);
--tw-ring-offset-width: 0px;
--tw-ring-offset-color: #fff;
--tw-ring-color: rgb(50 166 211);
--tw-ring-shadow: 0 0 #0000 !important;
--tw-shadow: 0 0 #0000 !important;
border-color: rgb(50 166 211) !important;
outline: 2px solid #0000;
}
html {
--success: #047857;
--success-soft: #04785710;
--warning: #7E2A0C;
--warning-soft: #7E2A0C10;
--danger: #C70036;
--danger-soft: #C7003610;
}
html.dark {
background-color: #111827;
--success: #059669;
--success-soft: #05966910;
--warning: #FFB86A;
--warning-soft: #FFB86A10;
--danger: #C70036;
--danger-soft: #C7003610;
}