-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
61 lines (52 loc) · 1.04 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
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap');
* {
box-sizing: border-box;
padding : 0px;
margin : 0px;
}
html,
body {
height: 100%;
}
body {
background-image: url('./images/pexels-photo-995301.webp');
background-position: center;
font-family: 'Open Sans', sans-serif;
}
li {
list-style: none;
border : 5px solid #595260;
max-width : 100px;
width : 100%;
text-align: center;
padding : 5px;
background: #B2B1B9;
}
#drum-machnie {
width : 100%;
height : 100%;
display : flex;
justify-content: center;
align-items : center;
background : #2C2E43;
opacity: 0.8;
}
#display {
display : flex;
justify-content: space-around;
max-width : 1200px;
width : 100%;
}
.key {
font-size : 20px;
font-weight: 700;
margin-top : 10px;
}
.tune {
font-size : 15px;
font-style: italic;
margin : 10px 0px;
}
.playing {
border: 5px solid #FFD523;
}