lbt.css 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  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. .lbt.overlay {
  10. position: absolute; /* important */
  11. top: 0px; /* start from top */
  12. left: 0px; /* start from left */
  13. height: 100%; /* cover the whole page */
  14. width: 100%; /* cover the whole page */
  15. display: none; /* don't show it '*/
  16. /* styling bellow */
  17. background-color: black;
  18. z-index: 1000;
  19. }
  20. .lbt.window {
  21. margin-top: 3em;
  22. margin-left: 3em;
  23. display: none; /* don't show it */
  24. /* styling bellow */
  25. color: #fff;
  26. top: 0;
  27. width: 800px;
  28. border: 1px solid gray;
  29. background: #fff;
  30. color: black;
  31. z-index: 1001;
  32. padding: 5px 30px 10px 30px;
  33. -moz-border-radius-topleft: 0px;
  34. -moz-border-radius-topright: 0px;
  35. -moz-border-radius-bottomright: 10px;
  36. -moz-border-radius-bottomleft: 10px;
  37. -webkit-border-radius: 0px 0px 10px 10px;
  38. border-radius: 0px 0px 10px 10px;
  39. -webkit-box-shadow: 2px 2px 3px 2px rgba(0, 0, 0, 0.1);
  40. -moz-box-shadow: 2px 2px 3px 2px rgba(0, 0, 0, 0.1);
  41. box-shadow: 2px 2px 3px 2px rgba(0, 0, 0, 0.1);
  42. }
  43. .lbt.window label {
  44. font-size: small;
  45. }
  46. #source {
  47. height: 200px;
  48. font-family: "Noto Sans", "Noto Sans Linear B", sans-serif;
  49. }
  50. #destination {
  51. height:200px;
  52. font-size:2.5em;
  53. font-family: "Noto Sans", "Noto Sans Linear B", sans-serif;
  54. }
  55. pre {
  56. width:800px;
  57. margin-left: 3em;
  58. border: 1px solid black;
  59. box-shadow: 1px 3px 5px;
  60. padding: 1em;
  61. }
  62. h2 {
  63. margin-left: 3em
  64. }
  65. a {
  66. text-decoration: none;
  67. }
  68. a:hover {
  69. color: grey;
  70. }