Pues hala... Aquí tienes unos cuantos estilos que puedes añadir a tu CSS para luego modificar a tu antojo colores y formas. Puedes usarlos para cualquier tipo de enlace de texto y de esta forma convertirlo en un boton.
Algunos son un poco raros pero dicen que para gustos las webs. Bueno son los colores, pero seguro que la expresión también cuadra en este caso.
Para no buscar códigos hexadecimales usé losnombres html de los colores.
Con fondo distinto y cambio de color de fuente con hover
text-align: center;
text-decoration: none;
padding: 3px;
color: white;
background: burlywood;
}
.jump-link a:hover {
color: black;
}
Esquinas redondeadas y cambio de fondo, color fuente y estilo con hover
text-align: center;
text-decoration: none;
padding: 5px;
color: olive;
background: khaki;
-webkit-border-radius: 5px;-moz-border-radius: 5px;border-radius: 5px;
}
.jump-link a:hover {
font-style: italic;
color: darkgreen;
background: yellowgreen;
}
Esquinas redondeadas, borde y cambio de color y fuente con hover
text-align: center;
text-decoration: none;
padding: 3px;
color: white;
background: blue;
border: 2px solid darkblue;
-webkit-border-radius: 5px;-moz-border-radius: 5px;border-radius: 5px;
}
.jump-link a:hover {
color: blue;
background: lightcyan;
border-color: blue;
}
Caja redondeada con borde que ocupa todo el ancho y con cambio de color de fondo
Leer más
display:block;
text-align: right;
text-decoration: none;
padding: 3px;
color: white;
background: darkgoldenrod;
border: 2px solid maroon;
-webkit-border-radius: 5px;-moz-border-radius: 5px;border-radius: 5px;
}
.jump-link a:hover {
background: goldenrod;
}
Caja con borde y cambio de color de fondo, fuente y ancho mediante transición
Leer más
display:block;
width:90px;
text-align: right;
text-decoration: none;
padding: 3px;
color: whitesmoke;
background: black;
border: 2px solid darkblue;
-moz-transition: all 2s ease-in-out; -webkit-transition: all 2s ease-in-out; transition: all 2s ease-in-out;
}
.jump-link a:hover {
width:300px;
color: black;
background: whitesmoke;
-moz-transition: all 2s ease-in-out; -webkit-transition: all 2s ease-in-out; transition: all 2s ease-in-out;
}
Caja con cambio de color de fondo que se oscurece y llega a ocupar casi todo el ancho mediante transición
Leer más
display:block;
width: 10%;
min-width:80px;
text-align: right;
text-decoration: none;
padding: 3px;
color: black;
background: yellow;
-webkit-border-radius: 5px;-moz-border-radius: 5px;border-radius: 5px;
-moz-transition: all 1s; -webkit-transition: all 1s; transition: all 1s;
}
.jump-link a:hover {
width: 94%;
background: gold;
-moz-transition: all 2s ease-in-out; -webkit-transition: all 2s ease-in-out; transition: all 2s ease-in-out;
}
Caja con forma de flecha con cambio de color al hacer hover
position:relative;
height: 24px;
line-height: 24px;
text-align: left;
text-decoration: none;
padding: 4px;
color: white;
background: DarkSlateBlue;
}
.jump-link a:hover {
background: slateblue;
}
.jump-link a:after {
border-color: transparent transparent transparent DarkSlateBlue ;
border-style: solid;
border-width: 13px 13px 13px 13px;
content: "";
float: right;
right:-26px;
height: 0;
position: absolute;
top: 0;
width: 0;
}
.jump-link a:hover:after {
border-color: transparent transparent transparent slateblue;
}
Con forma de etiqueta y cambio suave de color con el hover
position:relative;
height: 24px;
line-height: 24px;
text-align: left;
text-decoration: none;
padding: 4px 6px 4px 14px;
color: darkgoldenrod;
background: palegoldenrod;
}
.jump-link a:hover {
background: khaki;
}
.jump-link a:after {
background-color: white;
content: "";
float: right;
left: 0;
position: absolute;
top: 10px;
height: 6px;
width: 6px;
-moz-border-radius: 3px;
-webkit-border-radius: 3px;
border-radius: 3px;
}
.jump-link a:before {
border-color: transparent palegoldenrod transparent transparent ;
border-style: solid;
border-width: 13px 13px 13px 13px;
content: "";
float: left;
left:-26px;
height: 0;
position: absolute;
top: 0;
width: 0;
}
.jump-link a:hover:before {
border-color: transparent khaki transparent transparent;
}
Botón circular que gira al hacer hover
display:block;
color:#fff;
font-size:15px;
line-height:80px;
text-align:center;
text-decoration:none;
width:80px;
height:80px;
background: orange;
padding:0;
margin:0;
border: 2px solid orange;
-webkit-border-radius: 40px;-moz-border-radius: 40px;border-radius: 40px;
}
.jump-link a:hover {
-moz-transform: rotate(360deg);
-webkit-transform: rotate(360deg);
transform: rotate(360deg);
-moz-transition: all 1s; -webkit-transition: all 1s; transition: all 1s;
}
Botón con gradientes y relieve suave
-webkit-box-shadow: 0 1px 1px #555;-moz-box-shadow: 0 1px 1px #555;box-shadow: 0 1px 1px #555;
border-top:1px solid #ef9900;
-moz-border-radius:2px;
-web-kitborder-radius:2px;
border-radius:2px;
background: #f9a817; background: -moz-linear-gradient(center top , #ffbb41, #f9a817) repeat scroll 0 0 transparent;
background: -webkit-gradient(linear, center top, center bottom, color-stop(0%,#ffbb41), color-stop(100%,#f9a817)) repeat scroll 0 0 transparent;
color: #000;
display: block;
font-weight: bold;
padding: 8px 10px 9px;
position: relative;
text-decoration: none;
font-size:15px;
text-shadow:1px 0 1px #FF0;
width:110px;
text-align:center;
}
.jump-link a:hover {
background: #ffbd46;
background: -moz-linear-gradient(center top , #ffbd46, #ffb229) repeat scroll 0 0 transparent;
background: -webkit-gradient(linear, center top, center bottom, color-stop(0%,#ffbd46), color-stop(100%,#ffb229)) repeat scroll 0 0 transparent;
color: #555;
}
Botón realista con efecto pulsación
text-decoration: none;
font-weight: bold;
text-shadow: rgba(255, 255, 255, .5) 0 1px 0;
padding: 4px;
margin: 4px;
position: relative;
-webkit-border-radius: 8px;
-moz-border-radius: 8px;
border-radius: 8px;
border-top: 1px solid rgba(255, 255, 255, 0.8);
border-bottom: 1px solid rgba(0, 0, 0, 0.1);
background-image: -webkit-gradient(radial, 50% 0, 100, 50% 0, 0, from( rgba(255, 255, 255, 0) ), to( rgba(255, 255, 255, 0.7) )), url(noise.png);
background-image: -moz-radial-gradient(top, ellipse cover, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0) 100%);
background-image: gradient(radial, 50% 0, 100, 50% 0, 0, from( rgba(255, 255, 255, 0) ), to( rgba(255, 255, 255, 0.7) ));
-webkit-transition: background .2s ease-in-out;
-moz-transition: background .2s ease-in-out;
transition: background .2s ease-in-out;
color: #666 !important;
background-color: #BFBFBF;
-webkit-box-shadow: inset rgba(255,254,255,0.6) 0 0.3em .3em, inset rgba(0,0,0,0.15) 0 -0.1em .3em, /* sombra inner */ hsl(0, 0%, 60%) 0 .1em 3px, hsl(0, 0%, 45%) 0 .3em 1px, /* color borde */ rgba(0,0,0,0.2) 0 .5em 5px;
-moz-box-shadow: inset rgba(255,254,255,0.6) 0 0.3em .3em, inset rgba(0,0,0,0.15) 0 -0.1em .3em, /* sombra inner */ hsl(0, 0%, 60%) 0 .1em 3px, hsl(0, 0%, 45%) 0 .3em 1px, /* color borde */ rgba(0,0,0,0.2) 0 .5em 5px;
box-shadow: inset rgba(255,254,255,0.6) 0 0.3em .3em, inset rgba(0,0,0,0.15) 0 -0.1em .3em, /* sombra inner */ hsl(0, 0%, 60%) 0 .1em 3px, hsl(0, 0%, 45%) 0 .3em 1px, /* color borde */ rgba(0,0,0,0.2) 0 .5em 5px;
}
.jump-link a:hover {
background-color: hsl(0, 0%, 83%);
}
.jump-link a:active {
background-image: -webkit-gradient(radial, 50% 0, 100, 50% 0, 0, from( rgba(255,255,255,0) ), to( rgba(255,255,255,0) ));
background-image: -moz-gradient(radial, 50% 0, 100, 50% 0, 0, from( rgba(255,255,255,0) ), to( rgba(255,255,255,0) ));
background-image: gradient(radial, 50% 0, 100, 50% 0, 0, from( rgba(255,255,255,0) ), to( rgba(255,255,255,0) ));
-webkit-box-shadow: inset rgba(255,255,255,0.6) 0 0.3em .3em, inset rgba(0,0,0,0.2) 0 -0.1em .3em, /* sombra inner */
rgba(0,0,0,0.4) 0 .1em 1px, /* borde */
rgba(0,0,0,0.2) 0 .2em 6px; /* sombra */
-moz-box-shadow: inset rgba(255,255,255,0.6) 0 0.3em .3em, inset rgba(0,0,0,0.2) 0 -0.1em .3em, /* sombra inner */
rgba(0,0,0,0.4) 0 .1em 1px, /* borde */
rgba(0,0,0,0.2) 0 .2em 6px; /* sombra */
box-shadow: inset rgba(255,255,255,0.6) 0 0.3em .3em, inset rgba(0,0,0,0.2) 0 -0.1em .3em, /* sombra inner */
rgba(0,0,0,0.4) 0 .1em 1px, /* borde */
rgba(0,0,0,0.2) 0 .2em 6px; /* sombra */
}
CAR INSURANCE QUOTES MN domain yahoo Royalty Free Images Stock Psychic for free Social media management auto accident lawyer san francisco Italian cooking school email bulk service Mesothelioma Law Firm Online Colleges Social media campaigns Insurance Webex Costs Live casino Hire php programmers BEST CRIMINAL LAWYER IN ARIZONA New social media platforms Seo companies structured settlement sell event management security att call conference mesothelioma settlement amounts Casino reviews WordPress hosting Social media platforms for business car accident lawyers los angeles Mobile casino WordPress themes for designers Online casino Casino Custom Christmas cards Best Seo company Make money online Australia Social media platforms structured annuity settlement mesothelioma compensation Car Insurance Quotes Utah DALLAS MESOTHELIOMA ATTORNEYS how to donate a car in california Bankruptcy lawyer Auto Accident Attorney How to Donate A Car in California Psd to html Best social media platforms injury lawyer houston tx Donate Your Car Sacramento Injury Lawyers Hire php developer Personal Injury Lawyers motorcycle accident attorney chicago harddrive data recovery services Donating Used Cars to Charity PSYCHIC FOR FREE Criminal defense lawyer Donate Cars Illinois Car insurance quotes Utah ASBESTOS LAWYERS Car Insurance Companies Futuristic architecture cash out structured settlement DUI lawyer Hire php developers DONATE CAR FOR TAX CREDIT Car insurance in South Dakota Php programmers EMAIL BULK SERVICE virtual data rooms Dwi lawyer PAPERPORT PROMOTIONAL CODE SELL ANNUITY PAYMENT Insurance Companies motorcycle accident lawyer california LIFE INSURANCE CO LINCOLN Mortgage Adviser benchmark lending Annuity Settlements MOTOR REPLACEMENTS Criminal lawyer federal criminal defense attorney Service business software Low Credit Line Credit Cards Best social media platforms for business Dayton Freight Lines Cheap auto insurance in VA Php programmers for hire CAR INSURANCE IN SOUTH DAKOTA student loan consolidation program Adobe illustrator classes Dallas Mesothelioma Attorneys tennessee mesothelioma lawyer Better Conference Calls DAYTON FREIGHT LINES VIRTUAL DATA ROOMS CHEAP CAR INSURANCE IN VIRGINIA ONLINE MOTOR INSURANCE QUOTES Social media tools CAR INSURANCE QUOTES UTAH Cheap domain registration hosting st louis mesothelioma attorney Computer science classes online mesothelioma lawyer asbestos cancer lawsuit structured settlement broker mesothelioma drug lawyers accidents Auto Mobile Shipping Quote Motor Replacements structured settlement quote dui lawyer scottsdale structure settlements World Trade Center Footage Business finance group Tech school Custom WordPress theme designer Seo services Motor replacements dallas mesothelioma lawyer injury lawyers west palm beach auto accident attorney Business management software Learning adobe illustrator ANNUITY SETTLEMENT peritoneal mesothelioma Seo company compare life assurance personal injury attorney ocala fl Car Insurance Quotes Colorado mesothelioma claim domain name yahoo Online Christmas cards Online Stock Trading Donate your car Sacramento PHD IN COUNSELING EDUCATION Photo Christmas cards DONATE YOUR CAR FOR KIDS CAR DONATE donating used cars to charity Psd to WordPress Social media examiner CAR INSURANCE QUOTES PA low credit line credit cards Html email WORLD TRADE CENTER FOOTAGE mesothelioma law firm car accident lawyer san bernardino Met Auto california mesothelioma attorney Christmas cards cheap domain registration hosting Proud Italian cook Donate Car To Charity CALIFORNIA google affiliate WordPress theme designers Life Insurance Co Lincoln Donate Car to Charity California Neuson Social media strategies DONATE OLD CARS TO CHARITY Cheap Car Insurance in Virginia integrated ehr accident attorney orange county broward county dui lawyer bus accident attorneys Donate Car for Tax Credit Donate Cars in MA donate your car for money Sell Annuity Payment donate old cars to charity Criminal lawyer Miami alcohol rehab center in florida CHEAP CAR INSURANCE FOR LADIES Donate Your Car for Kids Asbestos Lawyers Paperport promotional code AUTO ACCIDENT ATTORNEY Structures Annuity Settlement mortgage adviser MET AUTO HOW TO DONATE A CAR IN CALIFORNIA auto insurance cost by state Nunavut Culture selling annuity los angeles motorcycle accident lawyer Donate your Car for Money mesothelioma selling my structured settlement Hard drive Data Recovery Services DONATE CARS ILLINOIS mesothelioma settlements amounts motorcycle accident lawyer san diego Donate a Car in Maryland DONATING USED CARS TO CHARITY massage school dallas texas Cheap Domain Registration Hosting FORENSICS ONLINE COURSE Donating a Car in Maryland business voip solutions Criminal Defense Attorneys Florida wisconsin mesothelioma attorney World trade center footage Best Criminal Lawyers in Arizona holland michigan college Car insurance quotes pa Holland Michigan College Online Motor Insurance Quotes Criminal defense attorneys Florida CAR INSURANCE QUOTES COLORADO Paperport Promotional Code Online Classes Auto Mobile Insurance Quote accident attorney san bernardino