-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.css
55 lines (44 loc) · 799 Bytes
/
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
body {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
font-family: "Roboto Mono", monospace;
font-weight: 300;
background-color: #26C6DA;
}
.share {
display: flex;
align-items: center;
padding: 0.5em 1em;
border: none;
margin: 0;
font: inherit;
font-size: 24px;
color: #fff;
background-color: #673AB7;
}
svg {
width: 24px;
height: 24px;
margin-right: 0.5em;
}
svg path {
fill: currentColor;
}
.unsupported {
display: flex;
justify-content: center;
align-items: center;
padding: 24px;
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
z-index: 100;
font-size: 32px;
color: #FFEB3B;
background-color: #111;
}