forked from rpsthecoder/js-speech-synthesis
-
Notifications
You must be signed in to change notification settings - Fork 14
/
style.css
65 lines (65 loc) · 1.3 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
@import url('https://fonts.googleapis.com/css?family=Crimson+Text');
article {
width: 60%;
margin: auto;
}
blockquote,
div,
h1 {
text-align: center;
}
blockquote {
font-size: 1.2rem;
}
.btn {
background-color: #eee;
background-image: linear-gradient(to bottom,#fcfcfc 0,#eee 100%);
border-radius: 3px;
border: 1px solid #d5d5d5;
color: #333;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
font-size: .5rem;
font-weight: bold;
padding: 4px 6px 4px 6px;
text-decoration: none;
text-shadow: 0 1px 0 #fff;
}
button {
background: none;
border: none;
cursor: pointer;
height: 48px;
outline: none;
padding: 0;
width: 48px;
}
html {
font-size: 16pt;
font-family: crimson text;
}
#play {
background-image: url(play.svg);
}
#play.played {
background-image: url(play1.svg);
}
#pause {
background-image: url(pause.svg);
}
#pause.paused {
background-image: url(pause1.svg);
}
#stop {
background-image: url(stop.svg);
}
#stop.stopped {
background-image: url(stop1.svg);
}
@media (max-width: 700px) {
html {
font-size: 14pt;
}
article {
width: 90%;
}
}