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
.rotulo { | |
background: #000; | |
height: 80px; | |
position: relative; | |
border:1px solid grey; | |
color: white; | |
} | |
.rotulo span { | |
font-family: Arial, sans-serif; | |
font-size:50px; |
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
/* Rotating Words with CSS Animations */ | |
/* Codrops: http://goo.gl/utC04 */ | |
@font-face { | |
font-family: 'Open Sans Condensed'; | |
font-style: normal; | |
font-weight: 700; | |
src: local('Open Sans Condensed Bold'), local('OpenSans-CondensedBold'), url('http://themes.googleusercontent.com/static/fonts/opensanscondensed/v6/gk5FxslNkTTHtojXrkp-xONSK5BxN3NFS4EJkViHIqo.woff') format('woff'); | |
} | |
.rw-wrapper{ |
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
/* Presentando al equipo con CSS */ | |
.presentar a, .presentar img, .presentar a span { | |
border:0; | |
padding:0; | |
margin:0; | |
} | |
.presentar a { | |
position: relative; | |
display: block; |
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
/* Semáforo CSS */ | |
ul.semaforo { | |
position: relative; | |
width: 60px; | |
margin: 40px auto; | |
padding: 0; | |
list-style-type: none; | |
} | |
ul.semaforo li { |
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
/* Semáforo realista CSS */ | |
ul.semaforo { | |
float:left; | |
position: relative; | |
width: 100px; | |
margin: 0 50px; | |
padding: 15px; | |
list-style-type: none; |
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
/* Otro semáforo CSS */ | |
.semaforo, | |
.semaforo:before, | |
.semaforo:after { | |
position: relative; | |
width: 100px; | |
height: 100px; | |
border-radius: 50%; | |
background: lightgrey; |
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
/* Menú de círculos rotando CSS */ | |
ul.circulos { | |
width: 100%; | |
margin: 20px auto; | |
text-align: center; | |
list-style-type: none; | |
font: bold 14px arial; | |
text-transform: uppercase; |
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
/* Efecto hoja con esquina plegada */ | |
body { | |
padding: 20px; | |
background: #cccccc; | |
} | |
h1 { | |
text-align: center; | |
} | |
.hoja { |
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
/* Menú de círculos expandible */ | |
ul.circulos { | |
position: relative; | |
width: 100%; | |
height: 120px; | |
margin: 20px auto; | |
text-align: center; | |
list-style-type: none; |
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
/* Visor CSS con miniaturas */ | |
.contenedorvisor { | |
position: relative; | |
width: 800px; | |
height: 700px; | |
margin: 0 auto; | |
text-align:center; |
OlderNewer