Skip to content
This repository has been archived by the owner on Aug 15, 2018. It is now read-only.

Removing the icon from the top of the manifesto #1

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file removed source/assets/images/icons/big_gear.png
Binary file not shown.
Binary file removed source/assets/images/icons/head.png
Binary file not shown.
Binary file removed source/assets/images/icons/small_gear.png
Binary file not shown.
49 changes: 0 additions & 49 deletions source/assets/stylesheets/_animation.scss
Original file line number Diff line number Diff line change
Expand Up @@ -32,52 +32,3 @@
0% { transform: rotate(0deg); }
100% { transform: rotate(-360deg); }
}


.cssanimations {
.small-gear,
.big-gear {
-webkit-animation-iteration-count: infinite;
-moz-animation-iteration-count: infinite;
-o-animation-iteration-count: infinite;
animation-iteration-count: infinite;

-webkit-animation-fill-mode: both;
-moz-animation-fill-mode: both;
-o-animation-fill-mode: both;
animation-fill-mode: both;

-webkit-transform-origin: center center;
-moz-transform-origin: center center;
-o-transform-origin: center center;
transform-origin: center center;

-webkit-animation-timing-function: linear;
-moz-animation-timing-function: linear;
-o-animation-timing-function: linear;
animation-timing-function: linear;
}

.small-gear {
-webkit-animation-duration: 6.656s;
-moz-animation-duration: 6.656s;
-o-animation-duration: 6.656s;
animation-duration: 6.656s;

-webkit-animation-name: spin;
-moz-animation-name: spin;
-o-animation-name: spin;
animation-name: spin;
}
.big-gear {
-webkit-animation-duration: 10s;
-moz-animation-duration: 10s;
-o-animation-duration: 10s;
animation-duration: 10s;
-webkit-animation-name: spin-reverse;
-moz-animation-name: spin-reverse;
-o-animation-name: spin-reverse;
animation-name: spin-reverse;
}

}
46 changes: 0 additions & 46 deletions source/assets/stylesheets/application.css.scss
Original file line number Diff line number Diff line change
Expand Up @@ -77,46 +77,12 @@ body {

// Set sprite and mixin for images
$icons-layout: smart;
$icons: sprite-map("icons/*.png");

@mixin icon($name) {
@include sprite-dimensions($icons,$name);
@include sprite-background-position($icons,$name);
}



// Red icon
.head, .big-gear, .small-gear {
display: block;
background-color: transparent;
background-image: $icons;
background-repeat: no-repeat;
position: absolute;
}
.head {
@include icon('head');
position: relative;
margin: 0 auto;
}
.small-gear {
@include icon('small_gear');
top: 41px;
left: 77px;
}
.big-gear {
@include icon('big_gear');
top: 57px;
left: 55px;
}








// Base design styles
hr {
width: 100px;
Expand Down Expand Up @@ -306,15 +272,3 @@ nav {
}

}












3 changes: 0 additions & 3 deletions source/index.html.haml
Original file line number Diff line number Diff line change
@@ -1,9 +1,6 @@
= content_for :content do

%header
.head
.big-gear
.small-gear
%h1 Manifiesto por una mejor industria TI
%hr
%p Santiago 1 de mayo de 2013
Expand Down