-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
96 lines (96 loc) · 3.14 KB
/
index.html
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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon">
<meta name="author" content="Radio Verde Vida">
<meta name="description" content="Ouça agora, o melhor da música brasileira na Rádio Verde Vida!">
<meta name="keywords" content="rádio, música, internet radio, radio online, radio verde vida, mpb, música popular brasileira, brasil, fortaleza, ceará, maranguape">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<style>
html{
position: fixed;
width: 100%;
height: 100%
}
body{
background-color: #fff1da;
}
.main{
overflow: hidden;
display: flex;
justify-content: center;
align-items: center;
}
.conteudo{
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%)
}
.logo{
padding-bottom: 10px;
text-align: center;
}
.player{
width: 500px;
height: 136px;
text-align: center;
}
.butoes{
padding-top: 40px;
text-align: center;
}
@media only screen and (max-width: 600px)
{
iframe{
width: 380px;
}
img{
width: 50%;
}
}
.fa {
padding: 10px;
font-size: 20px;
width: 20px;
text-align: center;
text-decoration: none;
border-radius: 50%;
}
.fa:hover {
opacity: 0.95;
}
.fa-facebook {
background: #4267B2;
color: white;
}
.fa-instagram {
background: #30618A;
color: white;
}
</style>
<title>Rádio Verde Vida - Música para viver bem!</title>
</head>
<body>
<div class="main">
<div class="conteudo">
<div class="logo">
<img src="logo.svg" alt="Rádio Verde Vida - radioverdevida.com.br">
</div>
<div class="player">
<!-- RCAST.NET - START EMBEDDED PLAYER -->
<iframe width="100%" height="100%" src="https://players.rcast.net/itunes/67647" frameborder="0" scrolling="no" allow="autoplay"></iframe>
<div style="overflow:hidden; height:0px; width:0px;"><a href="https://www.rcast.net" title="Internet Radio Hosting">RCAST.NET</a></div>
<!-- RCAST.NET - END EMBEDDED PLAYER -->
</div>
<div class="butoes">
<a href="https://facebook.com/radioverdevida" target="_blank" class="fa fa-facebook"></a>
<a href="https://instagram.com/radioverdevida" target="_blank" class="fa fa-instagram"></a>
</div>
</div>
</div>
</body>
</html>