Nessuna descrizione

default-style.css 6.0KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351
  1. /*
  2. #
  3. # Theme XShop
  4. # Default style for XShop
  5. */
  6. /*--------------------------------------------------------------
  7. >>> TABLE OF CONTENTS:
  8. ----------------------------------------------------------------
  9. # Components
  10. - Media
  11. - Captions
  12. - Galleries
  13. # plugins
  14. - Jetpack infinite scroll
  15. # Utilities
  16. - Accessibility
  17. - Alignments
  18. # Comments
  19. --------------------------------------------------------------*/
  20. /*--------------------------------------------------------------
  21. # Components
  22. --------------------------------------------------------------*/
  23. /* Media
  24. --------------------------------------------- */
  25. .page-content .wp-smiley,
  26. .entry-content .wp-smiley,
  27. .comment-content .wp-smiley {
  28. border: none;
  29. margin-bottom: 0;
  30. margin-top: 0;
  31. padding: 0;
  32. }
  33. /* Make sure logo link wraps around logo image. */
  34. .custom-logo-link {
  35. display: inline-block;
  36. }
  37. /* Captions
  38. --------------------------------------------- */
  39. iframe {
  40. border: 0;
  41. max-width: 100%;
  42. }
  43. .wp-caption {
  44. margin-bottom: 1.5em;
  45. max-width: 100%;
  46. }
  47. .wp-caption img[class*="wp-image-"] {
  48. display: block;
  49. margin-left: auto;
  50. margin-right: auto;
  51. }
  52. .wp-caption .wp-caption-text {
  53. margin: 0.8075em 0;
  54. }
  55. .wp-caption-text {
  56. text-align: center;
  57. }
  58. .footer-widget .wp-block-calendar table caption,
  59. .footer-widget .wp-block-calendar table tbody{
  60. color: #fff;
  61. }
  62. .widget.footer-widget ul li {
  63. border-bottom: 1px solid #444;
  64. }
  65. .has-footer-widget .site-info{
  66. background: #111;
  67. color: #fff;
  68. }
  69. /* Galleries
  70. --------------------------------------------- */
  71. .gallery {
  72. margin-bottom: 1.5em;
  73. display: grid;
  74. grid-gap: 1.5em;
  75. }
  76. .gallery-item {
  77. display: inline-block;
  78. text-align: center;
  79. width: 100%;
  80. }
  81. .gallery-columns-2 {
  82. grid-template-columns: repeat(2, 1fr);
  83. }
  84. .gallery-columns-3 {
  85. grid-template-columns: repeat(3, 1fr);
  86. }
  87. .gallery-columns-4 {
  88. grid-template-columns: repeat(4, 1fr);
  89. }
  90. .gallery-columns-5 {
  91. grid-template-columns: repeat(5, 1fr);
  92. }
  93. .gallery-columns-6 {
  94. grid-template-columns: repeat(6, 1fr);
  95. }
  96. .gallery-columns-7 {
  97. grid-template-columns: repeat(7, 1fr);
  98. }
  99. .gallery-columns-8 {
  100. grid-template-columns: repeat(8, 1fr);
  101. }
  102. .gallery-columns-9 {
  103. grid-template-columns: repeat(9, 1fr);
  104. }
  105. .gallery-caption {
  106. display: block;
  107. }
  108. /* Table
  109. --------------------------------------------- */
  110. .entry-content table,.comment-content table {
  111. border-left: 1px solid #ccc;
  112. border-bottom: 1px solid #ccc;
  113. }
  114. .entry-content table td, .entry-content table th ,
  115. .comment-content table td, .comment-content table th {
  116. border-right: 1px solid #ccc;
  117. border-top: 1px solid #ccc;
  118. padding: 10px;
  119. }
  120. .entry-content table th ,
  121. .comment-content table th {
  122. background: #ccc;
  123. }
  124. /*--------------------------------------------------------------
  125. # Plugins
  126. --------------------------------------------------------------*/
  127. /* Jetpack infinite scroll
  128. --------------------------------------------- */
  129. /* Hide the Posts Navigation and the Footer when Infinite Scroll is in use. */
  130. .infinite-scroll .posts-navigation,
  131. .infinite-scroll.neverending .site-footer {
  132. display: none;
  133. }
  134. /* Re-display the Theme Footer when Infinite Scroll has reached its end. */
  135. .infinity-end.neverending .site-footer {
  136. display: block;
  137. }
  138. /*--------------------------------------------------------------
  139. # Utilities
  140. --------------------------------------------------------------*/
  141. /* Accessibility
  142. --------------------------------------------- */
  143. /* Text meant only for screen readers. */
  144. .screen-reader-text {
  145. border: 0;
  146. clip: rect(1px, 1px, 1px, 1px);
  147. clip-path: inset(50%);
  148. height: 1px;
  149. margin: -1px;
  150. overflow: hidden;
  151. padding: 0;
  152. position: absolute !important;
  153. width: 1px;
  154. word-wrap: normal !important;
  155. }
  156. .screen-reader-text:focus {
  157. background-color: #f1f1f1;
  158. border-radius: 3px;
  159. box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  160. clip: auto !important;
  161. clip-path: none;
  162. color: #21759b;
  163. display: block;
  164. font-size: 0.875rem;
  165. font-weight: 700;
  166. height: auto;
  167. left: 5px;
  168. line-height: normal;
  169. padding: 15px 23px 14px;
  170. text-decoration: none;
  171. top: 5px;
  172. width: auto;
  173. z-index: 100000;
  174. }
  175. /* Do not show the outline on the skip link target. */
  176. #primary[tabindex="-1"]:focus {
  177. outline: 0;
  178. }
  179. /* Alignments
  180. --------------------------------------------- */
  181. .alignleft {
  182. /*rtl:ignore*/
  183. float: left;
  184. /*rtl:ignore*/
  185. margin-right: 1.5em;
  186. margin-bottom: 1.5em;
  187. }
  188. .alignright {
  189. /*rtl:ignore*/
  190. float: right;
  191. /*rtl:ignore*/
  192. margin-left: 1.5em;
  193. margin-bottom: 1.5em;
  194. }
  195. .aligncenter {
  196. clear: both;
  197. display: block;
  198. margin-left: auto;
  199. margin-right: auto;
  200. margin-bottom: 1.5em;
  201. }
  202. /* Comments
  203. --------------------------------------------- */
  204. .comment-content a {
  205. word-wrap: break-word;
  206. }
  207. form#commentform {
  208. max-width: 1000px;
  209. }
  210. .bypostauthor {
  211. display: block;
  212. }
  213. .comment-respond {
  214. margin-top: 4rem;
  215. margin-bottom: 4rem;
  216. border: solid thin #eaeaea;
  217. padding: 1.75rem;
  218. }
  219. .comment-notes {
  220. font-size: medium;
  221. margin: 0px 0;
  222. }
  223. .comment-list {
  224. padding: 0;
  225. }
  226. .comments-title {
  227. font-size: medium;
  228. }
  229. .comment-meta {
  230. display: -webkit-box;
  231. display: -ms-flexbox;
  232. display: flex;
  233. -webkit-box-pack: justify;
  234. -ms-flex-pack: justify;
  235. justify-content: space-between;
  236. -webkit-box-align: center;
  237. -ms-flex-align: center;
  238. align-items: center;
  239. margin-bottom: 1rem;
  240. }
  241. .comment-author img {
  242. border-radius: 50%;
  243. margin-right: .5rem;
  244. }
  245. .comment-metadata a {
  246. color: #c1c1c1;
  247. }
  248. .says {
  249. display: none;
  250. }
  251. .comment-reply-link {
  252. border: solid thin #eaeaea;
  253. padding: 0.2rem 0.5rem;
  254. }
  255. .comment-form-cookies-consent {
  256. font-size: medium;
  257. font-weight: normal;
  258. }
  259. .comments-area ol {
  260. list-style: none;
  261. }
  262. .comment-body {
  263. border: solid thin #e2e8f0;
  264. padding: 1rem;
  265. margin-bottom: 2rem;
  266. font-size: medium;
  267. word-wrap: break-word;
  268. }
  269. ol.children {
  270. margin-bottom: 0;
  271. margin-left: 0;
  272. }
  273. div.comments-area label {
  274. display: inline-block;
  275. margin-bottom: 0;
  276. color: #757575;
  277. }
  278. div.comment-respond h3 {
  279. font-size: inherit;
  280. }
  281. p.logged-in-as {
  282. font-size: medium;
  283. margin: 0px 0;
  284. }
  285. span.nav-subtitle {
  286. color: #999;
  287. }
  288. form#commentform input:not([type="checkbox"]) {
  289. display: block;
  290. max-width: 600px;
  291. width: 100%;
  292. }
  293. .form-submit {
  294. display: inline-block;
  295. }