forked from suvelocity/MP3-DOM
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
83 lines (68 loc) · 1.22 KB
/
style.css
File metadata and controls
83 lines (68 loc) · 1.22 KB
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
@import url('https://fonts.googleapis.com/css?family=Josefin+Sans&display=swap');
*{
margin:0;
padding:0;
box-sizing: border-box;
list-style:none;
text-decoration: none;
font-family: 'Josefin Sans', sans-serif ;
}
body{
background: #f3f5f9;
}
.wrapper{
display:flex;
position:relative;
}
.wrapper .navbardiv{
position:fixed;
width:200px;
height: 100%;
background: #4b4276;
}
td { white-space:pre-wrap; word-wrap:break-word }
nav ul li{
padding:15px;
border-bottom: 1px solid rgba(0,0,0,0.05);
border-top: 1px solid rgba(225,225,225,0.05);
}
.nav-link{
color:#bdb8d7;
display: block;
}
nav ul li:hover{
background: #594f8d;
}
/*the navigator's text turns white if we 'touch' it*/
nav ul li:hover button{
color: #fff;
}
.wrapper .main-content{
width:100%;
margin-left: 230px;
}
header{
font-size: 28;
padding: 20px;
background: #fff;
color:#717171;
border-bottom: 1px solid #e0e4e8;
border-top: 1px solid #e0e4e8;
}
li ul li{
size:70%;
}
img{
width:150px;
/* margin-left: 20px;
margin-bottom:-25px; */
}
p{
white-space: pre-line;
}
.playlist>p{
font-size: 25px;
}
.playlist h1{
font-size: 20px;
}