-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
76 lines (68 loc) · 1.45 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
66
67
68
69
70
71
72
73
74
75
body {
background-color: rgb(212, 154, 163);
display: flex;
flex-direction: column;
justify-content: space-between;
align-content: space-between;
}
p {
text-align: center;
align-self: center;
justify-content: center;
font-family: monospace;
font-weight: bold;
margin-top: 5%;
font-size: 1.5em;
}
#keys {
user-select: none;
margin-top: 5%;
display: flex;
flex-direction: row;
justify-content: center;
align-content: center;
background-image: url("background-img/fondo.png");
width: 557px;
height: 322px;
position: relative;
align-self: center;
justify-self: center;
opacity: 0.9;
border-radius: 10px;
}
.key {
margin: 0 4.5% 0 4.5%;
width: 80px;
height: 80px;
opacity: 0.7;
border: 3px solid grey;
border-radius: 5px;
display: flex;
align-self: center;
flex-direction: column;
justify-content: center;
align-content: center;
background-color: lightyellow;
text-align: center;
transition: all 0.07s;
}
.inst {
font-family: monospace;
text-transform: uppercase;
letter-spacing: 0.15em;
font-size: 1em;
color: rgb(247, 159, 174);
font-weight: bold;
}
.char {
font-family: monospace;
text-transform: uppercase;
margin-bottom: 0.4em;
font-size: 1.35em;
color: rgb(68, 68, 68);
}
.playing {
scale: 1.2;
border-color: goldenrod;
box-shadow: 0 0 1.5px 1.5px goldenrod;
}