forked from ericpolley/kouvradio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
86 lines (63 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
81
82
83
84
85
86
body {
background-image: url('images/background.jpg');
background-position: center;
background-attachment: fixed;
background-blend-mode: overlay;
background-color: rgba(110, 16, 16, 0.7);
color: rgb(194, 177, 177);
text-align: center;
}
hr {
color: white;
width: 100%;
}
.navItem, a {
color: rgb(255, 255, 255);
text-decoration: none;
margin-left: 2%;
margin-right: 2%;
}
.imgSml {
width: 40px;
margin: 0;
}
.img {
min-width: 20vw;
margin: 0;
padding: 0;
}
.hide {
display: none;
}
.navItem:hover, a:hover {
cursor: crosshair;
color: rgb(255, 37, 37);
}
li {
text-align: left;
}
.box {
border: 5px solid black;
width: 800px;
height: auto;
background-color: rgb(9, 9, 9, 0.5);
}
.player, .player2 {
border: 5px solid black;
width: 800px;
height: 70vh;
background-color: rgb(9, 9, 9, 0.5);
}
@media (max-width:550px) {
.player {
display: none;
}
}
@media (min-width:550px) {
.player2 {
display: none;
}
}
.text-erp {
font-size: 40%;
}