-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
80 lines (70 loc) · 1.18 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
img{
width: 300px;
height: 300px;
}
body , html {
margin: 0;
padding: 0;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100vh;
background-color: gray;
color:#dddddd;
font-family: 'Righteous', cursiva;
}
.descricao{
width:300px
}
h2{
margin-bottom: 5px;
}
.duracao{
width:300px ;
margin-top: 5px;
}
.barra {
width: 300px;
height: 6px;
border:1px solid red;
border-radius: 5px;
display: flex;
align-items:center;
justify-content: flex-start;
}
progress{
height: 6px;
width:0;
background-color: #333;
}
.ponto{
width:20px;
height:20px;
background-color: #eee;
border-radius: 50%;
margin-left:-2px
}
.tempo{
display: flex;
width: 300px;
justify-content: space-between;
}
.botoes{
width: 300px;
display: flex;
justify-content: space-around;
align-items: center;
margin-top: 15px;
}
.botao-play,.pause{
font-size:50px;
cursor: pointer;
}
.setas{
font-size: 40px;
cursor:pointer
}
.pause{
display:none;
}