summaryrefslogtreecommitdiff
path: root/style.css
blob: bed54079bcd704a7757333cc414d660e9dd3c93b (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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
body {
    background: lightblue;
    font-family: "UnifontMedium";
    font-weight: normal;
    font-style: normal;
}

p {
    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%;
    justify-content: center;
}

.tape {
    width: 95%;
    height: auto;
    max-width: 50vw;
}

.side {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: auto;
    width: 100%;
}

h3 {
    margin: auto;
    padding-bottom: .25em;
}

.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 {
    width: 10%;
    margin: auto;
}

.touch-button {
    margin: 0;
    padding: 0;
    background: lightblue;
    width: 130px;
    border: none;
}

.play-button {
    width: 130px;
}

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

.img-center {
    margin: auto;
    width: 50%;
    display: block;
}