-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
81 lines (69 loc) · 1.38 KB
/
Copy pathstyle.css
File metadata and controls
81 lines (69 loc) · 1.38 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
* {
box-sizing: border-box;
}
html {
scroll-behavior: smooth;
}
body {
font-family: "Prompt", "Inter", sans-serif;
}
.field {
width: 100%;
border-radius: 1rem;
border: 1px solid rgb(226 232 240);
background: rgba(255, 255, 255, 0.92);
padding: 0.875rem 1rem;
color: rgb(15 23 42);
outline: none;
transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}
.field:focus {
border-color: rgb(16 185 129);
box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.14);
}
.dark .field {
border-color: rgb(51 65 85);
background: rgba(15, 23, 42, 0.86);
color: rgb(248 250 252);
}
.dark .field:focus {
border-color: rgb(52 211 153);
box-shadow: 0 0 0 4px rgba(52, 211, 153, 0.13);
}
.fuel-card {
border-radius: 1.5rem;
border: 1px solid rgb(226 232 240);
background: rgb(248 250 252);
padding: 1rem;
}
.dark .fuel-card {
border-color: rgb(51 65 85);
background: rgba(30, 41, 59, 0.68);
}
@media print {
body {
background: white !important;
color: black !important;
}
header,
form,
#refreshFuelBtn,
#themeToggle,
#exportExcelBtn,
#exportPdfBtn,
#clearBtn,
.fuel-card button,
td:last-child,
th:last-child {
display: none !important;
}
main {
max-width: 100% !important;
padding: 0 !important;
}
section,
article {
box-shadow: none !important;
border: 1px solid #ddd !important;
}
}