-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbluejs.css
49 lines (43 loc) · 883 Bytes
/
bluejs.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
body {
background-color: #163a6b;
}
#layoutbox {
text-align:center;
margin:auto;
width: fit-content;
display: flex;
}
button.key {
float: left;
margin: 0;
padding: 0;
border: none;
outline: none;
font-family: 'M PLUS Rounded 1c', sans-serif;
font-family: 'Quicksand', sans-serif;
color: #b3b7b1;
font-size: 15px;
text-align: center;
background-color: #163a6b;
background-image: url(images/out.png);
background-size: 100%;
background-position: 0px 0px;
background-repeat: no-repeat;
width: 75px;
height: 75px;
}
@media screen and (min-width: 800px) {
button.key {
width: 100px;
height: 100px;
font-size: 20px;
}
}
button.key.br {
clear: both;
}
button.key:active {
background-image: url(images/in.png);
padding-right: 2px;
padding-top: 4px;
}