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.

1005 lines
20 KiB

5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
  1. /* THEME SPECIFIC STYLES */
  2. .v-main .contents {
  3. color: mc('grey', '800');
  4. padding: .5rem 0 50px;
  5. position: relative;
  6. > div > *:first-child {
  7. margin-top: 0;
  8. }
  9. @at-root .theme--dark & {
  10. color: mc('grey', '300');
  11. }
  12. // ---------------------------------
  13. // LINKS
  14. // ---------------------------------
  15. a {
  16. color: mc('blue', '700');
  17. &.is-internal-link.is-invalid-page {
  18. color: mc('red', '700');
  19. @at-root .theme--dark & {
  20. color: mc('red', '200');
  21. }
  22. }
  23. &.is-external-link {
  24. padding-right: 3px;
  25. &::after {
  26. font-family: 'Material Design Icons', sans-serif;
  27. font-size: 24px/1;
  28. padding-left: 3px;
  29. display: inline-block;
  30. content: '\F03CC';
  31. color: mc('grey', '500');
  32. text-decoration: none;
  33. }
  34. }
  35. @at-root .theme--dark & {
  36. color: mc('blue', '200');
  37. }
  38. }
  39. // ---------------------------------
  40. // HEADERS
  41. // ---------------------------------
  42. h1, h2, h3, h4, h5, h6 {
  43. position: relative;
  44. &:first-child {
  45. padding-top: 0;
  46. }
  47. &:hover {
  48. .toc-anchor {
  49. display: block;
  50. }
  51. }
  52. .toc-anchor {
  53. display: none;
  54. position: absolute;
  55. right: 1rem;
  56. bottom: .5rem;
  57. font-size: 1.25rem;
  58. text-decoration: none;
  59. color: mc('grey', '500');
  60. }
  61. & + h2, & + h3, & + h4, & + h5, & + h6 {
  62. margin-top: 8px;
  63. }
  64. }
  65. h1 {
  66. padding: 0;
  67. color: mc('blue', '800');
  68. margin-top: 2rem;
  69. position: relative;
  70. @at-root .theme--dark & {
  71. color: mc('grey', '300');
  72. }
  73. &::after {
  74. content: '';
  75. position: absolute;
  76. bottom: 0;
  77. left: 0;
  78. width: 100%;
  79. height: 2px;
  80. background: linear-gradient(to right, mc('theme', 'primary'), rgba(mc('theme', 'primary'), 0));
  81. border-radius: 3px;
  82. @at-root .theme--dark & {
  83. background: linear-gradient(to right, mc('blue', '300') 0%, mc('blue', '500') 10%, rgba(mc('blue', '900'), 0) 100%);
  84. }
  85. @at-root .is-rtl & {
  86. background: linear-gradient(to left, mc('theme', 'primary'), rgba(mc('theme', 'primary'), 0));
  87. }
  88. @at-root .theme--dark.is-rtl & {
  89. background: linear-gradient(to left, mc('grey', '600'), rgba(mc('grey', '600'), 0));
  90. }
  91. }
  92. }
  93. h2 {
  94. margin: 1rem 0 0 0;
  95. color: mc('grey', '800');
  96. position: relative;
  97. @at-root .theme--dark & {
  98. color: mc('grey', '400');
  99. }
  100. &::after {
  101. content: '';
  102. position: absolute;
  103. bottom: 0;
  104. left: 0;
  105. width: 100%;
  106. height: 1px;
  107. background: linear-gradient(to right, mc('grey', '700'), rgba(mc('grey', '700'), 0));
  108. @at-root .theme--dark & {
  109. background: linear-gradient(to right, mc('grey', '300'), rgba(mc('grey', '700'), 0));
  110. }
  111. @at-root .is-rtl & {
  112. background: linear-gradient(to left, mc('grey', '700'), rgba(mc('grey', '700'), 0));
  113. }
  114. @at-root .theme--dark.is-rtl & {
  115. background: linear-gradient(to left, mc('grey', '300'), rgba(mc('grey', '700'), 0));
  116. }
  117. }
  118. }
  119. h3 {
  120. margin: 8px 0 0 0;
  121. color: mc('grey', '700');
  122. position: relative;
  123. @at-root .theme--dark & {
  124. color: mc('grey', '600');
  125. }
  126. &::after {
  127. content: '';
  128. position: absolute;
  129. bottom: 0;
  130. left: 0;
  131. width: 100%;
  132. height: 1px;
  133. background: linear-gradient(to right, mc('grey', '500'), rgba(mc('grey', '500'), 0) 90%);
  134. }
  135. }
  136. h4, h5, h6 {
  137. font-size: 1rem;
  138. margin: 8px 0 0 0;
  139. color: mc('grey', '700');
  140. position: relative;
  141. @at-root .theme--dark & {
  142. color: mc('grey', '600');
  143. }
  144. &::after {
  145. content: '';
  146. position: absolute;
  147. bottom: 0;
  148. left: 0;
  149. width: 100%;
  150. height: 1px;
  151. background: linear-gradient(to right, mc('grey', '500'), rgba(mc('grey', '500'), 0) 70%);
  152. }
  153. }
  154. h5 {
  155. &::after {
  156. background: linear-gradient(to right, mc('grey', '500'), rgba(mc('grey', '500'), 0) 50%);
  157. }
  158. }
  159. h6 {
  160. &::after {
  161. background: linear-gradient(to right, mc('grey', '500'), rgba(mc('grey', '500'), 0) 30%);
  162. }
  163. }
  164. // ---------------------------------
  165. // PARAGRAPHS
  166. // ---------------------------------
  167. p {
  168. padding: 1rem 0 0 0;
  169. margin: 0;
  170. @at-root .contents > div > p:first-child {
  171. padding-top: 0;
  172. }
  173. @at-root .v-application & {
  174. margin-bottom: 0;
  175. }
  176. }
  177. hr {
  178. margin: 1rem 0;
  179. height: 1px;
  180. border: none;
  181. background-color: mc('grey', '400');
  182. @at-root .theme--dark & {
  183. background-color: mc('grey', '700');
  184. }
  185. }
  186. .emoji {
  187. height: 1.25em;
  188. margin: 0 1px -4px;
  189. }
  190. blockquote {
  191. padding: 0 1rem 1rem 1rem;
  192. background-color: mc('blue-grey', '50');
  193. border-left: 55px solid mc('blue-grey', '500');
  194. border-radius: .5rem;
  195. margin: 1rem 0;
  196. position: relative;
  197. @at-root .theme--dark & {
  198. background-color: mc('blue-grey', '900');
  199. }
  200. &::before {
  201. display: inline-block;
  202. font: normal normal normal 24px/1 "Material Design Icons", sans-serif;
  203. position: absolute;
  204. margin-top: -12px;
  205. top: 50%;
  206. left: -38px;
  207. color: rgba(255, 255, 255, .7);
  208. content: "\F0757";
  209. }
  210. > p:first-child .emoji {
  211. margin-right: .5rem;
  212. }
  213. &.valign-center > p {
  214. display: flex;
  215. align-items: center;
  216. }
  217. &.is-info {
  218. background-color: mc('blue', '50');
  219. border-color: mc('blue', '300');
  220. color: mc('blue', '900');
  221. &::before {
  222. content: "\F02FC";
  223. }
  224. code {
  225. background-color: mc('blue', '50');
  226. color: mc('blue', '800');
  227. }
  228. @at-root .theme--dark & {
  229. background-color: mc('blue', '900');
  230. color: mc('blue', '50');
  231. border-color: mc('blue', '500');
  232. }
  233. }
  234. &.is-warning {
  235. background-color: mc('orange', '50');
  236. border-color: mc('orange', '300');
  237. color: darken(mc('orange', '900'), 10%);
  238. &::before {
  239. content: "\F0026";
  240. }
  241. code {
  242. background-color: mc('orange', '50');
  243. color: mc('orange', '800');
  244. }
  245. @at-root .theme--dark & {
  246. background-color: darken(mc('orange', '900'), 5%);
  247. color: mc('orange', '100');
  248. border-color: mc('orange', '500');
  249. box-shadow: 0 0 2px 0 mc('grey', '900');
  250. }
  251. }
  252. &.is-danger {
  253. background-color: mc('red', '50');
  254. border-color: mc('red', '300');
  255. color: mc('red', '900');
  256. &::before {
  257. content: "\F0159";
  258. }
  259. code {
  260. background-color: mc('red', '50');
  261. color: mc('red', '800');
  262. }
  263. @at-root .theme--dark & {
  264. background-color: mc('red', '900');
  265. color: mc('red', '100');
  266. border-color: mc('red', '500');
  267. }
  268. }
  269. &.is-success {
  270. background-color: mc('green', '50');
  271. border-color: mc('green', '300');
  272. color: mc('green', '900');
  273. &::before {
  274. content: "\F0E1E";
  275. }
  276. code {
  277. background-color: mc('green', '50');
  278. color: mc('green', '800');
  279. }
  280. @at-root .theme--dark & {
  281. background-color: mc('green', '900');
  282. color: mc('green', '50');
  283. border-color: mc('green', '500');
  284. }
  285. }
  286. }
  287. // ---------------------------------
  288. // LISTS
  289. // ---------------------------------
  290. ol, ul:not(.tabset-tabs) {
  291. padding-top: 1rem;
  292. width: 100%;
  293. @at-root .is-rtl & {
  294. padding-left: 0;
  295. padding-right: 1rem;
  296. }
  297. li > ul, li > ol {
  298. padding-top: .5rem;
  299. padding-left: 1rem;
  300. @at-root .is-rtl & {
  301. padding-left: 0;
  302. padding-right: 1rem;
  303. }
  304. }
  305. li + li {
  306. margin-top: .5rem;
  307. }
  308. &.links-list {
  309. padding-left: 0;
  310. list-style-type: none;
  311. @at-root .is-rtl & {
  312. padding-right: 0;
  313. }
  314. li {
  315. background-color: mc('grey', '50');
  316. background-image: linear-gradient(to bottom, #FFF, mc('grey', '50'));
  317. border-right: 1px solid mc('grey', '200');
  318. border-bottom: 1px solid mc('grey', '200');
  319. border-left: 5px solid mc('grey', '300');
  320. box-shadow: 0 3px 8px 0 rgba(116, 129, 141, 0.1);
  321. padding: 1rem;
  322. border-radius: 5px;
  323. font-weight: 500;
  324. @at-root .is-rtl & {
  325. border-left-width: 1px;
  326. border-right-width: 5px;
  327. }
  328. &:hover {
  329. background-image: linear-gradient(to bottom, #FFF, lighten(mc('blue', '50'), 4%));
  330. border-left-color: mc('blue', '500');
  331. cursor: pointer;
  332. @at-root .is-rtl & {
  333. border-left-color: mc('grey', '200');
  334. border-right-width: mc('blue', '500');
  335. }
  336. }
  337. &::before {
  338. content: '';
  339. display: none;
  340. }
  341. > a {
  342. display: block;
  343. text-decoration: none;
  344. margin: -1rem;
  345. padding: 1rem;
  346. > em {
  347. font-weight: 400;
  348. font-style: normal;
  349. color: mc('grey', '700');
  350. display: inline-block;
  351. padding-left: .5rem;
  352. border-left: 1px solid mc('grey', '300');
  353. margin-left: .5rem;
  354. &.is-block {
  355. display: block;
  356. padding-left: 0;
  357. margin-left: 0;
  358. border-left: none;
  359. }
  360. }
  361. }
  362. > em {
  363. font-weight: 400;
  364. font-style: normal;
  365. }
  366. @at-root .theme--dark & {
  367. background-color: mc('grey', '50');
  368. background-image: linear-gradient(to bottom, lighten(mc('grey', '900'), 5%), mc('grey', '900'));
  369. border-right: 1px solid mc('grey', '900');
  370. border-bottom: 1px solid mc('grey', '900');
  371. border-left: 5px solid mc('grey', '700');
  372. box-shadow: 0 3px 8px 0 rgba(0, 0, 0, 0.1);
  373. @at-root .theme--dark.is-rtl & {
  374. border-left-width: 1px;
  375. border-right-width: 5px;
  376. }
  377. &:hover {
  378. background-image: linear-gradient(to bottom, lighten(mc('grey', '900'), 2%), darken(mc('grey', '900'), 3%));
  379. border-left-color: mc('indigo', '300');
  380. cursor: pointer;
  381. @at-root .theme--dark.is-rtl & {
  382. border-left-color: mc('grey', '900');
  383. border-right-width: mc('indigo', '300');
  384. }
  385. }
  386. }
  387. }
  388. }
  389. &.grid-list {
  390. margin: 1rem 0 0 0;
  391. background-color: #FFF;
  392. border: 1px solid mc('grey', '200');
  393. padding: 1px;
  394. display: inline-block;
  395. list-style-type: none;
  396. @at-root .theme--dark & {
  397. background-color: #000;
  398. border: 1px solid mc('grey', '800');
  399. }
  400. li {
  401. background-color: mc('grey', '50');
  402. padding: .6rem 1rem;
  403. display: block;
  404. &:nth-child(odd) {
  405. background-color: mc('grey', '100');
  406. }
  407. & + li {
  408. margin-top: 0;
  409. }
  410. &::before {
  411. content: '';
  412. display: none;
  413. }
  414. @at-root .theme--dark & {
  415. background-color: mc('grey', '900');
  416. &:nth-child(odd) {
  417. background-color: darken(mc('grey', '900'), 5%);
  418. }
  419. }
  420. }
  421. }
  422. }
  423. ul:not(.tabset-tabs) {
  424. list-style: none;
  425. > li::before {
  426. position: absolute;
  427. left: -1.1rem;
  428. content: '\25b8';
  429. color: mc('grey', '600');
  430. width: 1.35rem;
  431. @at-root .is-rtl & {
  432. right: -1.1rem;
  433. content: '\25C3';
  434. }
  435. }
  436. }
  437. ol, ul:not(.tabset-tabs) {
  438. > li {
  439. position: relative;
  440. > p {
  441. display:inline-block;
  442. vertical-align:top;
  443. padding-top:0;
  444. }
  445. }
  446. }
  447. // ---------------------------------
  448. // CODE
  449. // ---------------------------------
  450. code {
  451. background-color: mc('indigo', '50');
  452. padding: 0 5px;
  453. color: mc('indigo', '800');
  454. font-family: 'Roboto Mono', monospace;
  455. font-weight: normal;
  456. font-size: 1rem;
  457. box-shadow: none;
  458. &::before, &::after {
  459. display: none;
  460. }
  461. @at-root .theme--dark & {
  462. background-color: darken(mc('grey', '900'), 5%);
  463. color: mc('indigo', '100');
  464. }
  465. }
  466. .prismjs{
  467. border: none;
  468. border-radius: 5px;
  469. box-shadow: initial;
  470. background-color: mc('grey', '900');
  471. padding: 1rem 1rem 1rem 3rem;
  472. margin: 1rem 0;
  473. @at-root .theme--dark & {
  474. background-color: darken(mc('grey', '900'), 5%);
  475. }
  476. > code {
  477. background-color: transparent;
  478. padding: 0;
  479. color: #FFF;
  480. box-shadow: initial;
  481. display: block;
  482. font-size: .85rem;
  483. font-family: 'Roboto Mono', monospace;
  484. &:after, &:before {
  485. content: initial;
  486. letter-spacing: initial;
  487. }
  488. }
  489. }
  490. .diagram {
  491. margin-top: 1rem;
  492. svg:first-child {
  493. direction: ltr;
  494. }
  495. }
  496. // ---------------------------------
  497. // TASK LISTS
  498. // ---------------------------------
  499. .task-list-item {
  500. position: relative;
  501. list-style-type: none;
  502. &-checkbox[disabled] {
  503. display: none;
  504. & + label {
  505. padding-left: 1.5rem;
  506. }
  507. & + label::before {
  508. position: absolute;
  509. left: 0;
  510. top: 2px;
  511. content: ' ';
  512. display: block;
  513. width: 1.1rem;
  514. height: 1.1rem;
  515. background-color: #FFF;
  516. border: 1px solid mc('grey', '400');
  517. border-radius: 2px;
  518. font-weight: bold;
  519. font-size: .8rem;
  520. line-height: 1rem;
  521. text-align: center;
  522. @at-root .theme--dark & {
  523. background-color: mc('grey', '900');
  524. border-color: mc('grey', '700');
  525. }
  526. }
  527. &[checked] + label::before {
  528. content: '';
  529. }
  530. }
  531. .contains-task-list {
  532. padding: .5rem 0 0 1.5rem;
  533. }
  534. }
  535. // ---------------------------------
  536. // TABLES
  537. // ---------------------------------
  538. table {
  539. margin: .5rem 1.75rem;
  540. border-spacing: 0;
  541. th {
  542. padding: .75rem;
  543. border-bottom: 2px solid mc('grey', '500');
  544. color: mc('grey', '600');
  545. }
  546. td {
  547. padding: .75rem;
  548. }
  549. tr {
  550. td {
  551. border-bottom: 1px solid mc('grey', '200');
  552. }
  553. }
  554. }
  555. figure.table {
  556. margin: 0;
  557. > table {
  558. background-color: #FFF;
  559. margin: 0;
  560. border-collapse: collapse;
  561. box-shadow: 0 0 5px 0 rgba(0, 0, 0, .07);
  562. @at-root .theme--dark & {
  563. background-color: darken(mc('grey', '900'), 3%);
  564. }
  565. td, th {
  566. border: 1px solid mc('blue-grey', '100');
  567. box-shadow: inset -1px -1px 0 0 #FFF, inset 1px 0 0 #FFF;
  568. padding: .5rem .75rem;
  569. @at-root .theme--dark & {
  570. border-color: mc('grey', '700');
  571. box-shadow: inset -1px -1px 0 0 rgba(0,0,0, .5);
  572. }
  573. }
  574. th {
  575. background-color: lighten(mc('blue-grey', '50'), 1%);
  576. font-weight: 700;
  577. color: mc('blue-grey', '700');
  578. @at-root .theme--dark & {
  579. background-color: mc('grey', '800');
  580. color: mc('grey', '400');
  581. }
  582. }
  583. thead th {
  584. border-bottom: 2px solid mc('blue-grey', '100');
  585. @at-root .theme--dark & {
  586. border-bottom: none;
  587. }
  588. }
  589. tbody th {
  590. background-color: lighten(mc('blue-grey', '50'), 4%);
  591. @at-root .theme--dark & {
  592. background-color: darken(mc('grey', '800'), 8%);
  593. }
  594. }
  595. }
  596. }
  597. // ---------------------------------
  598. // IMAGES
  599. // ---------------------------------
  600. img {
  601. max-width: 100%;
  602. &.align-left {
  603. float: left;
  604. margin: 0 1rem 1rem 0;
  605. }
  606. &.align-right {
  607. float: right;
  608. margin: 0 0 1rem 1rem;
  609. z-index: 1;
  610. position: relative;
  611. }
  612. &.align-center {
  613. display: block;
  614. max-width: 100%;
  615. margin: auto;
  616. }
  617. &.align-abstopright {
  618. position: absolute;
  619. top: -90px;
  620. right: 1rem;
  621. height: calc(90px - 32px);
  622. width: auto;
  623. @at-root .is-rtl & {
  624. left: 1rem;
  625. right: initial;
  626. }
  627. }
  628. &.decor-shadow {
  629. box-shadow: 0 3px 8px 0 rgba(116, 129, 141, 0.1);
  630. }
  631. &.decor-outline {
  632. border: 1px solid mc('grey', '400');
  633. }
  634. &.uml-diagram {
  635. margin: 1rem 0;
  636. }
  637. }
  638. figure.image {
  639. margin: 1rem 0 0 0;
  640. img {
  641. margin: 0 auto;
  642. }
  643. figcaption {
  644. padding: 4px 1rem;
  645. text-align: center;
  646. font-size: 12px;
  647. color: mc('grey', '700');
  648. background-color: mc('grey', '100');
  649. @at-root .theme--dark & {
  650. color: mc('grey', '400');
  651. background-color: mc('grey', '800');
  652. }
  653. }
  654. }
  655. figure.image-style-align-right {
  656. float: right;
  657. }
  658. figure.image-style-align-left {
  659. float: left;
  660. }
  661. // ---------------------------------
  662. // DETAILS
  663. // ---------------------------------
  664. details {
  665. background-color: mc('grey', '50');
  666. margin: 1rem 2rem;
  667. border: 1px solid mc('grey', '300');
  668. border-radius: 7px;
  669. > p {
  670. padding-left: 0;
  671. }
  672. summary {
  673. border-radius: 7px;
  674. background-color: mc('grey', '50');
  675. cursor: pointer;
  676. height: 40px;
  677. display: flex;
  678. align-items: center;
  679. padding: 0 1rem;
  680. transition: background-color .4s ease;
  681. &:focus {
  682. outline: none;
  683. background-color: mc('grey', '100');
  684. }
  685. }
  686. &[open] {
  687. padding: 1rem;
  688. summary {
  689. background-color: mc('grey', '100');
  690. border-bottom: 1px solid mc('grey', '300');
  691. border-bottom-left-radius: 0;
  692. border-bottom-right-radius: 0;
  693. margin: -1rem -1rem 1rem -1rem;
  694. }
  695. }
  696. @at-root .theme--dark & {
  697. background-color: mc('grey', '900');
  698. border-color: mc('grey', '700');
  699. summary {
  700. background-color: mc('grey', '900');
  701. border-color: mc('grey', '700');
  702. }
  703. &[open] summary {
  704. background-color: lighten(mc('grey', '900'), 5%);
  705. }
  706. }
  707. }
  708. // ---------------------------------
  709. // HIGHLIGHTING
  710. // ---------------------------------
  711. mark {
  712. &.pen-red {
  713. color: mc('red', '500');
  714. background-color: initial;
  715. }
  716. &.pen-green {
  717. color: mc('green', '500');
  718. background-color: initial;
  719. }
  720. &.marker-blue {
  721. background-color: mc('blue', '300');
  722. }
  723. &.marker-yellow {
  724. background-color: mc('yellow', '300');
  725. }
  726. &.marker-pink {
  727. background-color: mc('pink', '300');
  728. }
  729. &.marker-green {
  730. background-color: mc('green', '300');
  731. }
  732. }
  733. .mention {
  734. background-color: rgba(153, 0, 48, .1);
  735. color: #990030;
  736. @at-root .theme--dark & {
  737. color: mc('pink', '500');
  738. }
  739. }
  740. }
  741. // ---------------------------------
  742. // COMMENTS
  743. // ---------------------------------
  744. .comments {
  745. &-container {
  746. border-radius: 7px;
  747. }
  748. &-header {
  749. color: #FFF;
  750. padding: 8px 20px;
  751. font-size: 16px;
  752. font-weight: 500;
  753. background-color: mc('blue-grey', '500');
  754. border-radius: 7px 7px 0 0;
  755. @at-root .theme--dark & {
  756. background-color: lighten(mc('blue-grey', '900'), 5%);
  757. }
  758. }
  759. &-main {
  760. background-color: mc('blue-grey', '50');
  761. border-radius: 0 0 7px 7px;
  762. padding: 20px;
  763. @at-root .theme--dark & {
  764. background-color: darken(mc('grey', '900'), 5%);
  765. }
  766. }
  767. }
  768. // ---------------
  769. // RTL FIXES
  770. // Vuetify GH Issue: https://github.com/vuetifyjs/vuetify/issues/6317
  771. // ---------------
  772. .is-rtl {
  773. .page-col-content.is-page-header {
  774. @each $size, $width in $grid-breakpoints {
  775. @media (min-width: $width) {
  776. @for $n from 0 through 12 {
  777. &.offset-#{$size}-#{$n} {
  778. margin-left: 0;
  779. margin-right: ($n / 12 * 100) * 1%;
  780. }
  781. }
  782. }
  783. }
  784. }
  785. }
  786. // ---------------
  787. // PRINT OVERRIDES
  788. // ---------------
  789. @media print {
  790. .nav-header,
  791. .v-navigation-drawer,
  792. .v-btn--fab,
  793. .page-col-sd,
  794. .v-tooltip__content
  795. {
  796. display: none !important;
  797. }
  798. .layout {
  799. display: block !important;
  800. }
  801. .page-col-content {
  802. flex-basis: 100% !important;
  803. flex-grow: 1 !important;
  804. max-width: 100% !important;
  805. margin-left: 0 !important;
  806. > .v-toolbar {
  807. border: 1px solid mc('grey', '300') !important;
  808. border-radius: 7px !important;
  809. & + .v-divider {
  810. display: none !important;
  811. }
  812. }
  813. }
  814. .v-main {
  815. padding: 0 !important;
  816. font-size: 14px;
  817. background-color: #FFF;
  818. }
  819. .v-main .contents {
  820. color: #000;
  821. background-color: #FFF;
  822. @at-root .theme--dark & {
  823. color: #000;
  824. }
  825. .prismjs{
  826. box-shadow: none;
  827. background-color: #FFF;
  828. @at-root .theme--dark & {
  829. background-color: #FFF;
  830. }
  831. > code {
  832. color: #000;
  833. box-shadow: none;
  834. text-shadow: none;
  835. }
  836. }
  837. }
  838. .comments-container {
  839. display: none;
  840. }
  841. }