110 lines
3.1 KiB
HTML
Executable File
110 lines
3.1 KiB
HTML
Executable File
<!DOCTYPE html>
|
|
<html class="play" ng-app="app">
|
|
<head>
|
|
<script>
|
|
S = {}
|
|
</script>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="initial-scale=1, maximum-scale=1, user-scalable=no, width=device-width">
|
|
<title></title>
|
|
|
|
|
|
<script src="lib/ionic/js/ionic.bundle.js"></script>
|
|
<script src="js/lottie-player.js"></script>
|
|
|
|
<!-- Fontes Google Fonts & Fontshare -->
|
|
<link href="https://api.fontshare.com/v2/css?f[]=general-sans@200,300,400,500,600,700&display=swap" rel="stylesheet">
|
|
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap" rel="stylesheet">
|
|
|
|
<!-- cordova script (this will be a 404 during development) -->
|
|
<!-- <script src="cordova.js"></script> -->
|
|
|
|
|
|
<!-- IF using Sass (run gulp sass first), then uncomment below and remove the CSS includes above
|
|
<link href="css/ionic.app.css" rel="stylesheet">
|
|
-->
|
|
<!-- jsDelivr -->
|
|
<!-- <script src="https://cdn.jsdelivr.net/npm/fireworks-js@2.x/dist/index.umd.js"></script>
|
|
|
|
<script src="https://unpkg.com/fireworks-js@2.x/dist/index.umd.js"></script> -->
|
|
|
|
|
|
|
|
<link href="lib/ionic/css/ionic.css" rel="stylesheet">
|
|
<link href="lib/ionic/css/style.css" rel="stylesheet">
|
|
<link href="css/custom.css" rel="stylesheet">
|
|
<link rel="stylesheet" href="lib/ionic/css/transition-style.css">
|
|
<style type="text/css">
|
|
.platform-ios .manual-ios-statusbar-padding{
|
|
padding-top:20px;
|
|
}
|
|
.manual-remove-top-padding{
|
|
padding-top:0px;
|
|
}
|
|
.manual-remove-top-padding .scroll{
|
|
padding-top:0px !important;
|
|
}
|
|
ion-list.manual-list-fullwidth div.list, .list.card.manual-card-fullwidth {
|
|
margin-left:-10px;
|
|
margin-right:-10px;
|
|
}
|
|
ion-list.manual-list-fullwidth div.list > .item, .list.card.manual-card-fullwidth > .item {
|
|
border-radius:0px;
|
|
border-left:0px;
|
|
border-right: 0px;
|
|
}
|
|
.show-list-numbers-and-dots ul{
|
|
list-style-type: disc;
|
|
padding-left:40px;
|
|
}
|
|
.show-list-numbers-and-dots ol{
|
|
list-style-type: decimal;
|
|
padding-left:40px;
|
|
}
|
|
</style>
|
|
|
|
<script src="js/app.js"></script>
|
|
<script src="js/controllers.js"></script>
|
|
<script src="js/routes.js"></script>
|
|
|
|
<script src="js/directives.js"></script>
|
|
<script src="js/services.js"></script>
|
|
|
|
<!-- Only required for Tab projects w/ pages in multiple tabs
|
|
<script src="lib/ionicuirouter/ionicUIRouter.js"></script>
|
|
-->
|
|
|
|
</head>
|
|
<style>
|
|
/* Estilos para o overlay de transição */
|
|
#transition {
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
background-color: #000;
|
|
z-index: 9999;
|
|
pointer-events: none;
|
|
opacity: 0;
|
|
transition: opacity 0.5s ease-in-out;
|
|
}
|
|
|
|
#transition.active {
|
|
opacity: 1;
|
|
}
|
|
</style>
|
|
<body animation="slide-left-right-ios7">
|
|
<div class="custom-bg-pattern" ></div>
|
|
<div>
|
|
<div>
|
|
<ion-nav-bar class="bar-stable">
|
|
<ion-nav-back-button></ion-nav-back-button>
|
|
</ion-nav-bar>
|
|
<ion-nav-view></ion-nav-view>
|
|
</div>
|
|
</div>
|
|
|
|
</body>
|
|
</html>
|