Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Renfred Harper
srctweb
Commits
18363792
Commit
18363792
authored
Feb 26, 2014
by
Daniel W Bond
Browse files
trying to make the carousel work
parent
f0750010
Changes
2
Hide whitespace changes
Inline
Side-by-side
srctweb/website/static/css/style.css
View file @
18363792
...
...
@@ -5,11 +5,9 @@ html,
body
{
height
:
100%
;
}
a
[
name
]
{
padding-top
:
50px
;
}
/* Wrapper for page content to push down footer */
#wrap
{
min-height
:
100%
;
...
...
@@ -19,32 +17,32 @@ a[name] {
/* Pad bottom by footer height */
padding
:
0
0
75px
;
}
/* Set the fixed height of the footer here */
#footer
{
height
:
40px
;
background-color
:
#f5f5f5
;
}
.jumbostyle
{
background
:
url(/static/img/renfredhaxxor.jpg)
no-repeat
;
background-size
:
cover
;
background-position
:
20%
;
box-shadow
:
inset
0px
0px
20px
#333
;
padding-top
:
105px
;
padding-bottom
:
90px
;
.carousel
{
height
:
450px
;
margin-bottom
:
30px
;
}
.carousel-caption
{
z-index
:
1
;
margin-bottom
:
30px
;
}
.carousel
.item
{
height
:
450px
;
}
.carousel-inner
>
.item
>
img
{
width
:
100%
;
}
.transparency
{
background-color
:
rgba
(
256
,
256
,
256
,
0.6
);
padding
:
5px
0px
5px
0px
;
background-color
:
rgba
(
256
,
256
,
256
,
0.6
);
border-radius
:
5px
;
}
.srctlogo
{
width
:
10px
;
}
.smidge
{
padding-bottom
:
10px
;
}
...
...
srctweb/website/templates/index.html
View file @
18363792
...
...
@@ -4,57 +4,46 @@
SRCT
{% endblock %}
{% block content %}
<div
id =
"SRCTCarousel"
class=
"carousel slide"
>
{% block jumbotron %}
<div
id=
"SRCTCarousel"
class=
"carousel slide"
data-ride=
"carousel"
>
<ol
class=
"carousel-indicators"
>
<li
data-target
=
"#SRCTCarousel"
data-slide-to
=
"0"
class
=
"active"
></li>
<li
data-target
=
"#SRCTCarousel"
data-slide-to
=
"1"
></li>
<li
data-target
=
"#SRCTCarousel"
data-slide-to
=
"2"
></li>
<li
data-target
=
"#SRCTCarousel"
data-slide-to
=
"0"
class
=
"active"
></li>
<li
data-target
=
"#SRCTCarousel"
data-slide-to
=
"1"
></li>
<li
data-target
=
"#SRCTCarousel"
data-slide-to
=
"2"
></li>
</ol>
<div
class =
"carousel-inner"
>
<div
class=
"carousel-inner"
>
<div
class =
"item active"
>
<img
src =
"/static/img/renfredhaxxor_large.png"
alt =
"Renfred Haxxor"
class =
"img-responsive visible-lg"
>
<img
src =
"/static/img/renfredhaxxor_medium.png"
alt =
"Renfred Haxxor"
class =
"img-responsive visible-md visible-sm visible-xs"
>
<div
class =
"carousel-caption"
>
<h2>
Renfred Haxxoring
</h2>
<p
class=
"visible-lg visible-md"
>
Renfred hacking away at SRCT's most popular project: WhatsOpen.
</p>
<div
class=
"item active"
>
<img
src=
"/static/img/renfredhaxxor_large.png"
alt=
"First slide"
>
<div
class=
"carousel-caption transparency"
>
<h1>
Student-Run Computing and Technology
</h1>
</div>
</div>
<div
class =
"item"
>
<img
src =
"/static/img/2013firstmeet_large.png"
alt =
"First Meeting 2013-2014"
class =
"img-responsive visible-lg"
>
<img
src =
"/static/img/2013firstmeet_medium.png"
alt =
"First Meeting 2013-2014"
class =
"img-responsive visible-md visible-sm visible-xs"
>
<div
class =
"carousel-caption"
>
<h2>
First Meeting 2013-2014
</h2>
<p
class=
"visible-lg visible-md"
>
The first meeting of the school year.
</p>
<div
class=
"item"
>
<img
src=
"/static/img/2013firstmeet_large.png"
alt=
"Second slide"
>
<div
class=
"carousel-caption transparency"
>
<h1>
Student-Run Computing and Technology
</h1>
</div>
</div>
<div
class =
"item"
>
<img
src =
"/static/img/bradhaxxor_large.png"
alt =
"Renfred Haxxor"
class =
"img-responsive visible-lg"
>
<img
src =
"/static/img/bradhaxxor_medium.png"
alt =
"Renfred Haxxor"
class =
"img-responsive visible-md visible-sm visible-xs"
>
<div
class =
"carousel-caption"
>
<h2>
Server Troubleshooting
</h2>
<p
class=
"visible-lg visible-md"
>
Brad troubleshooting the server donated by the University.
</p>
<div
class=
"item"
>
<img
src=
"/static/img/bradhaxxor_large.png"
alt=
"Third slide"
>
<div
class=
"carousel-caption transparency"
>
<h1>
Student-Run Computing and Technology
</h1>
</div>
</div>
</div>
<a
class
=
"
carousel-control
left
"
href
=
"#SRCTCarousel"
data-slide
=
"prev"
>
<span
class =
"icon-prev
"
></span>
</a
>
<a
class
=
"left
carousel-control"
href
=
"#SRCTCarousel"
data-slide
=
"prev"
>
<span
class=
"glyphicon glyphicon-chevron-left"
></span></a>
<a
class=
"right carousel-control"
href=
"#SRCTCarousel"
data-slide=
"next"
><span
class=
"glyphicon glyphicon-chevron-right
"
></span>
</a>
</div
>
<a
class =
"carousel-control right"
href =
"#SRCTCarousel"
data-slide =
"next"
>
<span
class =
"icon-next"
></span>
</a>
{% endblock %}
{% block content %}
</div>
<legend><strong>
Misson
</strong></legend>
<p><strong>
S
</strong>
tudent-
<strong>
R
</strong>
un
<strong>
C
</strong>
omputing and
<strong>
T
</strong>
echnology (SRCT, pronounced "
<em>
circuit
</em>
") is a student
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment