summaryrefslogtreecommitdiff
path: root/packages/backend/src/server/web/error.css
blob: 9f8f90501796208e865cf785e3324cd220cb5fb9 (plain)
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
* {
	font-family: BIZ UDGothic, Roboto, HelveticaNeue, Arial, sans-serif;
}

body,
html {
	background-color: #222;
	color: #dfddcc;
	justify-content: center;
	margin: auto;
	width: 80%;
	padding: 10px;
	text-align: center;
}

button {
	border-radius: 999px;
	padding: 0px 12px 0px 12px;
	border: none;
	cursor: pointer;
	margin-bottom: 12px;
}

.button-big {
	background: linear-gradient(90deg, rgb(134, 179, 0), rgb(74, 179, 0));
	line-height: 50px;
}

.button-big:hover {
	background: rgb(153, 204, 0);
}

.button-small {
	background: #444;
	line-height: 40px;
}

.button-small:hover {
	background: #555;
}

.button-label-big {
	color: #222;
	font-weight: bold;
	font-size: 20px;
	padding: 12px;
}

.button-label-small {
	color: rgb(153, 204, 0);
	font-size: 16px;
	padding: 12px;
}

a {
	color: rgb(134, 179, 0);
	text-decoration: none;
}

p,
li {
	font-size: 16px;
}

.dont-worry,
#msg {
	font-size: 18px;
}

.icon-warning {
	color: #dec340;
	height: 4rem;
}

h1 {
	font-size: 32px;
}

code {
	font-family: Fira, FiraCode, monospace;
}

details {
	background: #333;
	margin-bottom: 2rem;
	padding: 0.5rem 1rem;
	border-radius: 5px;
	justify-content: center;
	margin: auto;
}

summary {
	cursor: pointer;
}

summary > * {
	display: inline;
}