lbt.css 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  1. @font-face {
  2. font-family: Noto Sans;
  3. src: url('NotoSans-Regular.ttf');
  4. }
  5. @font-face {
  6. font-family: Noto Sans Linear B;
  7. src: url('NotoSansLinearB-Regular.ttf');
  8. }
  9. body {background: url('bg.jpg') no-repeat;}
  10. .lbt.overlay {
  11. position: absolute; /* important */
  12. top: 0px; /* start from top */
  13. left: 0px; /* start from left */
  14. height: 100%; /* cover the whole page */
  15. width: 100%; /* cover the whole page */
  16. display: none; /* don't show it '*/
  17. /* styling bellow */
  18. background-color: black;
  19. z-index: 1000;
  20. }
  21. .lbt.window {
  22. margin-top: 3em;
  23. display: none; /* don't show it */
  24. /* styling bellow */
  25. color: #fff;
  26. top: 0;
  27. border: 1px solid gray;
  28. background: #fff;
  29. color: black;
  30. z-index: 1001;
  31. padding: 5px 30px 10px 30px;
  32. -moz-border-radius-topleft: 0px;
  33. -moz-border-radius-topright: 0px;
  34. -moz-border-radius-bottomright: 10px;
  35. -moz-border-radius-bottomleft: 10px;
  36. -webkit-border-radius: 0px 0px 10px 10px;
  37. border-radius: 0px 0px 10px 10px;
  38. -webkit-box-shadow: 2px 2px 3px 2px rgba(0, 0, 0, 0.1);
  39. -moz-box-shadow: 2px 2px 3px 2px rgba(0, 0, 0, 0.1);
  40. box-shadow: 2px 2px 3px 2px rgba(0, 0, 0, 0.1);
  41. }
  42. .lbt.window label {
  43. font-size: small;
  44. }
  45. #source {
  46. height: 200px;
  47. font-family: "Noto Sans", "Noto Sans Linear B", sans-serif;
  48. }
  49. #destination {
  50. height:200px;
  51. font-size:2.5em;
  52. font-family: "Noto Sans", "Noto Sans Linear B", sans-serif;
  53. }
  54. pre {
  55. width:400px;
  56. border: 1px solid black;
  57. box-shadow: 1px 3px 5px;
  58. padding: 1em;
  59. background-color: #F0F0F0;
  60. font-family: "Noto Sans", "Noto Sans Linear B", sans-serif;
  61. }
  62. h3 {
  63. margin-bottom: -5px
  64. }
  65. a {
  66. text-decoration: none;
  67. color: gray;
  68. }
  69. a:hover {
  70. color: red;
  71. }
  72. span {
  73. }
  74. h2 {
  75. margin-bottom: -1px
  76. }
  77. div#wrapper {
  78. width: 700px;
  79. max-width: 90%;
  80. margin-left: auto;
  81. margin-right: auto;
  82. }
  83. input { font-family: "Noto Sans", "Noto Sans Linear B", sans-serif;}