-
Notifications
You must be signed in to change notification settings - Fork 0
/
programacao.php
126 lines (104 loc) · 2.37 KB
/
programacao.php
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
<!DOCTYPE html>
<html>
<?php include 'head.php'; ?>
<body class="body">
<header>
<div class="navbar-1">
<div class="leftBtn">
<i class="material-icons">arrow_back</i>
</div>
<div class="logo">
<img src="img/logo2.png" alt="">
</div>
<div class="rightBtn">
<i class="material-icons">search</i>
</div>
</div>
<div class="navbar-2">
<div class="wrapper">
<div class="">
<span>10 de Ago</span>
<span>11 de Ago</span>
<span>12 de Ago</span>
</div>
<div class="grandient"></div>
</div>
</div>
</header>
<section>
<div class="">
</div>
</section>
<script type="text/javascript">
window.setTimeout(function () {
location.href = "programacao.php";
}, 5000);
</script>
</body>
</html>
<style>
*{
box-sizing: border-box;
}
.body{
position: relative;
top: 0;
bottom: 0;
left: 0;
right: 0;
min-height: 100vh;
background-color: #2196F3;
}
header{
left: 0;
right: 0;
background-color: #2196F3;
height: 25vh;
position: relative;
display: block;
}
.leftBtn{
float: left;
}
.rightBtn{
float: left;
}
.logo{
float: left;
position: relative;
}
.logo img{
margin-left: auto;
display: block;
margin-right: auto;
height: auto;
width: 60vw;
}
section{
height: 15vh;
left: 0;
right: 0;
padding-top: 1px;
}
.btn{
border: 0;
width: 100%;
background-color: #64B9F6;
position: relative;
display: block;
height: 100%;
color: #FFF;
font-family: 'Petita Bold', sans-serif;
text-transform: uppercase;
font-size: 1.1em;
}
.text-center{
text-align: center;
}
.text-left{
text-align: left;
}
.text-right{
text-align: right;
}
</style>