summaryrefslogtreecommitdiff
path: root/style.css
blob: c2b966800b1123d33d5d87ed181b5785fd706504 (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
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;
}

.buttons {
    margin: auto;
}

.tape-deck-img {
    max-width: 95vw;
}