-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathJukebox.css
103 lines (93 loc) · 1.57 KB
/
Jukebox.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
h1 {
text-align: center;
font-family: 'Baloo Bhaina', cursive;
color: snow;
font-size: 3rem;
text-transform: uppercase;
margin-top: 0;
letter-spacing: .3rem;
}
video {
position: fixed;
top: 60%;
left: 50%;
min-width: 100%;
min-height: 100%;
width: auto;
height: auto;
z-index: -100;
transform: translateX(-50%) translateY(-50%);
background: url("Coffee-Place/MP4/Coffee-Place.mp4");
background-size: cover;
transition: 1s opacity;
}
.Symbols {
text-align: center;
padding-top: 400px;
}
#Box{
display: hidden;
}
#Box {
background: #FFF5EE;
padding: 0px 1px;
border-style: ridge;;
font: 16px sans-serif;
line-height: 1.5;
margin: .5em;
margin-left: 20em;
margin-right: 20em;
opacity: .8;
}
#Controls {
font-size: 1.5em;
margin-left: 15em;
margin-right: 15em;
}
#previous {
margin-right: 2em;
color: #FF1493;
}
#pause{
margin-right: 2em;
color: #FF1493;
}
#play{
margin-right: 2em;
color: #FF1493;
}
#stop{
margin-right: 2em;
color: #FF1493;
}
#next{
margin-right: 2em;
color: #FF1493;
}
@media (min-width: 400px) {
body {
background-color: ivory;
}
}
@media (min-width: 550px) {
body {
background-color: ivory;
}
}
@media (min-width: 750px) {
body{
background-color: ivory;
}
}
@media (min-width: 1000px) {
body {
background-color: ivory;
}
}
@media screen and (max-width: 500px) {
div{width:70%;}
}
@media screen and (max-device-width: 800px) {
html {background: url("Coffee-Place/MP4/Coffee-Place.mp4") #000 no-repeat center center fixed; }
#bgvid { display: none; }
}