-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
executable file
·139 lines (116 loc) · 3.01 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
.jumbotron {
background-color: #86cecb;
color: white;
font-family: "Exo 2", sans-serif;
}
hr {
background-color: #86cecb;
height: 10px;
border: none;
}
.abouttext {
font-family: "Exo 2", sans-serif;
}
.podcasttitle {
font-family: "Exo 2", sans-serif;
}
* {
box-sizing: border-box;
scrollbar-color:var(--pink) #fff;
scrollbar-width:thin;
cursor:url('cursor.png'), pointer;
}
#musicplayer{
background:white; /* background color of player */
border:2px solid #e74492; /* border around player */
width:60%; /* width of the player */
display: block;
margin: 0 auto;
font-family: "Exo 2", sans-serif;
}
.songtitle{
padding:5px; /* padding around song title */
border-bottom:2px solid #e74492; /* border under song title */
display:block;
}
.controls{
font-size:18px !important; /* size of controls */
background-color:#dbfcff; /* background color of controls */
text-align:center;
width:100%;
}
.controls td{
padding:8px 5px 0px 5px; /* padding around controls */
}
.seeking{
background-color:#dbfcff; /* background color of seeking bar */
display:flex;
justify-content: space-evenly;
padding:5px; /* padding around seeking bar */
}
.current-time{
padding-right:5px;
}
.total-duration{
padding-left:5px;
}
i.fas:hover{
cursor:help;
}
i.fas.fa-pause, i.fas.fa-play, i.fas.fa-forward, i.fas.fa-backward{
color:#e74492; /* color of controls */
}
input[type=range] {
-webkit-appearance: none;
width: 100%;
background-color:#dbfcff; /* background color of seeking bar - make the color same as .seeking background color */
}
input[type=range]:focus {
outline: none;
}
/* settings for chrome browsers */
input[type=range]::-webkit-slider-runnable-track {
width: 100%;
height: 2px; /* thickness of seeking track */
cursor: help;
background: #E74492; /* color of seeking track */
}
input[type=range]::-webkit-slider-thumb {
height: 10px; /* height of seeking square */
width: 10px; /* width of seeking square */
border-radius: 0px; /* change to 5px if you want a circle seeker */
background: #E74492; /* color of seeker square */
cursor: help;
-webkit-appearance: none;
margin-top: -4.5px;
}
/* settings for firefox browsers */
input[type=range]::-moz-range-track {
width: 100%;
height: 2px; /* thickness of seeking track */
cursor: help;
background: #E74492; /* color of seeking track */
}
input[type=range]::-moz-range-thumb {
height: 10px; /* height of seeking square */
width: 10px; /* width of seeking square */
border-radius: 0px; /* change to 5px if you want a circle seeker */
background: #E74492; /* color of seeker square */
cursor: help;
border:none;
}
#navLinks {
font-family: "Exo 2", sans-serif;
}
.navbar-brand {
font-family: "Exo 2", sans-serif;
}
.video {
display: block;
margin: 0 auto;
}
@media (max-width: 1024px) {
.video {
max-width: 400px; /* Set a larger width for desktop */
}
}