-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
45 lines (41 loc) · 901 Bytes
/
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
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk&display=swap');
* {
box-sizing: border-box;
}
body {
background-color: #e1e1e1;
font-family: 'Space Grotesk', sans-serif;
display: flex;
margin: 0;
text-align: center;
align-items: center;
justify-content: center;
height: 100vh;
overflow: hidden;
}
h1 {
margin-left: 50px;
}
.key {
border: 1px solid #999;
background-color: #eee;
box-shadow: 1px 1px 3px rgba (0, 0, 0, 0,1);
display: inline-flex;
align-items: center;
font-weight: bold;
font-size: 20px;
padding: 18px;
flex-direction: column;
margin: 10px;
min-width: 150px;
position: relative;
}
.key small {
position: absolute;
top: -28px;
left: 0;
text-align: center;
width: 100%;
color: #555;
font-size: 14px;
}