blob: b76978daa4120179e33f7b3f49f1a57a4926f0ed (
plain)
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
|
body {
background: lightblue;
}
p {
font-family: Courier, Monospace;
font-size: .8em;
width: 80%;
margin: auto;
margin-top: 1em;
padding: 1em;
border: 1px solid gray;
}
.intro {
margin-bottom: 1em;
}
.tape-container {
display: flex;
margin: auto;
width: 95%;
}
.tape {
width: 95%;
height: auto;
max-width: 50vw;
}
.tape-deck-container {
display: flex;
flex-direction: column;
justify-content: center;
margin: auto;
width: 95%;
}
.tape-deck {
margin: auto;
margin-top: 1em;
}
.button-container {
display: flex;
justify-content: center;
}
button {
margin: 0;
padding: 0;
background: lightblue;
width: 130px;
border: none;
}
.play-button {
width: 130px;
}
.tape-deck-img {
max-width: 95vw;
}
|