-
Notifications
You must be signed in to change notification settings - Fork 0
/
default.css
86 lines (73 loc) · 1.52 KB
/
default.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
.teste{
margin-top: 50px
}
.rodape{
margin-top: 40px;
}
.botoes{
margin-left: 75px;
}
/*ESTE BODY É PARA O FUNDO-BASE SER PRETO E REMOVER AS BORDAS DA PÁGINA*/
body{
background-color: black;
margin: 0;
height: 100%;
}
/*PROPRIEDADES DA FONTE*/
p,table {
color: white;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif
}
/*ESTES ARTICLES DEIXAM A PÁGINA OPACA E DESFOCADA (NÃO ME PERGUNTE O QUE ISSO SIGNIFICA)*/
body{
position: relative;
z-index: 1;
}
article::before {
content: "";
position: absolute;
top: 0;
left: 0;
width: 100vw;
height: 100vh;
opacity: .4;
z-index: -1;
background: url(images/tec.jpg);
-webkit-filter: blur(15px);
-moz-filter: blur(15px);
-o-filter: blur(15px);
-ms-filter: blur(15px);
filter: blur(30px);
background-position: center;
background-repeat: no-repeat;
background-size: cover;
}
/*PROPRIEDADES DA CAPA DO ÁLBUM*/
.capaDoAlbum{
float: left;
width: 33.30%;
margin-left: 75px;
}
/*PROPRIEDADES DA LISTA DE MÚSICAS*/
.listaDeMusicas{
margin-left: 10px;
overflow: hidden;
overflow-y: hidden;
}
/*TAMANHO DA TABELA // LISTA DE MÚSICAS*/
.lista-musicas {
width:760px;
}
/*REMOVER A BARRA SCROLL*/
::-webkit-scrollbar {
width: 0px;
}
/* Clear floats after the columns */
.row:after {
content: "";
display: table;
clear: both;
}
thead{
color: rgb(212, 212, 212)
}