style.css 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. @import url(https://fonts.googleapis.com/css?family=Open+Sans:400,700);
  2. html,
  3. body {
  4. background-repeat: no-repeat;
  5. background-attachment: fixed;
  6. }
  7. p {
  8. font-family: 'Open Sans', sans-serif;
  9. font-size: 28px;
  10. }
  11. span,
  12. .varval {
  13. font-family: 'Open Sans', sans-serif;
  14. font-size: 28px;
  15. font-weight: 700;
  16. }
  17. .button {
  18. background-color: #4CAF50; /* Green */
  19. border: none;
  20. color: white;
  21. padding: 15px 32px;
  22. text-align: center;
  23. text-decoration: none;
  24. display: inline-block;
  25. font-size: 16px;
  26. margin: 4px 2px;
  27. cursor: pointer;
  28. }
  29. .button2 {background-color: #008CBA;} /* Blue */
  30. .button3 {background-color: #f44336;} /* Red */
  31. .showhide {
  32. background-color: #e7e7e7;
  33. color: black;
  34. position: absolute;
  35. left: 0;
  36. bottom: 0;
  37. }
  38. #tool-btn {
  39. padding: 20px;
  40. position: absolute;
  41. left: 200px;
  42. bottom: 0;
  43. background-color: rgba(0, 0, 0, 0.7);
  44. z-index: 100;
  45. }
  46. .save,
  47. .add,
  48. .remove,
  49. .highlight {
  50. background-color: #e7e7e7;
  51. color: black;
  52. }
  53. .info {
  54. color:ghostwhite;
  55. }
  56. .button5 {background-color: #555555;} /* Black */
  57. .varbox {
  58. position: absolute;
  59. width: 50px;
  60. border: dashed 5px #ccc;
  61. }
  62. .statusbox {
  63. position: absolute;
  64. width: 50px;
  65. padding: 5px;
  66. }
  67. #page_info {
  68. position: absolute;
  69. top: 10px;
  70. left: 20px;
  71. font-family: 'Open Sans', sans-serif;
  72. font-size: 16px;
  73. color: darkgray;
  74. }
  75. .box_highlight {
  76. border-color: red;
  77. }