-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
71 lines (62 loc) · 1.09 KB
/
style.css
File metadata and controls
71 lines (62 loc) · 1.09 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
header {
background-color: rgba(255, 255, 255, 0.9);
}
.card-img-top{
transition-duration: 0.3s;
filter: sepia(0.35);
}
.card-img-top:hover{
filter: sepia(0);
}
#dark-mode-btn {
cursor: pointer;
height: 25px;
margin: auto;
position: absolute;
top: 0;
left: 0;
bottom: 0;
right: 0;
}
#modal-comments-cont {
height: 30vh;
overflow-y: scroll;
padding: 10px;
}
#user-img {
height: 150px;
width: 150px;
margin-right: 20px;
}
.dark-mode {
background-color: #3e3e42;
}
.dark-mode-nav {
background-color: #3e3e42c5;
}
.dark-mode-card {
background-color: #dddddd;
color: white;
}
audio{
width: 150px;
}
audio::-webkit-media-controls-play-button,
audio::-webkit-media-controls-panel {
background-color: white;
}
audio::-webkit-media-controls-rewind-button{
display: none;
}
audio::-webkit-media-controls-timeline-container {
display: none;
}
audio::-webkit-media-controls-current-time-display {
display: none;
}
audio::-webkit-media-controls-time-remaining-display {
display: none;
}
audio::-webkit-media-controls-timeline {
display: none;
}