-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
66 lines (60 loc) · 1.13 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
62
63
64
65
66
* {
font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande", "Lucida Sans", Arial,
sans-serif;
color: #fff;
}
body {
background-color: #2a2a2a;
margin: 0;
padding: 0;
height: 100vh;
overflow: hidden;
}
button {
width: 120px;
height: 60px;
background-color: #4c4f50;
border: none;
border-radius: 20px;
box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
margin: 20px 15px;
cursor: pointer;
}
header {
background-color: #181818;
width: 100%;
border-radius: 0 0 10px 10px;
padding-bottom: 15px;
}
#main-h1 {
margin: 0;
text-align: center;
font-size: 80px;
text-decoration: underline solid #fff;
}
#showbtnimg {
position: absolute;
top: 32%;
left: 35%;
width: 400px;
height: 400px;
display: none;
}
#sounds-magic {
display: flex;
justify-content: space-around;
flex-direction: row;
}
h2 {
text-align: center;
font-size: 24px;
}
#btn-inputs {
width: 200px;
height: fit-content;
box-shadow: 0 0 20px rgb(35, 39, 40);
background-color: #4c4f50;
border-radius: 20px;
margin: 0 10px;
padding: 5px 15px;
}