-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmybluradio.css
55 lines (48 loc) · 840 Bytes
/
mybluradio.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
html {
font-size: 62.5%;
box-sizing: border-box;
}
*, *::before, *::after {
margin: 0;
padding: 0;
box-sizing: inherit;
}
body {
background-color: #282835;
color: #cccccc;
font-family: Arial, Helvetica, sans-serif;
}
button {
background-color: #327fa8;
margin-left: 2vw;
margin-top: 2.4vw;
padding: 0px;
width: 20vw;
height: 16vw;
border-width: 0px;
border-radius: 8px;
color: #c0c9cc;
font-size: 3.5vw;
font-weight: bold;
vertical-align: top;
}
button:hover {
background-color: #5d9fc2;
/* color: #000000; */
}
button:focus {
background-color: #9ec8de;
color: #ffffff;
}
.stopbutton {
background-color: #0b5178;
width: 65vw;
height: 8vw;
margin-left: 13vw;
margin-top: 3.4vw;
/* margin-left: 10px; */
}
.stopbutton:focus {
background-color: #0b5178;
color: #cccccc;
}