-
Notifications
You must be signed in to change notification settings - Fork 0
/
index_abasup.php
117 lines (103 loc) · 3.22 KB
/
index_abasup.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
<?php
require_once "config.php";
require_once "menu.php";
?>
<html>
<style>
body {
background: -moz-linear-gradient(45deg, rgba(42, 27, 161, 0.6), rgba(29, 210, 177, 0.6) 100%);
background: -webkit-linear-gradient(45deg, rgba(42, 27, 161, 0.6), rgba(29, 210, 177, 0.6) 100%);
background: -webkit-gradient(linear, 45deg, from(rgba(42, 27, 161, 0.6)), to(rgba(29, 210, 177, 0.6)));
background: -o-linear-gradient(45deg, rgba(42, 27, 161, 0.6), rgba(29, 210, 177, 0.6) 100%);
background: linear-gradient(to 45deg, rgba(42, 27, 161, 0.6), rgba(29, 210, 177, 0.6) 100%);
}
/* Carousel base class */
.carousel {
margin-bottom: 60px;
}
.carousel .container {
position: relative;
z-index: 9;
}
.carousel-control {
height: 80px;
margin-top: 0;
font-size: 120px;
text-shadow: 0 1px 1px rgba(0,0,0,.4);
background-color: transparent;
border: 0;
z-index: 10;
}
.carousel .item {
height: 500px;
}
.carousel img {
position: absolute;
top: 0;
left: 0;
min-width: 100%;
height: 500px;
}
.carousel-caption {
background-color: transparent;
position: static;
max-width: 550px;
padding: 0 20px;
margin-top: 200px;
}
.carousel-caption h1,
.carousel-caption .lead {
margin: 0;
line-height: 1.25;
color: #001471;
text-shadow: 0 1px 1px rgba(0,0,0,.4);
}
.carousel-caption .btn {
margin-top: 10px;
}
#footer {
background-color: #2527486e;
font-size: large;
font-style: italic;
font-family: -webkit-pictograph;
}
</style>
<body>
<!-- Wrap the .navbar in .container to center it within the absolutely positioned parent. -->
<div class="container">
<div id="myCarousel" class="carousel slide">
<div class="carousel-inner">
<div class="item active">
<img src="./newlg.png" alt="">
<div class="container">
<div class="carousel-caption">
<h1>Ranking 2024</h1>
<p class="lead">Ranking Geral</p>
<a class="btn btn-large btn-primary" href="./ranking_categoria_2024.php">2024</a>
</div>
</div>
</div>
<div class="item">
<img src="./itacimirim_2018_2.jpg" alt="">
<div class="container">
<div class="carousel-caption">
<h1>Ranking 2018</h1>
<p class="lead">Ocorreu a Premiação dos melhores de 2017, e o início do novo ranking 2018 entre os filiados ABASUP.</p>
<a class="btn btn-large btn-primary" href="./ranking_categoria_2018.php">Ranking 2018</a>
</div>
</div>
</div>
</div>
<a class="left carousel-control" href="#myCarousel" data-slide="prev">‹</a>
<a class="right carousel-control" href="#myCarousel" data-slide="next">›</a>
</div><!-- /.carousel -->
</div>
<div id="footer">
<div class="container">
<div class="footer-copyright text-center py-3">Developed by Augusto Carvalho:
<a href="http://standuppro.com.br/"> StandupPRO.com.br</a>
</div>
</div>
</div>
</body>
</html>