head.php
3.65 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
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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=ISO-8859-1">
<?php
//utilizado para o cabecalho das paginas que nao sao mapas e que usam bootstrap com material design
echo "
<meta charset='utf-8'>
<meta http-equiv='X-UA-Compatible' content='IE=edge'>
<meta name='viewport' content='width=device-width, initial-scale=1'>
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
<meta name='description' content='Interface Integrada para Internet de ferramentas de geoprocessamento'>
<meta name='author' content='i3Geo'>
<link rel='icon' href='" . ONDEI3GEO . "/favicon.ico'>
<title>i3Geo</title>
<!-- Material Design fonts -->
<link rel='stylesheet' type='text/css' href='//fonts.googleapis.com/css?family=Roboto:300,400,500,700'>
<link rel='stylesheet' type='text/css' href='//fonts.googleapis.com/icon?family=Material+Icons'>
<!-- Bootstrap core CSS -->
<link href='" . ONDEI3GEO . "/pacotes/bootstrap/css/bootstrap.min.css' rel='stylesheet'>
<!-- Bootstrap Material Design -->
<link rel='stylesheet' type='text/css' href='" . ONDEI3GEO . "/pacotes/bootstrap-material-design/dist/css/bootstrap-material-design.min.css'>
<link rel='stylesheet' type='text/css' href='" . ONDEI3GEO . "/pacotes/bootstrap-material-design/dist/css/ripples.min.css'>
<!-- IE10 viewport hack for Surface/desktop Windows 8 bug -->
<link href='" . ONDEI3GEO . "/pacotes/bootstrap/css/ie10-viewport-bug-workaround.css' rel='stylesheet'>
<!-- Custom styles for this template -->
<link href='" . ONDEI3GEO . "/pacotes/font-awesome/css/font-awesome.min.css' rel='stylesheet'>
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
<!--[if lt IE 9]>
<script src='https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js'></script>
<script src='https://oss.maxcdn.com/respond/1.4.2/respond.min.js'></script>
<![endif]-->
<script src='" . ONDEI3GEO . "/pacotes/jquery/dist/jquery.min.js'></script>
<script src='" . ONDEI3GEO . "/pacotes/bootstrap/js/bootstrap.min.js'></script>
<!-- IE10 viewport hack for Surface/desktop Windows 8 bug -->
<script src='" . ONDEI3GEO . "/pacotes/bootstrap/js/ie10-viewport-bug-workaround.js'></script>
<script src='" . ONDEI3GEO . "/pacotes/bootstrap-material-design/dist/js/material.min.js'></script>
";
?>
<style>
#brasil {
background-image: url("../imagens/sprite.png");
background-position: 0 -600px;
background-repeat: no-repeat;
cursor: pointer;
height: 13px;
width: 22px;
}
#uk {
background-image: url("../imagens/sprite.png");
background-position: 0 -625px;
background-repeat: no-repeat;
cursor: pointer;
height: 13px;
width: 22px;
}
#espanhol {
background-image: url("../imagens/sprite.png");
background-position: 0 -1400px;
background-repeat: no-repeat;
cursor: pointer;
height: 13px;
width: 22px;
}
#bandeiras img {
margin-left: 7px;
}
#bandeiras {
width: 100px;
text-align: left;
}
hr {
border-color: #fff -moz-use-text-color -moz-use-text-color;
}
#menuTpl a:focus, #menuTpl a:hover {
}
#menuTpl ul {
}
#menuTpl li {
}
.navbar-collapse { max-height: 100% !important; }
.btn.btn-fab.btn-fab-mini {
font-size: 12px;
height: 24px;
min-width: 24px;
padding-bottom: 5px;
padding-left: 5px;
padding-right: 5px;
padding-top: 5px;
width: 24px;
}
.btn.btn-fab.btn-fab-max {
font-size: 1.6em;
height: 40px;
min-width: 40px;
padding-bottom: 5px;
padding-left: 5px;
padding-right: 5px;
padding-top: 7px;
width: 40px;
}
body{
background-color: #fff;
}
</style>
</head>