Tarjeta de Navidad en CSS – programmers – Negocios – Abogado

Esta entrada en realidad tiene dos motivos, la primera es para desearles a todos y cada uno de los lectores de este blog, una feliz Navidad, pero más aun, que estas fechas sean un pretexto para reconciliarnos con quienes hemos discutido, disfrutar a nuestros seres queridos, y valorar todo aquello que tenemos para así compartir con los demás un poco de lo mucho que la vida nos da.


¡Feliz Navidad!

les desea Ciudad Blogger


El otro motivo es para compartirles estatarjeta de navidad hecha sólo con CSS, las únicas imágenes que hay en ella son la de los copos de nieve.
Es un pequeño experimento que hice basado con la nieve deJoshua Johnson y las esferas deCatalin Rosu, yo prácticamente sólo le he añadido algunos efectos de hover y los bordes.

Como está hecho con CSS sólo se verá bien en navegadores modernos, así que si lo ves medio abstracto ya sabes porqué razón se ve así.
El código para copiar y pegar en una entrada es este:
link href='http://fonts.googleapis.com/css?family=Clicker+Script' rel='stylesheet' type='text/css'/
style
@keyframes xmas-snow {
0% {background-position: 0px 0px, 0px 0px, 0px 0px;}
100% {background-position: 500px 1000px, 400px 400px, 300px 300px;}
}
@-moz-keyframes xmas-snow {
0% {background-position: 0px 0px, 0px 0px, 0px 0px;}
100% {background-position: 500px 1000px, 400px 400px, 300px 300px;}
}
@-webkit-keyframes xmas-snow {
0% {background-position: 0px 0px, 0px 0px, 0px 0px;}
100% {background-position: 500px 1000px, 400px 400px, 300px 300px;}
}
@-ms-keyframes xmas-snow {
0% {background-position: 0px 0px, 0px 0px, 0px 0px;}
100% {background-position: 500px 1000px, 400px 400px, 300px 300px;}
}
#xmas-contenedor {
height: 380px;
width:580px;
background-color: #6b92b9;
background-image: url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEixoJbutM_1XARxqXMed8BD8F0md5YEWR4dstNA3TYQ_toaWQ_-bQZBssacXuSPNwRo0oMDGlG065SbkC4U7TbsvK9EwJkiE1gxfmsyY6JwWs2YFPcBifAroCb0D_FdqdKNtNUtLS7_7-M/s500/snow.png), url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiphuxjjXjtm5EXhoKsoCvwi82gkIBYiuluT-Lvy505t_GMfstTaqLTHhGDSJGhwmWQx3LcbXNimVD3syap7UQFHxPfvX8JU9mfA3aXJPhQXMjgjBnhV7OxJEfdGABzOsnZWhOR_qnNCmQ/s400/snow3.png), url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjaE_M3sqNadHGkIFilB73hCUVYDo1DZMpLSMaaoo8A0vm4kF5zuI06RQhWbYOTLR61qHlPA1w-Z0jVJM2mDmJFj0HPzy4A6IgoqqgoCYsDPHeCN5jJga3UKBYvaPt19lDQE-nK4PmSsYM/s300/snow2.png);
-webkit-animation: xmas-snow 20s linear infinite;
-moz-animation: xmas-snow 20s linear infinite;
-ms-animation: xmas-snow 20s linear infinite;
animation: xmas-snow 20s linear infinite;
position:relative;
border:5px solid #98BF21;
z-index:1;
}
#xmas-contenedor:before {
content: "";
position: absolute;
z-index: -1;
top: 0;
left: 0;
right: 0;
bottom:0;
border: 5px solid #fff;
}
#xmas-contenedor:after {
content:"";
position:absolute;
z-index:-1;
top:5px;
left:5px;
right:5px;
bottom:5px;
border: 6px dotted #98BF21;
}
#xmas-contenedor h4, #xmas-contenedor p {
font-family: 'Clicker Script', cursive;
font-size:60px;
font-weight:bold;
text-align:center;
text-shadow: 2px 2px 4px #000000;
color:#fff;
margin-top:200px;
margin-bottom:0px;
-moz-transition: all 1s;
-webkit-transition: all 1s;
-o-transition: all 1s;
}
#xmas-contenedor p {
font-size:25px;
line-height:0;
margin-top:50px;
}
html/**/body #xmas-contenedor h4, x:-moz-any-link, x:default {
font-weight:normal;
}
html/**/body #xmas-contenedor p, x:-moz-any-link, x:default {
font-weight:normal;
}
#xmas-contenedor h4:hover {
font-size:75px;
-moz-transition: all 1s;
-webkit-transition: all 1s;
-o-transition: all 1s;
}
#bauble-container {
list-style: none;
width: 568px;
margin: 40px auto;
padding: 0;
}
#bauble-container li {
margin: 0 20px;
float: left;
}
#bauble-container li:before {
content: "";
background: #dadada;
background: -moz-linear-gradient(bottom, #9c9c9c, rgba(255,255,255,0) );
background: -webkit-gradient(linear, left bottom, right top, from(#9c9c9c), color-stop(100%, rgba(255,255,255,0)));
height: 50px;
width: 2px;
display: block;
margin: 0 auto;
}
#bauble-container li:nth-child(odd) {
-moz-transform: rotate(-5deg);
-webkit-transform: rotate(-5deg);
-o-transform: rotate(-5deg);
-ms-transform: rotate(-5deg);
}
#bauble-container li:nth-child(odd):hover {
-moz-transform: rotate(-20deg);
-webkit-transform: rotate(-20deg);
-o-transform: rotate(-20deg);
-ms-transform: rotate(-20deg);
}
#bauble-container li:nth-child(even) {
-moz-transform: rotate(5deg);
-webkit-transform: rotate(5deg);
-o-transform: rotate(5deg);
-ms-transform: rotate(5deg);
}
#bauble-container li:nth-child(even):hover {
-moz-transform: rotate(15deg);
-webkit-transform: rotate(15deg);
-o-transform: rotate(15deg);
-ms-transform: rotate(15deg);
}
.bauble {
border-radius: 100px;
box-shadow: 0 0 5px #777777;
border: 1px solid rgba(0,0,0,0.3);
position: relative;
height: 100px;
width: 100px;
}
.bauble:before {
content: "";
background: #fff;
background: -moz-linear-gradient(left, #fff, #9c9c9c, #fff, #9c9c9c );
background: -webkit-gradient(linear, left center, right center, from(#fff), color-stop(25%, #9c9c9c), color-stop(50%, #fff), color-stop(75%, #9c9c9c));
border-radius: 2px;
box-shadow: 0 1px 0 rgba(0,0,0,0.2), 0 -1px 0 rgba(255,255,255,0.3) inset;
border: 1px solid #dadada ;
height: 10px;
width: 20px;
position: absolute;
left: 50%;
top: -12px;
margin-left: -10px;
}
.bauble:after {
content: "";
border-radius: 100px;
background: #fff;
background: -moz-linear-gradient(bottom, #fff, rgba(255,255,255,0.1) );
background: -webkit-gradient(linear, left bottom, right top, from(#fff), color-stop(100%, rgba(255,255,255,0.1)));
position: absolute;
top: 0;
left: 50%;
margin-left: -40px;
opacity: 0.15;
height: 80px;
width: 80px;
}
.red-bauble {
background: #c8171f;
background: -moz-radial-gradient(center 45deg,circle cover, #f9d0be, #c8171f);
background: -webkit-gradient(radial, 40% 40%, 0, 40% 40%, 50, from(#f9d0be), to(#c8171f));
}
.blue-bauble {
background: #00a1ee;
background: -moz-radial-gradient(center 45deg,circle cover, #cde6f9, #00a1ee);
background: -webkit-gradient(radial, 40% 40%, 0, 40% 40%, 50, from(#cde6f9), to(#00a1ee));
}
.yellow-bauble {
background: #fcb83d;
background: -moz-radial-gradient(center 45deg,circle cover, #fcf3a6, #fcb83d);
background: -webkit-gradient(radial, 40% 40%, 0, 40% 40%, 50, from(#fcf3a6), to(#fcb83d));
}
.green-bauble {
background: #4d8d00;
background: -moz-radial-gradient(center 45deg,circle cover, #d1e5b2, #4d8d00);
background: -webkit-gradient(radial, 40% 40%, 0, 40% 40%, 50, from(#d1e5b2), to(#4d8d00));
}
/style

div id="xmas-contenedor"
ul id="bauble-container"
li
div class="bauble red-bauble"
/div
/li
li
div class="bauble blue-bauble"
/div
/li
li
div class="bauble yellow-bauble"
/div
/li
li
div class="bauble green-bauble"
/div
/li
/ul
h4¡Feliz Navidad!/h4
ples desea Ciudad Blogger/p
/div

Lo dicho,¡feliz Navidad a todos!

Donate Car To Charity CALIFORNIA DONATE CAR FOR TAX CREDITDONATE CARS IN MADONATE YOUR CAR SACRAMENTOHOW TO DONATE A CAR IN CALIFORNIA DONATE YOUR CAR FOR KIDS,CAR INSURANCE QUOTES COLORADO ,NUNAVUT CULTURE,DAYTON FREIGHT LINESHARDDRIVE DATA RECOVERY SERVICES,DONATE A CAR IN MARYLAND,MOTOR REPLACEMENTS,CHEAP DOMAIN REGISTRATION HOSTING,DONATING A CAR IN MARYLANDNos ofrece Mundial Football eloan com, FIFA World Cupuna gran variedad para contratar mesothelioma info y obtener un equity line of credit y una buena estructura de negocio SEO consolidate loans y visitar su casa matriz Mesothelioma law firm,home equity loans domain name searchSelling annuity payments for cash,Sell my structured settlement,Sell structured settlement,Structured settlement,Structured settlement companies,Sell my annuity payments lump sum,Car accident lawyer Denver,Accident injury attorneys,Sell my annuity

MESOTHELIOMA LAW FIRMDONATE CAR TO CHARITY CALIFORNIAHARDDRIVE DATA RECOVERY SERVICESDONATE A CAR IN MARYLAND DONATING A CAR IN MARYLAND,DONATE CARS ILLINOIS,CRIMINAL DEFENSE ATTORNEYS FLORIDA ,BEST CRIMINAL LAWYER IN ARIZONASTRUCTURED ANNUITY SETTLEMENT,ASBESTOS LAWYERS,NUNAVUT CULTURE,DAYTON FREIGHT LINES ,Bextra Bankruptcy Dental Plan Private JetMundial Football Perros,FIFA World Cup Peinados caninos,Veterinarios caninos,MESOTHELIOMA LAW FIRM,MESOTHELIOMA LAW FIRM,DONATE CAR TO CHARITY CALIFORNIA ,DONATE CAR FOR TAX CREDIT,DONATE CARS IN MA,DONATE YOUR CAR SACRAMENTO,HOW TO DONATE A CAR IN CALIFORNIA,SELL ANNUITY PAYMENT,DONATE YOUR CAR FOR KIDS,ASBESTOS LAWYERS,DONATE YOUR CAR FOR KIDS ,Selling annuity payments for cashSelling annuity payments for cash,Sell my structured settlement,Sell structured settlement,Structured settlement,Structured settlement companies,Sell my annuity payments lump sum,Car accident lawyer Denver,Accident injury attorneys,Sell my annuity

motor insurance quotes Email bulk service Life Insurance Co Lincoln Christmas cards Italian cooking school Auto Mobile Insurance Quote Dedicated Hosting Dedicated Server Hosting Learning adobe illustrator mesothelioma litigation donate old cars to charity Online Motor Insurance Quotes Seo company Sell Annuity Payment Online casino Social media platforms for business sell your structured settlement payments NEUSON Personal Injury Lawyers Casino reviews asbestos lawyers Car Insurance Companies philadelphia mesothelioma lawyer Proud Italian cook alcohol rehab center in florida best consolidation loan student Casino Make money online Australia Mortgage adviser See more at http//wwwginfostopnet/ structured settlement sell Hire php developer Donating a Car in Maryland cell cycle regulation ppt Mobile casino supportpeachtreecom compare life assurance Dwi lawyer FORENSICS ONLINE COURSE Hire php developers personal injury lawyer personal accident attorney baltimore mesothelioma attorneys BETTER CONFERENCING CALLS mesothelioma lawyer chicago WordPress themes for designers Asbestos Lung Cancer Business VOIP Solutions Computer science classes online Psd to WordPress Live casino DONATING USED CARS TO CHARITY lawyers accidents DUI lawyer Online College Course Tech school Hire php programmers personal injury attorney ocala fl Online Christmas cards DONATE CAR FOR TAX CREDIT CAR DONATE Massage School Dallas Texas Social media campaigns Service business software Criminal lawyer VIRTUAL DATA ROOMS How to Donate A Car in California Best social media platforms for business mesothelioma charities Criminal defense lawyer Php programmers for hire car insurance quotes colorado online criminal justice degree Online colledges Neuson Asbestos Lawyers HOW TO DONATE A CAR IN CALIFORNIA Bankruptcy lawyer Cheap domain registration hosting business voip solutions buyers of structured settlements Dallas Mesothelioma Attorneys personal injury attorney torrance Php programmers Seo companies motorcycle accident attorney chicago Motor Replacements DONATE YOUR CAR FOR KIDS car accident lawyers los angeles Car Insurance in South Dakota Custom Christmas cards CAR INSURANCE QUOTES COLORADO accident attorney in los angeles mesothelioma attorney california event management security New social media platforms World Trade Center Footage asbestos exposure lawyers Seo services Business finance group Custom WordPress theme designer car accident lawyer san bernardino selling a structured settlement MESOTHELIOMA LAW FIRM mesothelioma information mesothelioma lawsuit Business management software LOW CREDIT LINE CREDIT CARDS Best Seo company structure settlements holland michigan college broward county dui lawyer PAPERPORT PROMOTIONAL CODE structured settlement annuity companies Car insurance quotes Utah best criminal lawyer in arizona

Share: