-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapi.css
More file actions
41 lines (37 loc) · 890 Bytes
/
api.css
File metadata and controls
41 lines (37 loc) · 890 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
body{
text-align: center;
background-image:url("https://static.vecteezy.com/system/resources/thumbnails/044/653/057/small_2x/as-the-actors-deliver-their-lines-their-voices-echo-throughout-the-grand-hall-captivating-the-audiences-attention-photo.jpg") ;
background-size: cover;
}
h1{
margin-top: 100px;
color: rgb(237, 228, 218);
font-size: 80px;
font-weight: bold;
text-decoration: underline;
}
.main{
margin: 0 auto;
margin-top: 200px;
display: flex;
justify-content: space-evenly;
width: 80%;
}
.key
{ font-size: 30px;
border: 5px solid black;
color: white;
height: 80px;
width: 80px;
background-color: rgba(0, 0, 0, 0.788);
transition-duration:0.05s ;
box-shadow: 0 0 10px black;
}
.key p{
font-size: 15px;
color: yellow;
}
.pressed{
border:2px solid yellow ;
transform: scale(1.3);
}