-
Notifications
You must be signed in to change notification settings - Fork 14
/
make-hell-pretty.css
84 lines (68 loc) · 906 Bytes
/
make-hell-pretty.css
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
body {
height: 100vh;
background-color: black;
font-family: "Courier New", Courier, monospace;
padding: 20px;
}
body,
a {
color: white;
}
header {
text-align: center;
}
header img {
max-width: 100%;
}
input {
font-size: 2em;
}
button {
background-color: #fc9707;
font-size: 2em;
}
h1,
h2 {
color: #fc9707;
}
h2 {
margin-bottom: 0.2em;
}
code,
.spammer-hell-summary {
display: inline-block;
background-color: #fadf2e;
border-radius: 4px;
padding: 10px;
color: black;
}
.spammer-hell-summary {
font-size: 2em;
}
ol {
padding: 0;
}
li {
list-style-type: none;
}
dl {
display: grid;
grid-template-columns: max-content auto;
margin-top: 0.3em;
margin-bottom: 3em;
}
dt {
grid-column-start: 1;
}
dd {
grid-column-start: 2;
}
#search {
text-align: center;
}
#response {
padding: 10px;
border-radius: 4px;
color: red;
font-size: 2em;
}