-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
executable file
·130 lines (110 loc) · 2.42 KB
/
style.css
File metadata and controls
executable file
·130 lines (110 loc) · 2.42 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
html,
body,
#root {
margin: 0;
min-height: 100%;
height: 100%;
}
body {
font-family: "Open Sans", "Helvetica Neue", Roboto, Arial, sans-serif;
transition: background 180ms ease, color 180ms ease;
}
.plugin-shell {
min-height: 100%;
padding: 24px;
box-sizing: border-box;
background:
radial-gradient(circle at top left, rgba(9, 109, 217, 0.12), transparent 34%),
linear-gradient(180deg, rgba(245, 249, 255, 0.92), rgba(255, 255, 255, 0.98));
}
.plugin-shell[data-theme="dark"] {
background:
radial-gradient(circle at top left, rgba(83, 163, 255, 0.18), transparent 32%),
linear-gradient(180deg, rgba(18, 26, 33, 0.98), rgba(13, 19, 24, 1));
}
.plugin-dashboard {
max-width: 1440px;
margin: 0 auto;
}
.plugin-toolbar {
display: flex;
justify-content: space-between;
align-items: center;
gap: 12px;
flex-wrap: wrap;
}
.plugin-runtime-meta {
display: inline-flex;
gap: 8px;
flex-wrap: wrap;
}
.plugin-runtime-meta .awsui-badge {
text-transform: uppercase;
}
.plugin-datetime-input {
width: 100%;
box-sizing: border-box;
border: 1px solid #879596;
border-radius: 8px;
padding: 10px 12px;
background: #ffffff;
color: #16191f;
font: inherit;
transition: border-color 120ms ease, box-shadow 120ms ease, background 120ms ease;
}
.plugin-shell[data-theme="dark"] .plugin-datetime-input {
background: #1b2733;
color: #f2f3f3;
border-color: #5f6b7a;
}
.plugin-datetime-input:focus {
outline: none;
border-color: #0972d3;
box-shadow: 0 0 0 2px rgba(9, 114, 211, 0.2);
}
.plugin-summary-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
gap: 16px;
}
.plugin-summary-kpi {
display: flex;
flex-direction: column;
gap: 4px;
}
.plugin-summary-kpi strong {
font-size: 28px;
line-height: 1;
}
.plugin-form-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
gap: 16px;
}
.plugin-review-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
gap: 12px 16px;
}
.plugin-review-item {
padding: 12px;
border-radius: 12px;
background: rgba(9, 109, 217, 0.05);
}
.plugin-shell[data-theme="dark"] .plugin-review-item {
background: rgba(83, 163, 255, 0.08);
}
.plugin-review-item span {
display: block;
font-size: 12px;
opacity: 0.72;
margin-bottom: 4px;
}
.plugin-empty {
padding: 48px 16px;
}
@media (max-width: 768px) {
.plugin-shell {
padding: 16px;
}
}