Advertisement
Guest User

Untitled

a guest
Feb 18th, 2019
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 15.05 KB | None | 0 0
  1. html {
  2.     font-family: sans-serif;
  3.     -webkit-text-size-adjust: 100%;
  4.     -ms-text-size-adjust: 100%;
  5. }
  6.  
  7. body {
  8.     margin: 0;
  9. }
  10.  
  11. article,
  12. aside,
  13. details,
  14. figcaption,
  15. figure,
  16. footer,
  17. header,
  18. main,
  19. menu,
  20. nav,
  21. section,
  22. summary {
  23.     display: block;
  24. }
  25.  
  26. audio,
  27. canvas,
  28. progress,
  29. video {
  30.     display: inline-block;
  31.     vertical-align: baseline;
  32. }
  33.  
  34. audio:not([controls]) {
  35.     display: none;
  36.     height: 0;
  37. }
  38.  
  39. [hidden],
  40. template {
  41.     display: none;
  42. }
  43.  
  44. a {
  45.     background-color: transparent;
  46. }
  47.  
  48. a:active,
  49. a:hover {
  50.     outline: 0;
  51. }
  52.  
  53. abbr[title] {
  54.     border-bottom: 1px dotted;
  55. }
  56.  
  57. b,
  58. strong {
  59.     font-weight: bold;
  60. }
  61.  
  62. dfn {
  63.     font-style: italic;
  64. }
  65.  
  66. h1 {
  67.     font-size: 2em;
  68.     margin: 0.67em 0;
  69. }
  70.  
  71. mark {
  72.     background: #ff0;
  73.     color: #000;
  74. }
  75.  
  76. small {
  77.     font-size: 80%;
  78. }
  79.  
  80. sub,
  81. sup {
  82.     font-size: 75%;
  83.     line-height: 0;
  84.     position: relative;
  85.     vertical-align: baseline;
  86. }
  87.  
  88. sup {
  89.     top: -0.5em;
  90. }
  91.  
  92. sub {
  93.     bottom: -0.25em;
  94. }
  95.  
  96. img {
  97.     border: 0;
  98. }
  99.  
  100. svg:not(:root) {
  101.     overflow: hidden;
  102. }
  103.  
  104. figure {
  105.     margin: 1em 40px;
  106. }
  107.  
  108. hr {
  109.     box-sizing: content-box;
  110.     height: 0;
  111. }
  112.  
  113. pre {
  114.     overflow: auto;
  115. }
  116.  
  117. code,
  118. kbd,
  119. pre,
  120. samp {
  121.     font-family: monospace, monospace;
  122.     font-size: 1em;
  123. }
  124.  
  125. button,
  126. input,
  127. optgroup,
  128. select,
  129. textarea {
  130.     color: inherit;
  131.     font: inherit;
  132.     margin: 0;
  133. }
  134.  
  135. button {
  136.     overflow: visible;
  137. }
  138.  
  139. button,
  140. select {
  141.     text-transform: none;
  142. }
  143.  
  144. button,
  145. html input[type=button],
  146. input[type=”reset”],
  147. input[type=”submit”] {
  148.     -webkit-appearance: button;
  149.     cursor: pointer;
  150. }
  151.  
  152. button[disabled],
  153. html input[disabled] {
  154.     cursor: default;
  155. }
  156.  
  157. button::-moz-focus-inner,
  158. input::-moz-focus-inner {
  159.     border: 0;
  160.     padding: 0;
  161. }
  162.  
  163. input {
  164.     line-height: normal;
  165. }
  166.  
  167. input[type=checkbox],
  168. input[type=radio] {
  169.     box-sizing: border-box;
  170.     padding: 0;
  171. }
  172.  
  173. input[type=”number”]::-webkit-inner-spin-button,
  174. input[type=”number”]::-webkit-outer-spin-button {
  175.     height: auto;
  176. }
  177.  
  178. input[type=”search”] {
  179.     -webkit-appearance: textfield;
  180.     box-sizing: content-box;
  181. }
  182.  
  183. input[type=”search”]::-webkit-search-cancel-button,
  184. input[type=”search”]::-webkit-search-decoration {
  185.     -webkit-appearance: none;
  186. }
  187.  
  188. fieldset {
  189.     border: 1px solid #c0c0c0;
  190.     margin: 0 2px;
  191.     padding: 0.35em 0.625em 0.75em;
  192. }
  193.  
  194. legend {
  195.     border: 0;
  196.     padding: 0;
  197. }
  198.  
  199. textarea {
  200.     overflow: auto;
  201. }
  202.  
  203. optgroup {
  204.     font-weight: bold;
  205. }
  206.  
  207. table {
  208.     border-collapse: collapse;
  209.     border-spacing: 0;
  210. }
  211.  
  212. td,
  213. th {
  214.     padding: 0;
  215. }
  216.  
  217. /*————————————————————–
  218. # Typography
  219. ————————————————————–*/
  220. body,
  221. button,
  222. input,
  223. select,
  224. textarea {
  225.     color: #404040;
  226.     font-family: sans-serif;
  227.     font-size: 16px;
  228.     font-size: 1rem;
  229.     line-height: 1.5;
  230. }
  231.  
  232. h1,
  233. h2,
  234. h3,
  235. h4,
  236. h5,
  237. h6 {
  238.     clear: both;
  239. }
  240.  
  241. p {
  242.     margin-bottom: 1.5em;
  243. }
  244.  
  245. dfn,
  246. cite,
  247. em,
  248. i {
  249.     font-style: italic;
  250. }
  251.  
  252. blockquote {
  253.     margin: 0 1.5em;
  254. }
  255.  
  256. address {
  257.     margin: 0 0 1.5em;
  258. }
  259.  
  260. pre {
  261.     background: #eee;
  262.     font-family: „Courier 10 Pitch”, Courier, monospace;
  263.     font-size: 15px;
  264.     font-size: 0.9375rem;
  265.     line-height: 1.6;
  266.     margin-bottom: 1.6em;
  267.     max-width: 100%;
  268.     overflow: auto;
  269.     padding: 1.6em;
  270. }
  271.  
  272. code,
  273. kbd,
  274. tt,
  275. var {
  276.     font-family: Monaco, Consolas, „Andale Mono”, „DejaVu Sans Mono”, monospace;
  277.     font-size: 15px;
  278.     font-size: 0.9375rem;
  279. }
  280.  
  281. abbr,
  282. acronym {
  283.     border-bottom: 1px dotted #666;
  284.     cursor: help;
  285. }
  286.  
  287. mark,
  288. ins {
  289.     background: #fff9c0;
  290.     text-decoration: none;
  291. }
  292.  
  293. big {
  294.     font-size: 125%;
  295. }
  296.  
  297. /*————————————————————–
  298. # Elements
  299. ————————————————————–*/
  300. html {
  301.     box-sizing: border-box;
  302. }
  303.  
  304. *,
  305. *:before,
  306. *:after {
  307.     /* Inherit box-sizing to make it easier to change the property for components that leverage other behavior; see http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
  308.     box-sizing: inherit;
  309. }
  310.  
  311. body {
  312.     background: #fff;
  313.     /* Fallback for when there is no custom background color defined. */
  314. }
  315.  
  316. blockquote:before,
  317. blockquote:after,
  318. q:before,
  319. q:after {
  320.     content: „”;
  321. }
  322.  
  323. blockquote,
  324. q {
  325.     quotes: „” „”;
  326. }
  327.  
  328. hr {
  329.     background-color: #ccc;
  330.     border: 0;
  331.     height: 1px;
  332.     margin-bottom: 1.5em;
  333. }
  334.  
  335. ul,
  336. ol {
  337.     margin: 0 0 1.5em 3em;
  338. }
  339.  
  340. ul {
  341.     list-style: disc;
  342. }
  343.  
  344. ol {
  345.     list-style: decimal;
  346. }
  347.  
  348. li>ul,
  349. li>ol {
  350.     margin-bottom: 0;
  351.     margin-left: 1.5em;
  352. }
  353.  
  354. dt {
  355.     font-weight: bold;
  356. }
  357.  
  358. dd {
  359.     margin: 0 1.5em 1.5em;
  360. }
  361.  
  362. img {
  363.     height: auto;
  364.     /* Make sure images are scaled correctly. */
  365.     max-width: 100%;
  366.     /* Adhere to container width. */
  367. }
  368.  
  369. table {
  370.     margin: 0 0 1.5em;
  371.     width: 100%;
  372. }
  373.  
  374. /*————————————————————–
  375. # Forms
  376. ————————————————————–*/
  377. button,
  378. input[type=button],
  379. input[type=”reset”],
  380. input[type=”submit”] {
  381.     border: 1px solid;
  382.     border-color: #ccc #ccc #bbb;
  383.     border-radius: 3px;
  384.     background: #e6e6e6;
  385.     box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5), inset 0 15px 17px rgba(255, 255, 255, 0.5), inset 0 -5px 12px rgba(0, 0, 0, 0.05);
  386.     color: rgba(0, 0, 0, .8);
  387.     font-size: 12px;
  388.     font-size: 0.75rem;
  389.     line-height: 1;
  390.     padding: .6em 1em .4em;
  391.     text-shadow: 0 1px 0 rgba(255, 255, 255, 0.8);
  392. }
  393.  
  394. button:hover,
  395. input[type=button]:hover,
  396. input[type=”reset”]:hover,
  397. input[type=”submit”]:hover {
  398.     border-color: #ccc #bbb #aaa;
  399.     box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8), inset 0 15px 17px rgba(255, 255, 255, 0.8), inset 0 -5px 12px rgba(0, 0, 0, 0.02);
  400. }
  401.  
  402. button:focus,
  403. input[type=button]:focus,
  404. input[type=”reset”]:focus,
  405. input[type=”submit”]:focus,
  406. button:active,
  407. input[type=button]:active,
  408. input[type=”reset”]:active,
  409. input[type=”submit”]:active {
  410.     border-color: #aaa #bbb #bbb;
  411.     box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.5), inset 0 2px 5px rgba(0, 0, 0, 0.15);
  412. }
  413.  
  414. input[type=text],
  415. input[type=”email”],
  416. input[type=url],
  417. input[type=”password”],
  418. input[type=”search”],
  419. textarea {
  420.     color: #666;
  421.     border: 1px solid #ccc;
  422.     border-radius: 3px;
  423. }
  424.  
  425. input[type=text]:focus,
  426. input[type=”email”]:focus,
  427. input[type=url]:focus,
  428. input[type=”password”]:focus,
  429. input[type=”search”]:focus,
  430. textarea:focus {
  431.     color: #111;
  432. }
  433.  
  434. input[type=text],
  435. input[type=”email”],
  436. input[type=url],
  437. input[type=”password”],
  438. input[type=”search”] {
  439.     padding: 3px;
  440. }
  441.  
  442. textarea {
  443.     padding-left: 3px;
  444.     width: 100%;
  445. }
  446.  
  447. /*————————————————————–
  448. # Navigation
  449. ————————————————————–*/
  450. /*————————————————————–
  451. ## Links
  452. ————————————————————–*/
  453. a {
  454.     color: royalblue;
  455. }
  456.  
  457. a:visited {
  458.     color: purple;
  459. }
  460.  
  461. a:hover,
  462. a:focus,
  463. a:active {
  464.     color: midnightblue;
  465. }
  466.  
  467. a:focus {
  468.     outline: thin dotted;
  469. }
  470.  
  471. a:hover,
  472. a:active {
  473.     outline: 0;
  474. }
  475.  
  476. /*————————————————————–
  477. ## Menus
  478. ————————————————————–*/
  479. .main-navigation {
  480.     clear: both;
  481.     display: block;
  482.     float: left;
  483.     width: 100%;
  484. }
  485.  
  486. .main-navigation ul {
  487.     display: none;
  488.     list-style: none;
  489.     margin: 0;
  490.     padding-left: 0;
  491. }
  492.  
  493. .main-navigation li {
  494.     float: left;
  495.     position: relative;
  496. }
  497.  
  498. .main-navigation a {
  499.     display: block;
  500.     text-decoration: none;
  501. }
  502.  
  503. .main-navigation ul ul {
  504.     box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
  505.     float: left;
  506.     position: absolute;
  507.     left: -999em;
  508.     z-index: 99999;
  509. }
  510.  
  511. .main-navigation ul ul ul {
  512.     left: -999em;
  513.     top: 0;
  514. }
  515.  
  516. .main-navigation ul ul a {
  517.     width: 200px;
  518. }
  519.  
  520. .main-navigation ul ul li {}
  521.  
  522. .main-navigation li:hover>a,
  523. .main-navigation li.focus>a {}
  524.  
  525. .main-navigation ul ul :hover>a,
  526. .main-navigation ul ul .focus>a {}
  527.  
  528. .main-navigation ul ul a:hover,
  529. .main-navigation ul ul a.focus {}
  530.  
  531. .main-navigation ul li:hover>ul,
  532. .main-navigation ul li.focus>ul {
  533.     left: auto;
  534. }
  535.  
  536. .main-navigation ul ul li:hover>ul,
  537. .main-navigation ul ul li.focus>ul {
  538.     left: 100%;
  539. }
  540.  
  541. .main-navigation .current_page_item>a,
  542. .main-navigation .current-menu-item>a,
  543. .main-navigation .current_page_ancestor>a {}
  544.  
  545. /* Small menu. */
  546. .menu-toggle,
  547. .main-navigation.toggled ul {
  548.     display: block;
  549. }
  550.  
  551. @media screen and (min-width: 37.5em) {
  552.     .menu-toggle {
  553.         display: none;
  554.     }
  555.  
  556.     .main-navigation ul {
  557.         display: block;
  558.     }
  559. }
  560.  
  561. .site-main .comment-navigation,
  562. .site-main .posts-navigation,
  563. .site-main .post-navigation {
  564.     margin: 0 0 1.5em;
  565.     overflow: hidden;
  566. }
  567.  
  568. .comment-navigation .nav-previous,
  569. .posts-navigation .nav-previous,
  570. .post-navigation .nav-previous {
  571.     float: left;
  572.     width: 50%;
  573. }
  574.  
  575. .comment-navigation .nav-next,
  576. .posts-navigation .nav-next,
  577. .post-navigation .nav-next {
  578.     float: right;
  579.     text-align: right;
  580.     width: 50%;
  581. }
  582.  
  583. /*————————————————————–
  584. # Accessibility
  585. ————————————————————–*/
  586. /* Text meant only for screen readers. */
  587. .screen-reader-text {
  588.     clip: rect(1px, 1px, 1px, 1px);
  589.     position: absolute !important;
  590.     height: 1px;
  591.     width: 1px;
  592.     overflow: hidden;
  593. }
  594.  
  595. .screen-reader-text:focus {
  596.     background-color: #f1f1f1;
  597.     border-radius: 3px;
  598.     box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  599.     clip: auto !important;
  600.     color: #21759b;
  601.     display: block;
  602.     font-size: 14px;
  603.     font-size: 0.875rem;
  604.     font-weight: bold;
  605.     height: auto;
  606.     left: 5px;
  607.     line-height: normal;
  608.     padding: 15px 23px 14px;
  609.     text-decoration: none;
  610.     top: 5px;
  611.     width: auto;
  612.     z-index: 100000;
  613.     /* Above WP toolbar. */
  614. }
  615.  
  616. /*————————————————————–
  617. # Alignments
  618. ————————————————————–*/
  619. .alignleft {
  620.     display: inline;
  621.     float: left;
  622.     margin-right: 1.5em;
  623. }
  624.  
  625. .alignright {
  626.     display: inline;
  627.     float: right;
  628.     margin-left: 1.5em;
  629. }
  630.  
  631. .aligncenter {
  632.     clear: both;
  633.     display: block;
  634.     margin-left: auto;
  635.     margin-right: auto;
  636. }
  637.  
  638. /*————————————————————–
  639. # Clearings
  640. ————————————————————–*/
  641. .clear:before,
  642. .clear:after,
  643. .entry-content:before,
  644. .entry-content:after,
  645. .comment-content:before,
  646. .comment-content:after,
  647. .site-header:before,
  648. .site-header:after,
  649. .site-content:before,
  650. .site-content:after,
  651. .site-footer:before,
  652. .site-footer:after {
  653.     content: „”;
  654.     display: table;
  655. }
  656.  
  657. .clear:after,
  658. .entry-content:after,
  659. .comment-content:after,
  660. .site-header:after,
  661. .site-content:after,
  662. .site-footer:after {
  663.     clear: both;
  664. }
  665.  
  666. /*————————————————————–
  667. # Widgets
  668. ————————————————————–*/
  669. .widget {
  670.     margin: 0 0 1.5em;
  671. }
  672.  
  673. /* Make sure select elements fit in widgets. */
  674. .widget select {
  675.     max-width: 100%;
  676. }
  677.  
  678. /* Search widget. */
  679. .widget_search .search-submit {
  680.     display: none;
  681. }
  682.  
  683. /*————————————————————–
  684. # Content
  685. ————————————————————–*/
  686. /*————————————————————–
  687. ## Posts and pages
  688. ————————————————————–*/
  689. .sticky {
  690.     display: block;
  691. }
  692.  
  693. .hentry {
  694.     margin: 0 0 1.5em;
  695. }
  696.  
  697. .byline,
  698. .updated:not(.published) {
  699.     display: none;
  700. }
  701.  
  702. .single .byline,
  703. .group-blog .byline {
  704.     display: inline;
  705. }
  706.  
  707. .page-content,
  708. .entry-content,
  709. .entry-summary {
  710.     margin: 1.5em 0 0;
  711. }
  712.  
  713. .page-links {
  714.     clear: both;
  715.     margin: 0 0 1.5em;
  716. }
  717.  
  718. /*————————————————————–
  719. ## Asides
  720. ————————————————————–*/
  721. .blog .format-aside .entry-title,
  722. .archive .format-aside .entry-title {
  723.     display: none;
  724. }
  725.  
  726. /*————————————————————–
  727. ## Comments
  728. ————————————————————–*/
  729. .comment-content a {
  730.     word-wrap: break-word;
  731. }
  732.  
  733. .bypostauthor {
  734.     display: block;
  735. }
  736.  
  737. /*————————————————————–
  738. # Infinite scroll
  739. ————————————————————–*/
  740. /* Globally hidden elements when Infinite Scroll is supported and in use. */
  741. .infinite-scroll .posts-navigation,
  742. /* Older / Newer Posts Navigation (always hidden) */
  743. .infinite-scroll.neverending .site-footer {
  744.     /* Theme Footer (when set to scrolling) */
  745.     display: none;
  746. }
  747.  
  748. /* When Infinite Scroll has reached its end we need to re-display elements that were hidden (via .neverending) before. */
  749. .infinity-end.neverending .site-footer {
  750.     display: block;
  751. }
  752.  
  753. /*————————————————————–
  754. # Media
  755. ————————————————————–*/
  756. .page-content .wp-smiley,
  757. .entry-content .wp-smiley,
  758. .comment-content .wp-smiley {
  759.     border: none;
  760.     margin-bottom: 0;
  761.     margin-top: 0;
  762.     padding: 0;
  763. }
  764.  
  765. /* Make sure embeds and iframes fit their containers. */
  766. embed,
  767. iframe,
  768. object {
  769.     max-width: 100%;
  770. }
  771.  
  772. /*————————————————————–
  773. ## Captions
  774. ————————————————————–*/
  775. .wp-caption {
  776.     margin-bottom: 1.5em;
  777.     max-width: 100%;
  778. }
  779.  
  780. .wp-caption img[class*=”wp-image-„] {
  781.     display: block;
  782.     margin-left: auto;
  783.     margin-right: auto;
  784. }
  785.  
  786. .wp-caption .wp-caption-text {
  787.     margin: 0.8075em 0;
  788. }
  789.  
  790. .wp-caption-text {
  791.     text-align: center;
  792. }
  793.  
  794. /*————————————————————–
  795. ## Galleries
  796. ————————————————————–*/
  797. .gallery {
  798.     margin-bottom: 1.5em;
  799. }
  800.  
  801. .gallery-item {
  802.     display: inline-block;
  803.     text-align: center;
  804.     vertical-align: top;
  805.     width: 100%;
  806. }
  807.  
  808. .gallery-columns-2 .gallery-item {
  809.     max-width: 50%;
  810. }
  811.  
  812. .gallery-columns-3 .gallery-item {
  813.     max-width: 33.33%;
  814. }
  815.  
  816. .gallery-columns-4 .gallery-item {
  817.     max-width: 25%;
  818. }
  819.  
  820. .gallery-columns-5 .gallery-item {
  821.     max-width: 20%;
  822. }
  823.  
  824. .gallery-columns-6 .gallery-item {
  825.     max-width: 16.66%;
  826. }
  827.  
  828. .gallery-columns-7 .gallery-item {
  829.     max-width: 14.28%;
  830. }
  831.  
  832. .gallery-columns-8 .gallery-item {
  833.     max-width: 12.5%;
  834. }
  835.  
  836. .gallery-columns-9 .gallery-item {
  837.     max-width: 11.11%;
  838. }
  839.  
  840. .gallery-caption {
  841.     display: block;
  842. }
  843.  
  844. h1 {
  845.     font-size: 18px !important;
  846. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement