-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
82 lines (69 loc) · 1.27 KB
/
styles.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
76
77
78
79
80
81
82
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;500&display=swap');
body {
background-color: #f2f2f2;
display: flex;
overflow: hidden;
flex-direction: column;
justify-content: center;
align-items: center;
font-family: 'Roboto', sans-serif;
height: 100vh;
}
.keys {
display: flex;
list-style: none;
}
li {
box-shadow: 0px -6px 10px rgba(255, 255, 255, 1), 0px 4px 15px rgba(0, 0, 0, 0.15);
transition: 0.5s;
height: 2.5em;
font-size: 1em;
width: 3em;
margin: 0.3em;
background-color: #f2f2f2;
border-radius: 0.5em;
line-height: 2.5em;
letter-spacing: 1px;
text-align: center;
}
li:hover {
box-shadow: 0 2px 0 rgba(0, 0, 0, 0.15);
cursor: pointer;
top: 3px;
}
#red {
background-color: #a3f7bf;
width: 5em;
}
#blue {
background-color: #9aebed;
width: 6em;
}
#rebeca {
background-color: #fecd1a;
width: 8em;
}
#green {
background-color: #fa86be;
width: 6em;
}
#up {
background-color: #8594e4;
width: 8em;
}
#yellow {
background-color: #fffcab;
width: 5em;
}
#grey {
background-color: #fd3a69;
width: 3.3em;
}
#one {
background-color: #faafff;
width: 5em;
}
#two {
background-color: black;
width: 24.5em;
}