-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
59 lines (51 loc) · 939 Bytes
/
styles.css
File metadata and controls
59 lines (51 loc) · 939 Bytes
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
body {
background-color: rgb(38, 44, 45);
}
.nav {
position: relative;
background-color: rgb(17, 17, 17);
}
.drumz {
font-family: 'Rajdhani', sans-serif;
color: rgb(185, 168, 153);
display: inline;
margin: 0;
}
.brand {
font-family: 'Rajdhani', sans-serif;
color: rgb(216, 203, 203);
display: inline;
position: absolute;
right: 1%;
bottom: -20px;
}
.main-container {
display: flex;
flex-wrap: wrap;
height: 80vh;
justify-content: space-around;
align-content: center;
}
.img-container {
position: relative;
border-style: solid;
height: 8rem;
width: 8rem;
overflow: hidden;
background-color: white;
}
.overlay {
height: 100%;
width: 100%;
background-color: rgba(0, 0, 0, 0.51);
position: absolute;
}
.pressed {
background-color: rgba(0, 0, 0, 0.8);
}
.key-text {
color: white;
font-family: 'Rajdhani', sans-serif;
position: absolute;
transform: translate(75%, 75%);
}