Simple block halving countdown website
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

style.css 2.3KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178
  1. body {
  2. font-family: Helvetica, Arial, sans-serif;
  3. }
  4. #heading {
  5. width: 50%;
  6. margin: auto;
  7. text-align: center;
  8. }
  9. a {
  10. text-decoration: none;
  11. color: darkblue;
  12. }
  13. a:hover {
  14. text-decoration: underline;
  15. }
  16. #blocklist {
  17. margin: 0 auto;
  18. max-width: 80em;
  19. }
  20. #faq {
  21. margin-left: auto;
  22. margin-right: auto;
  23. max-width: 48em;
  24. }
  25. #footer {
  26. margin-left: auto;
  27. margin-right: auto;
  28. text-align: center;
  29. }
  30. #donations {
  31. font-size: 10pt;
  32. }
  33. .blocklistentry {
  34. width: 100%;
  35. }
  36. .blocklisteven {
  37. background-color: #E29531;
  38. }
  39. .blocklistodd {
  40. background-color: #F2A541;
  41. }
  42. .entryinner {
  43. margin: 12pt;
  44. border: 1px solid black;
  45. border-width: 2pt;
  46. border-radius: 4px 4px 4px 4px;
  47. padding: 12pt;
  48. box-shadow: 8px 8px #ddd;
  49. }
  50. .blbselected .entryinner {
  51. /*background-color: #ddd;*/
  52. }
  53. .entryinner:hover {
  54. background-color: #FF7F11;
  55. }
  56. .entrytop {
  57. display: flex;
  58. flex-direction: row;
  59. align-items: stretch;
  60. }
  61. .entrytopinner {
  62. display: flex;
  63. flex: auto;
  64. align-items: stretch;
  65. }
  66. .blbiconctr {
  67. }
  68. .blbicon {
  69. height: 36pt;
  70. /*max-width: 36pt;*/
  71. margin: 0;
  72. vertical-align: middle;
  73. }
  74. .blbdata {
  75. height: 100%;
  76. margin-top: auto;
  77. margin-bottom: auto;
  78. flex-grow: 1;
  79. }
  80. .blbhash {
  81. margin-top: auto;
  82. margin-bottom: auto;
  83. font-size: 12pt;
  84. font-family: monospace;
  85. overflow-wrap: break-word;
  86. vertical-align: middle;
  87. }
  88. .blbdata span {
  89. margin: 4pt;
  90. vertical-align: middle;
  91. }
  92. .blbheight {
  93. width: 96px;
  94. font-weight: bold;
  95. }
  96. .entrydetail {
  97. margin-top: 8pt;
  98. display: none;
  99. }
  100. .blbselected .entrydetail {
  101. display: block;
  102. }
  103. .entrydetail {
  104. margin: 5px;
  105. }
  106. .detaillinks {
  107. display: flex;
  108. }
  109. .detaillinks span {
  110. height: 100%;
  111. margin-top: auto;
  112. margin-bottom: auto;
  113. vertical-align: middle;
  114. }
  115. .detaillinks img {
  116. height: 36pt;
  117. width: 36pt;
  118. vertical-align: middle;
  119. }
  120. .newblock .entryinner {
  121. animation: 1s 1 newblockanim;
  122. }
  123. @keyframes newblockanim {
  124. from {
  125. background-color: #f11;
  126. border-color: #ff5;
  127. }
  128. to {
  129. /* just whatever it already is */
  130. }
  131. }
  132. .closebtn {
  133. width: 36pt;
  134. margin: 4pt;
  135. border: 1px solid grey;
  136. border-radius: 4px 4px 4px 4px;
  137. padding: 4pt;
  138. background-color: lightgrey;
  139. text-align: center;
  140. }