unitistar

Css button

May 16th, 2012
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. style.css
  2.  
  3. .button {
  4.  
  5.     /*обычные свойства*/
  6.     width: 250px;  height: 50px;  color: white; background-color: #99CF00;
  7.     text-align: center;  font-size: 30px;  line-height: 50px;
  8.  
  9.  
  10.     /*градиент*/
  11.     background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#99CF00), to(#6DB700));
  12.     background: -moz-linear-gradient(19% 75% 90deg,#6DB700, #99CF00);
  13.  
  14.     /*границы*/
  15.     border-left: solid 1px #c3f83a;
  16.     border-top: solid 1px #c3f83a;
  17.     border-right: solid 1px #82a528;
  18.     border-bottom: solid 1px #58701b;
  19.     -moz-border-radius: 10px;
  20.     -webkit-border-radius: 10px;
  21.     border-radius: 10px;
  22.     -webkit-gradient(linear, 0% 0%, 0% 100%, from(#99CF00), to(#6DB700))
  23.  
  24. }
  25.  
  26. .button h3 {
  27.     font-size: 20px;
  28.     line-height: 35px;
  29.     font-family: helvetica, sans-serif;
  30. }
  31.  
  32. .button p {
  33.     font-size: 12px;
  34.     line-height: 4px;
  35.     font-family: helvetica, sans-serif;
  36. }
  37.  
  38. a {
  39.     text-decoration: none;
  40.     color: fff;
  41. }
  42.  
  43. .button:hover {
  44.     background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#6DB700), to(#99CF00));
  45.     background: -moz-linear-gradient(19% 75% 90deg,#99CF00, #6DB700);
  46. }
  47.  
  48.  
  49.  
  50.  
  51.  
  52.  
  53. index.html
  54. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
  55. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
  56. <head>
  57.  
  58. <meta http-equiv="X-UA-Compatible" content="IE=edge" />
  59.  
  60. <link rel="shortcut icon" href="/images/favicon.ico" />
  61.  
  62.  
  63. <meta http-equiv="content-type" content="text/html; charset=windows-1251" />
  64.  
  65. <meta name="description" content=" " />
  66.  
  67. <title>Зелёная Кнопка :D</title>
  68.  
  69. <head>
  70.  
  71. <link rel="stylesheet" type="text/css" href="css/style.css" />
  72.  
  73. </head>
  74.  
  75. <body>
  76.  
  77. <div class="button">
  78.     <a href="/registration.htm"><h3>Кнопка</h3></a>
  79. </div>
  80.  
  81. </body>
  82. </html>
Advertisement
Add Comment
Please, Sign In to add comment