style.css 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204
  1. .api h2 {
  2. margin-top: 4rem !important;
  3. margin-bottom: 2rem;
  4. }
  5. .extensions h3 {
  6. margin-bottom: 2rem;
  7. }
  8. .donate img {
  9. max-height: 200px;
  10. }
  11. .donate th,
  12. .donate td {
  13. text-align: center;
  14. vertical-align: middle !important;
  15. }
  16. .donate svg.navbar-nav-svg {
  17. width: 96px;
  18. }
  19. #share-buttons {
  20. display: inline-block;
  21. vertical-align: middle;
  22. }
  23. #share-buttons>a {
  24. position: relative;
  25. text-align: left;
  26. height: 36px;
  27. width: 32px;
  28. float: left;
  29. text-align: center;
  30. color: silver;
  31. }
  32. #share-buttons>a {
  33. position: relative;
  34. text-align: left;
  35. height: 36px;
  36. width: 32px;
  37. float: left;
  38. text-align: center;
  39. color: silver;
  40. }
  41. #share-buttons>a>svg {
  42. height: 18px;
  43. fill: #d5d5d5;
  44. margin-top: 9px;
  45. }
  46. #share-buttons>.github:hover,
  47. #share-buttons>.github:hover svg {
  48. color: #000;
  49. fill: #000;
  50. }
  51. #share-buttons>.twitter:hover,
  52. #share-buttons>.twitter:hover svg {
  53. color: #55acee;
  54. fill: #55acee;
  55. }
  56. #share-buttons>.facebook:hover,
  57. #share-buttons>.facebook:hover svg {
  58. color: #3b5998;
  59. fill: #3b5998;
  60. }
  61. #share-buttons>.linkedin:hover,
  62. #share-buttons>.linkedin:hover svg {
  63. color: #0077b5;
  64. fill: #0077b5;
  65. }
  66. #share-buttons>.mail:hover,
  67. #share-buttons>.mail:hover svg {
  68. color: #7d7d7d;
  69. fill: #7d7d7d;
  70. }
  71. .share-desc {
  72. font-size: 12px;
  73. color: #777;
  74. text-align: left;
  75. }
  76. .post-date {
  77. display: block;
  78. margin-top: -.5rem;
  79. margin-bottom: 1rem;
  80. color: #767676;
  81. }
  82. .btn-brand {
  83. background: #7952B3;
  84. color: #ffffff;
  85. }
  86. .btn-brand:hover {
  87. background: #614092;
  88. color: #ffffff;
  89. }
  90. .theme-card {
  91. margin-bottom: 1rem;
  92. display: block;
  93. font-size: 14px;
  94. -webkit-perspective: 1000px;
  95. perspective: 1000px;
  96. }
  97. .theme-cards__title {
  98. margin-bottom: 0;
  99. font-size: 20px;
  100. }
  101. .theme-card__body {
  102. position: relative;
  103. display: block;
  104. -webkit-transition: all .2s ease-out;
  105. transition: all .2s ease-out;
  106. height: 0;
  107. padding-bottom: 74.5%;
  108. background-color: #E5E9EF;
  109. border-radius: 8px;
  110. -webkit-box-shadow: 0 25px 20px -20px rgba(0, 0, 0, 0.3), 0 0 15px rgba(0, 0, 0, 0.06);
  111. box-shadow: 0 25px 20px -20px rgba(0, 0, 0, 0.3), 0 0 15px rgba(0, 0, 0, 0.06);
  112. -webkit-transition: all .5s ease-out;
  113. transition: all .5s ease-out;
  114. }
  115. .theme-card__body img,
  116. .theme-card__body .theme-card__img {
  117. border-radius: 8px;
  118. width: 100% !important;
  119. }
  120. .theme-card__body a.d-block {
  121. height: 0;
  122. padding-bottom: 74.5%;
  123. overflow: hidden;
  124. }
  125. .theme-card__body:hover .theme-card__body__overlay,
  126. .theme-card__body:focus .theme-card__body__overlay {
  127. opacity: 1;
  128. visibility: visible;
  129. }
  130. .theme-card__body__overlay {
  131. position: absolute;
  132. right: 10px;
  133. bottom: 10px;
  134. opacity: 0;
  135. visibility: hidden;
  136. }
  137. .theme-card__footer {
  138. padding: 15px 8px;
  139. color: #343434;
  140. }
  141. @media (max-width: 991px) {
  142. .theme-card__footer {
  143. padding-left: 2px;
  144. padding-right: 2px;
  145. }
  146. }
  147. @media (min-width: 576px) {
  148. .theme-card__footer__item+.theme-card__footer__item {
  149. text-align: right;
  150. }
  151. }
  152. .theme-card__title,
  153. .theme-card__title:hover,
  154. .theme-card__title:focus {
  155. font-weight: 500;
  156. color: inherit;
  157. font-size: 18px;
  158. }
  159. .theme-card__info {
  160. font-size: 13px;
  161. color: #838E95;
  162. position: relative;
  163. white-space: nowrap;
  164. text-overflow: ellipsis;
  165. overflow: hidden;
  166. }
  167. .theme-card__info a {
  168. color: #838E95;
  169. }
  170. .fa-link {
  171. font-size: 20px;
  172. color: #333;
  173. }