forked from martme/webaudio-modem
-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
75 lines (63 loc) · 1.17 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
body {
background-color: rgb(0, 43, 54);
padding: 15px 50px;
position: relative;
}
h1, h2, h3, h4, p, input, textarea, button, code, a.button, label {
font-family: Consolas, monospace;
color: rgb(253, 246, 227);
}
h1 {
font-size: 15px;
}
textarea, button, a.button {
font-size: 20px;
background-color: rgb(0, 43, 54);
border: 1px solid rgb(253, 246, 227);
padding: 5px 10px;
box-sizing: border-box;
}
a.button {
display: inline-block;
text-decoration: none;
}
button:hover, a.button:hover {
color: rgb(238, 232, 213);
border-color: rgb(238, 232, 213);
}
a.button:active, a.button:focus, button:active, button:focus {
color: rgb(147, 161, 161);
border-color: rgb(147, 161, 161);
outline: none;
}
code {
font-size: 40px;
}
textarea {
width: 100%;
min-height: 100px;
overflow-x: scroll;
}
label, input {
display: block;
width: 100%;
}
input[type="range"] {
margin-bottom: 15px;
}
.overlay {
position: absolute;
top: 0;
left: 0;
bottom: 0;
right: 0;
width: 100%;
height: 100%;
background: rgba(0, 43, 54, 0.5);
backdrop-filter: blur(5px);
}
.overlay button {
display: block;
font-size: 2rem;
margin: 5rem auto;
}