-
Notifications
You must be signed in to change notification settings - Fork 43
/
style.css
78 lines (67 loc) · 1.21 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
* {
box-sizing: border-box;
}
:root {
font-family: Inter, system-ui, Segoe UI, Roboto, Helvetica Neue, sans-serif;
color: black;
background: white;
}
body {
margin: 0.5rem 1rem;
}
header {
text-align: center;
}
header h1 {
margin-bottom: 0;
}
header p {
font-size: 1.5rem;
margin-top: 0;
}
iframe,
textarea {
border-radius: 3px;
}
iframe {
height: 20rem;
width: 100%;
border: solid 2px #ccc;
}
textarea {
width: 100%;
height: 20rem;
resize: none;
background: black;
color: white;
padding: 0.5rem 1rem;
margin-bottom: 10px;
font-size: 0.9rem;
line-height: 1.2rem;
font-family: Menlo, Cascadia Code, Consolas, Liberation Mono, monospace;
}
.container {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 1rem;
height: 100%;
width: 100%;
}
.wc {
-webkit-text-fill-color: #0000;
background-clip: text;
-webkit-background-clip: text;
background-image: linear-gradient(to right,#761fac 0,#8a19a9 20%,#d900a5 70%,#d917a3 100%);
filter: drop-shadow(0 1px 0 #fff);
font-weight: 800;
color:#69f5ff;
text-decoration: underline;
}
.docs {
margin-left: 5px;
text-decoration: none;
font-weight:600;
color:#333;
font-size: 80%;
text-decoration: underline;
}