summaryrefslogtreecommitdiffstats
path: root/assets
diff options
context:
space:
mode:
Diffstat (limited to 'assets')
-rw-r--r--assets/css/default.css47
1 files changed, 47 insertions, 0 deletions
diff --git a/assets/css/default.css b/assets/css/default.css
index 2cedcf0c..8de224eb 100644
--- a/assets/css/default.css
+++ b/assets/css/default.css
@@ -816,3 +816,50 @@ h1, h2, h3, h4, h5, p,
#download_widget {
width: 100%;
}
+
+.error-card {
+ display: flex;
+ flex-direction: column;
+ align-items: center;
+ padding: 25px;
+ margin-bottom: 1em;
+ border-radius: 10px;
+ border: 1px solid black;
+ box-sizing: border-box;
+ height: 100%;
+}
+
+.error-card > .explanation {
+ display: grid;
+ grid-template-columns: max-content 1fr;
+ grid-template-rows: 1fr max-content;
+ column-gap: 10px;
+ row-gap: 4px;
+}
+
+.error-card > .explanation > i {
+ grid-area: 1 / 1 / 2 / 2;
+}
+
+.error-card > .explanation > h4 {
+ grid-area: 1 / 2 / 2 / 3;
+ margin: 0;
+}
+
+.error-card > .explanation > p {
+ grid-area: 2 / 2 / 3 / 3;
+ margin: 0;
+}
+
+.error-card details {
+ margin-top: 10px;
+ width: 100%;
+}
+
+.error-card summary {
+ width: 100%;
+}
+
+.error-card pre {
+ height: 300px;
+} \ No newline at end of file