slideshow
|
@ -14,7 +14,7 @@ header {
|
|||
background: url('/static/images/texture-diagonal.png' repeat, url('static/images/header-layer.jpg') no repeat 50% -25px, #493874 url('/static/images/bg-linear.jpg') repeat-x 50%, -25px;
|
||||
background-position: 50%, 0;
|
||||
clear: both;
|
||||
position: fixed;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
h1 {
|
||||
|
|
BIN
app/static/images/arrows-alt_ffffff_64.png
Normal file
After Width: | Height: | Size: 1,015 B |
BIN
app/static/images/compress_ffffff_64.png
Normal file
After Width: | Height: | Size: 797 B |
BIN
app/static/slideshow/1.jpg
Normal file
After Width: | Height: | Size: 49 KiB |
BIN
app/static/slideshow/2.jpg
Normal file
After Width: | Height: | Size: 54 KiB |
BIN
app/static/slideshow/3.jpg
Normal file
After Width: | Height: | Size: 64 KiB |
BIN
app/static/slideshow/4.jpg
Normal file
After Width: | Height: | Size: 32 KiB |
BIN
app/static/slideshow/5.jpg
Normal file
After Width: | Height: | Size: 48 KiB |
BIN
app/static/slideshow/6.jpg
Normal file
After Width: | Height: | Size: 46 KiB |
BIN
app/static/slideshow/robot.png
Normal file
After Width: | Height: | Size: 402 KiB |
BIN
app/static/slideshow/robot2.png
Normal file
After Width: | Height: | Size: 424 KiB |
|
@ -7,8 +7,7 @@
|
|||
|
||||
{% block head %}
|
||||
{{ super() }}
|
||||
<script type="text/javascript" src="/static/js/better-simple-slideshow.js" charset="UTF-8"></script>
|
||||
<style>
|
||||
<style>
|
||||
body {
|
||||
background-image: url('/static/images/cloudsbg.jpeg');
|
||||
background-repeat: no-repeat;
|
||||
|
@ -23,7 +22,7 @@
|
|||
background: none;
|
||||
}
|
||||
|
||||
.panel-transparent .panel-heading{
|
||||
.panel-transparent .panel-heading {
|
||||
background: rgb(255, 255, 255); /* fallback */
|
||||
background: rgba(255, 255, 255, 0.7)!important;
|
||||
}
|
||||
|
@ -32,25 +31,23 @@
|
|||
background: rgb(255, 255, 255); /* fallback */
|
||||
background: rgba(255, 255, 255, 0.7)!important;
|
||||
}
|
||||
|
||||
</style>
|
||||
</style>
|
||||
{% endblock %}
|
||||
|
||||
{% block scripts %}
|
||||
<script>
|
||||
var opts = {
|
||||
auto : {
|
||||
speed : 6000,
|
||||
pauseOnHover : false
|
||||
},
|
||||
fullScreen : false,
|
||||
swipe : false
|
||||
};
|
||||
makeBSS('.bss-slides', opts);
|
||||
</script>
|
||||
{% endblock %}
|
||||
|
||||
{% block outside_container %}
|
||||
{{ super() }}
|
||||
<script type="text/javascript" src="/static/js/better-simple-slideshow.js" charset="UTF-8"></script>
|
||||
<script type="text/javascript">
|
||||
var opts = {
|
||||
auto : {
|
||||
speed : 6000,
|
||||
pauseOnHover : false
|
||||
},
|
||||
fullScreen : false,
|
||||
swipe : false
|
||||
};
|
||||
makeBSS('.bss-slides', opts);
|
||||
</script>
|
||||
{% endblock %}
|
||||
|
||||
{% block page_content %}
|
||||
|
|