-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathstyle.css
100 lines (93 loc) · 1.61 KB
/
style.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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
:root {
--b: #000;
--w: #fff;
}
@media (prefers-color-scheme: dark) {
:root {
--b: #fff;
--w: #000;
}
}
body {
color: var(--b);
background-color: var(--w);
font-family: 'Ubuntu Mono', monospace;
max-width: 720px;
margin: 0 auto;
text-align: center;
}
main { margin: 4rem 2rem; }
a, a:visited { color: var(--b); }
img { width: 100%; }
.not-found, .bad-mime-type { margin-bottom: 2rem; }
.logo pre {
display: flex;
justify-content: center;
text-align: left;
}
/* Drag and Drop */
.drop-area {
position: relative;
display: flex;
align-items: center;
justify-content: center;
height: 8rem;
padding: 25px;
border: 3px dashed #e1e1e1;
}
.drop-area.dragover { border-color: var(--b); }
.file-input {
position: absolute;
left: 0;
top: 0;
height: 100%;
width: 100%;
cursor: pointer;
align-items: center;
opacity: 0;
}
.file-input-label {
display: block;
margin-top: 1rem;
}
/* Copy to clipboard */
.copy-to-clipboard {
display: flex;
margin: 2rem 0;
border: 1px solid var(--b);
}
.copy-to-clipboard input[type=text] {
flex: 50%;
width: 100%;
padding: 12px 20px;
border: none;
outline: none;
background-color: var(--w);
color: var(--b);
}
.copy-to-clipboard button {
padding: 12px 20px;
margin: 0;
min-width: 120px;
cursor: pointer;
text-align: center;
border: none;
background-color: var(--b);
color: var(--w);
}
/* cURL command */
.curl pre {
text-align: left;
padding: 12px 20px;
font-size: 14px;
background: var(--b);
color: var(--w);
overflow-x: auto;
}
/* SVG */
svg {
color: var(--b);
}
svg path {
stroke: currentcolor;
}