-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp-style.css
91 lines (77 loc) · 1.36 KB
/
app-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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
body {
width: 250px;
height: 400px;
margin: 0;
padding: 0;
background-color: #2e3232;
color: #fffdfd;
font-family: Arial, sans-serif;
display: flex;
flex-direction: column;
align-items: center;
justify-content: flex-start;
}
h1 {
text-align: center;
margin: 5px 0;
}
.title {
text-align: center;
width: 100%;
margin-bottom: 10px;
}
#app {
margin-top: 10px;
width: 100%;
display: flex;
flex-direction: column;
align-items: center;
}
#input-container {
width: 100%;
display: flex;
flex-direction: column;
align-items: center;
gap: 15px;
}
input {
width: 80%;
height: 30px;
border-radius: 5px;
padding: 5px;
border: none;
outline: none;
box-sizing: border-box;
}
.centered {
text-align: center;
}
#player-container {
}
#buttons-container {
position: relative;
top: 20px;
display: flex;
justify-content: center;
gap: 20px;
}
button {
background-color: rgb(0, 255, 255);
width: 75px;
height: 38px;
border-radius: 12px;
border: none;
text-align: center;
color: black;
font-size: 15px;
}
button:hover {
background-color: rgb(125, 249, 249);
}
button.inactive {
background-color: #666666;
color: white;
}
button.inactive:hover {
background-color: rgb(156, 156, 156);
}