-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
108 lines (92 loc) · 1.85 KB
/
styles.css
File metadata and controls
108 lines (92 loc) · 1.85 KB
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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Jersey+15&display=swap');
* {
box-sizing: border-box;
outline: none;
user-select: none;
}
html, body {
height: 100%;
}
body {
display: flex;
flex-direction: column;
justify-content: space-between;
align-items: center;
margin: 0;
color: #FFB870;
background-color: #121113;
}
header, footer {
margin: 24px;
}
header .primary {
font-family: "Jersey 15", sans-serif;
font-size: 80px;
color: #DACC3E;
border: 5px solid #DACC3E;
padding: 8px 24px;
}
footer {
display: flex;
height: 19.5px;
font-family: "Bebas Neue", sans-serif;
font-size: 16px;
letter-spacing: 5px;
}
footer .secondary {
transition: border-color ease-out 0.3s;
border-color: transparent;
width: 71px;
}
footer .secondary:hover {
border-bottom: 2px solid #FFB870;
}
a {
text-decoration: none;
color: #FFB870;
}
.keys {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 25px;
list-style-type: none;
padding: 0;
margin: 0;
}
.key {
transition: all 0.05s;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
width: 111px;
height: 111px;
font-family: "Bebas Neue", sans-serif;
text-align: center;
border: 5px solid #BC2C1A;
cursor: pointer;
}
.key .primary {
font-size: 48px;
color: #F1DEDE;
}
.key .secondary {
font-size: 16px;
color: rgba(241, 222, 222, 0.5);
}
.key.played {
transform: scale(1.1);
border-color: #DACC3E;
box-shadow: 0px 0px 75px 1px #BC2C1A;
}
@media only screen and (max-device-width: 1190px) {
.keys {
gap: 15px;
}
}
@media only screen and (max-device-width: 1190px) and (orientation: landscape) {
header .primary {
display: none;
}
}