-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.css
83 lines (70 loc) · 1.09 KB
/
index.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
html {
font-family: 'Segoe UI', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}
@media (prefers-color-scheme: dark) {
html {
background: #0d1117;
color: #c9d1d9;
}
}
body {
padding: 3em;
}
h1,
h3,
p {
text-align: center;
}
textarea {
width: 100%;
}
textarea.text {
height: 200px;
}
textarea.url {
height: 40px;
}
button {
width: 100px;
margin-left: calc(50% - 50px);
padding: 6px 10px;
border-radius: 8px;
background: #d1d1d1;
font-size: 1.1em;
font-weight: bold;
}
.options {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 12px;
margin-bottom: 12px;
}
output {
display: block;
width: 100%;
min-height: 100px;
border: 1px solid #30363d;
border-radius: 6px;
white-space: pre-wrap;
font-family: monospace;
}
footer {
background-color: #0004;
position: fixed;
bottom: 0;
left: 0;
width: 100%;
padding: 0.5em;
text-align: center;
}
:any-link {
color: #8ec6e1
}
.flexed {
display: flex;
gap: 5%;
}
.half {
width: 50%;
}