-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
59 lines (50 loc) · 801 Bytes
/
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
*{
margin: 0%;
padding: 0%;
box-sizing: border-box;
}
body {
font-family: sans-serif;
background-color: #312b2b;
color: white;
}
.container {
display: grid;
grid-template-columns: 1fr 1fr 1fr;
column-gap: 5px;
}
.container .logo{
height: 40px;
width: 40px;
margin-left: 10px;
margin-top: 30px;
margin-bottom: 0%;
background-color: rgb(255, 102, 0);
}
.container .heading{
margin-left: -400px;
margin-top: 30px;
color: rgb(255, 102, 0);
font-size: 40px;
}
.btn {
background-color: transparent;
color: white;
font-size: 30px;
border: none;
cursor: pointer;
}
.controls {
display: flex;
justify-content: center;
}
.btn:hover {
color: rgb(255, 102, 0);
}
.playing {
text-align: center;
}
.main{
border-style: solid;
margin-top: 18%;
}