Skip to content

Commit

Permalink
Themes.
Browse files Browse the repository at this point in the history
  • Loading branch information
pakmanlh committed May 14, 2014
1 parent 7c69c8a commit fe1d372
Show file tree
Hide file tree
Showing 7 changed files with 133 additions and 7 deletions.
Binary file added images/bootstrap-logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/omega-logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/zen-logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/zurb-foundation-logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
75 changes: 69 additions & 6 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -960,16 +960,79 @@ <h2>Sistemas de Grids: Susy</h2>
</slide>


<slide> <!-- THEMES -->
<slide class="drupal-themes"> <!-- THEMES -->
<hgroup>
<h2>Themes Drupal existentes</h2>
</hgroup>
<article>
<ul>
<li>Zen</li>
<li>Omega 4</li>
<li>Bootstrap</li>
<li>Foundation</li>
<ul class="build">
<li><a href="http://dgo.to/zen"><img src="images/zen-logo.png"><span>Zen</span></a></li>
<li><a href="http://dgo.to/omega"><img src="images/omega-logo.png"><span>Omega 4</span></a></li>
<li><a href="http://dgo.to/bootstrap"><img src="images/bootstrap-logo.png"><span>Bootstrap</span></a></li>
<li><a href="http://dgo.to/zurb-foundation"><img src="images/zurb-foundation-logo.png"><span>Foundation</span></a></li>
</ul>
</article>
</slide>

<slide class="theme-zen"> <!-- THEMES -->
<hgroup>
<h2>Zen (<span>116,263 instalaciones</span>)</h2>
</hgroup>
<article>
<ul class="build ">
<li>SASS</li>
<li>Zen Grids</li>
<li>Media queries == mobile first </li>
<li>respond.js per >IE8</li>
<li>Layout Fixed o RWD</li>
<li>SMACS por components</li>
<li>Solución Menú RWD</li>
</ul>
</article>
</slide>

<slide class="theme-omega"> <!-- THEMES -->
<hgroup>
<h2>Omega 4 (<span>71,982 instalaciones</span>)</h2>
</hgroup>
<article>
<ul class="build ">
<li>Susy y Singularitygs</li>
<li>Mediaqueries gestionadas por breakpoint</li>
<li>4 Layouts RWD</li>
<li>Layout off-canvas solución fácil menu RWD</li>
<li>LiveReload, Cleatype, Selectivizr.js, CSS3 Media Queries JS, Respond.js, CSS3 PIE, HTML5 shiv</li>
</ul>
</article>
</slide>

<slide class="theme-bootstrap"> <!-- THEMES -->
<hgroup>
<h2>Bootstrap (<span>22,379 instalaciones</span>)</h2>
</hgroup>
<article>
<ul class="build fade first">
<li>LESS</li>
<li>Adaptación del marcado de Drupal al framework</li>
<li>Para después aplicar un «skin»</li>
<li><a href="https://drupal.org/node/2011034">Módulos complementarios:</a><br>
<ul>
<li>Display Suite, Views, Blocks, Panels, Field Formatters, Images/Slideshows, Menus, Modals, UX, administration </li>
</ul>
</li>
</ul>
</article>
</slide>

<slide class="theme-foundation"> <!-- THEMES -->
<hgroup>
<h2>Foundation (<span>3,227 instalaciones</span>)</h2>
</hgroup>
<article>
<ul class="build fade first">
<li>Adaptación del marcado de Drupal al framework</li>
<li>Para después aplicar un «skin»</li>
<li>Gema zurb-foundation junto con Compass</li>
</ul>
</article>
</slide>
Expand Down
2 changes: 1 addition & 1 deletion theme/css/default.css

Large diffs are not rendered by default.

63 changes: 63 additions & 0 deletions theme/scss/default.scss
Original file line number Diff line number Diff line change
Expand Up @@ -1358,3 +1358,66 @@ $container-width: 1200px;
clear: right;
}
}
.drupal-themes {
li {
width: 50%;
margin: 1em 0;
text-align: center;
float: left;
list-style: none;
&:before {
content: "";
}
img {
height: 5em;
}
span {
display: block;
clear: both;
}
}
}
.theme-foundation,
.theme-bootstrap,
.theme-omega,
.theme-zen {
ul, h2 {
padding: 0.5em 0 0.5em 5em;
span {
font-weight: normal;
}
}
}
.theme-zen {
h2 {
padding: 0.5em 0 0.5em 5em;
}
background: url(../../images/zen-logo.png) no-repeat 2em 2em;
}
.theme-omega {
h2 {
padding: 0.5em 0 0.5em 3em;
}
background: url(../../images/omega-logo.png) no-repeat 2em 2em;
}
.theme-bootstrap {
background: url(../../images/bootstrap-logo.png) no-repeat 2em 2em;
ul {
padding: 0;
}
ul.first {
padding: 0.5em 0 0.5em 8em;
}
}
.theme-foundation {
background: url(../../images/zurb-foundation-logo.png) no-repeat 2em 2em;
}
.theme-foundation,
.theme-bootstrap {
ul {
padding: 0;
}
ul.first {
padding: 0.5em 0 0.5em 8em;
}
}

0 comments on commit fe1d372

Please sign in to comment.