main.css 447 B

123456789101112131415161718192021222324252627
  1. input:focus {
  2. outline: 0 none;
  3. }
  4. textarea:focus {
  5. outline: 0 none;
  6. }
  7. .Button:focus {
  8. outline: 0 none;
  9. }
  10. .Header {
  11. background-color: white;
  12. background-image: none;
  13. border: none;
  14. text-shadow: none;
  15. border-bottom: white solid 3px;
  16. font-weight: bold;
  17. position: fixed;
  18. width: 100%;
  19. height: 62px;
  20. top: 0;
  21. left: 0;
  22. z-index: 100;
  23. }
  24. *{-webkit-tap-highlight-color: rgba(0,0,0,0); }