Big Koha submit button


/ Published in: CSS
Save to your folder(s)

Another demo for the Koha OPAC


Copy this code and paste it in your HTML
  1. #searchsubmit {
  2.  
  3. background-color: #eeeeee;
  4. background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #eeeeee), color-stop(100%, #cccccc));
  5. background-image: -webkit-linear-gradient(top, #eeeeee, #cccccc);
  6. background-image: -moz-linear-gradient(top, #eeeeee, #cccccc);
  7. background-image: -ms-linear-gradient(top, #eeeeee, #cccccc);
  8. background-image: -o-linear-gradient(top, #eeeeee, #cccccc);
  9. background-image: linear-gradient(top, #eeeeee, #cccccc);
  10. border: 1px solid #ccc;
  11. border-bottom: 1px solid #bbb;
  12. -webkit-border-radius: 3px;
  13. -moz-border-radius: 3px;
  14. border-radius: 3px;
  15. color: #444;
  16. font: bold 0.8em "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", Geneva, Verdana, sans-serif;
  17. line-height: 1;
  18. padding: 8px 0;
  19. text-align: center;
  20. text-shadow: 0 1px 0 #eee;
  21. width: 130px; }
  22.  
  23. #transl1 {
  24. padding: 4px 0px;
  25. margin: 0 0.5em;
  26. }
  27.  
  28.  
  29. #masthead_search {
  30. font-size: 1.2em;
  31. padding: 6px;
  32.  
  33. }

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.