global.css 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. @font-face {
  2. font-family: ringbearer;
  3. src: url('../fonts/ringbearer.ttf');
  4. }
  5. /* Logger font, found on https://fonts.google.com/specimen/Inconsolata?selection.family=Inconsolata */
  6. @font-face {
  7. font-family: inconsolata;
  8. src: url('../fonts/Inconsolata-Bold.ttf');
  9. }
  10. html , body{
  11. background: url('../images/BrownWithWignette.jpg') no-repeat center center fixed;
  12. background-size: cover;
  13. }
  14. a, a:hover
  15. {
  16. color: black;
  17. text-decoration:none;
  18. cursor:pointer;
  19. }
  20. pre {border: 0; background-color: transparent;}
  21. input{
  22. width: 100%;
  23. padding-left: 3px;
  24. border: none;
  25. border-bottom: 3px solid #ECECEC;
  26. font-size: 20px;
  27. outline:none;
  28. }
  29. p, img, pre, span, label, h1 ,h2 ,h3 {
  30. -webkit-touch-callout: none;
  31. -webkit-user-select: none;
  32. -khtml-user-select: none;
  33. -moz-user-select: none;
  34. -ms-user-select: none;
  35. user-select: none;
  36. -webkit-user-drag: none;
  37. -khtml-user-drag: none;
  38. -moz-user-drag: none;
  39. -o-user-drag: none;
  40. user-drag: none;
  41. }