-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
9 changed files
with
241 additions
and
13 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
28 changes: 28 additions & 0 deletions
28
www/wp-content/themes/ation2016/src/styles/components/_services.scss
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
.services { | ||
.bubbles { | ||
a { | ||
border-radius: 50px; | ||
width: 70px; | ||
height: 70px; | ||
} | ||
} | ||
|
||
.service { | ||
padding: 10%; | ||
background-color: $grey; | ||
color: white; | ||
margin-bottom: 20px; | ||
|
||
h1 { | ||
margin-top: 0; | ||
text-align: center; | ||
font-family: $header-font; | ||
font-size: 25px; | ||
} | ||
|
||
p { | ||
font-family: $header-font; | ||
color: white; | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
136 changes: 136 additions & 0 deletions
136
www/wp-content/themes/ation2016/templates/page-services.twig
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,136 @@ | ||
{% extends "base.twig" %} | ||
|
||
{% block content %} | ||
<style> | ||
.jumbotron { | ||
background-color: white; | ||
} | ||
#persona { | ||
background-image: url(http://ation.develop.digitalmediauconn.org/img/circles/persona.png); | ||
} | ||
#unleash { | ||
background-image: url(http://ation.develop.digitalmediauconn.org/img/circles/unleash.png); | ||
} | ||
#skybox { | ||
background-image: url(http://ation.develop.digitalmediauconn.org/img/circles/skybox.png); | ||
} | ||
#umbie { | ||
background-image: url(http://ation.develop.digitalmediauconn.org/img/circles/umbie.png); | ||
} | ||
#football { | ||
background-image: url(http://ation.develop.digitalmediauconn.org/img/circles/football.png); | ||
} | ||
#pcc { | ||
background-image: url(http://ation.develop.digitalmediauconn.org/img/circles/pcc.png); | ||
} | ||
#iso { | ||
background-image: url(http://ation.develop.digitalmediauconn.org/img/circles/iso.png); | ||
} | ||
#huskyhunt { | ||
background-image: url(http://ation.develop.digitalmediauconn.org/img/circles/huskyhunt.png); | ||
} | ||
#dtstorrs { | ||
background-image: url(http://ation.develop.digitalmediauconn.org/img/circles/dtstorrs.png); | ||
} | ||
#mansfeild { | ||
background-image: url(http://ation.develop.digitalmediauconn.org/img/circles/mansfield.png); | ||
} | ||
.btn-circle { | ||
margin-top: 2px; | ||
margin-left: 2px; | ||
margin-right: 2px; | ||
width: 70px; | ||
height: 70px; | ||
padding: 0; | ||
border-radius: 50px; | ||
background-size: 120%; | ||
background-repeat: no-repeat; | ||
background-position: -8.5px 2px; | ||
} | ||
#vimeo { | ||
background-image: url(http://ation.develop.digitalmediauconn.org/img/social/vimeo.png); | ||
} | ||
#facebook { | ||
background-image: url(http://ation.develop.digitalmediauconn.org/img/social/facebook.png); | ||
} | ||
#pintrest { | ||
background-image: url(http://ation.develop.digitalmediauconn.org/img/social/pintrest.png); | ||
} | ||
#twitter { | ||
background-image: url(http://ation.develop.digitalmediauconn.org/img/social/twitter.png); | ||
} | ||
#instagram { | ||
background-image: url(http://ation.develop.digitalmediauconn.org/img/social/instagram.png); | ||
} | ||
.btn-circle2 { | ||
margin-left: 2px; | ||
margin-right: 2px; | ||
width: 50px; | ||
height: 50px; | ||
padding: 0; | ||
border-radius: 50px; | ||
background-size: 105%; | ||
background-repeat: no-repeat; | ||
background-position: -1px -1px; | ||
} | ||
.pullup { | ||
margin-top: -5%; | ||
} | ||
</style> | ||
<div class="container services"> | ||
|
||
<div class="row"> | ||
{% for service in services %} | ||
<div class="col-xs-12 col-sm-6 col-md-4"> | ||
<div class="service"> | ||
<h1>{{ service.name }}</h1> | ||
<p>{{ service.description }}</p> | ||
</div> | ||
</div> | ||
{% endfor %} | ||
</div> | ||
|
||
<div class="jumbotron text-center bubbles"> | ||
<a href="#" class="btn btn-default btn-circle btn-lg" role="button" id="persona"></a> | ||
<a href="#" class="btn btn-default btn-circle btn-lg" role="button" id="unleash"></a> | ||
<a href="#" class="btn btn-default btn-circle btn-lg" role="button" id="skybox"></a> | ||
<a href="#" class="btn btn-default btn-circle btn-lg" role="button" id="umbie"></a> | ||
<a href="#" class="btn btn-default btn-circle btn-lg" role="button" id="football"></a> | ||
<a href="#" class="btn btn-default btn-circle btn-lg" role="button" id="pcc"></a> | ||
<a href="#" class="btn btn-default btn-circle btn-lg" role="button" id="iso"></a> | ||
<a href="#" class="btn btn-default btn-circle btn-lg" role="button" id="huskyhunt"></a> | ||
<a href="#" class="btn btn-default btn-circle btn-lg" role="button" id="dtstorrs"></a> | ||
<a href="#" class="btn btn-default btn-circle btn-lg" role="button" id="mansfeild"></a> | ||
</div> | ||
|
||
<div class="jumbotron text-center pullup"> | ||
<a href="#" class="btn btn-default btn-circle2 btn-lg" role="button" id="vimeo"></a> | ||
<a href="#" class="btn btn-default btn-circle2 btn-lg" role="button" id="facebook"></a> | ||
<a href="#" class="btn btn-default btn-circle2 btn-lg" role="button" id="pintrest"></a> | ||
<a href="#" class="btn btn-default btn-circle2 btn-lg" role="button" id="twitter"></a> | ||
<a href="#" class="btn btn-default btn-circle2 btn-lg" role="button" id="instagram"></a> | ||
</div> | ||
|
||
</div> | ||
{% endblock %} |