app.scss 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827
  1. /* THEME SPECIFIC STYLES */
  2. .v-content .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: '\F3CC';
  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. text-align: justify;
  171. @at-root .contents > div > p:first-child {
  172. padding-top: 0;
  173. }
  174. @at-root .v-application & {
  175. margin-bottom: 0;
  176. }
  177. }
  178. hr {
  179. margin: 1rem 0;
  180. height: 1px;
  181. border: none;
  182. background-color: mc('grey', '400');
  183. @at-root .theme--dark & {
  184. background-color: mc('grey', '700');
  185. }
  186. }
  187. .emoji {
  188. height: 1.25em;
  189. margin: 0 1px -4px;
  190. }
  191. blockquote {
  192. padding: 0 1rem 1rem 1rem;
  193. border-left: 5px solid mc('blue', '500');
  194. border-radius: .5rem;
  195. margin: 1rem 0;
  196. > p:first-child .emoji {
  197. margin-right: .5rem;
  198. }
  199. &.valign-center > p {
  200. display: flex;
  201. align-items: center;
  202. }
  203. &.is-info {
  204. background-color: mc('blue', '50');
  205. border-color: mc('blue', '300');
  206. color: mc('blue', '900');
  207. code {
  208. background-color: mc('blue', '50');
  209. color: mc('blue', '800');
  210. }
  211. @at-root .theme--dark & {
  212. background-color: mc('blue', '900');
  213. color: mc('blue', '50');
  214. border-color: mc('blue', '500');
  215. }
  216. }
  217. &.is-warning {
  218. background-color: mc('orange', '50');
  219. border-color: mc('orange', '300');
  220. color: darken(mc('orange', '900'), 10%);
  221. code {
  222. background-color: mc('orange', '50');
  223. color: mc('orange', '800');
  224. }
  225. @at-root .theme--dark & {
  226. background-color: darken(mc('orange', '900'), 5%);
  227. color: mc('orange', '100');
  228. border-color: mc('orange', '500');
  229. box-shadow: 0 0 2px 0 mc('grey', '900');
  230. }
  231. }
  232. &.is-danger {
  233. background-color: mc('red', '50');
  234. border-color: mc('red', '300');
  235. color: mc('red', '900');
  236. code {
  237. background-color: mc('red', '50');
  238. color: mc('red', '800');
  239. }
  240. @at-root .theme--dark & {
  241. background-color: mc('red', '900');
  242. color: mc('red', '100');
  243. border-color: mc('red', '500');
  244. }
  245. }
  246. &.is-success {
  247. background-color: mc('green', '50');
  248. border-color: mc('green', '300');
  249. color: mc('green', '900');
  250. code {
  251. background-color: mc('green', '50');
  252. color: mc('green', '800');
  253. }
  254. @at-root .theme--dark & {
  255. background-color: mc('green', '900');
  256. color: mc('green', '50');
  257. border-color: mc('green', '500');
  258. }
  259. }
  260. }
  261. // ---------------------------------
  262. // LISTS
  263. // ---------------------------------
  264. ol, ul {
  265. padding: 1rem 0 0 1rem;
  266. list-style-position: outside;
  267. @at-root .is-rtl & {
  268. padding-left: 0;
  269. padding-right: 1rem;
  270. }
  271. li > ul, li > ol {
  272. padding-top: .5rem;
  273. padding-left: 1rem;
  274. @at-root .is-rtl & {
  275. padding-left: 0;
  276. padding-right: 1rem;
  277. }
  278. }
  279. li + li {
  280. margin-top: .5rem;
  281. }
  282. &.links-list {
  283. padding-left: 0;
  284. list-style-type: none;
  285. @at-root .is-rtl & {
  286. padding-right: 0;
  287. }
  288. li {
  289. background-color: mc('grey', '50');
  290. background-image: linear-gradient(to bottom, #FFF, mc('grey', '50'));
  291. border-right: 1px solid mc('grey', '200');
  292. border-bottom: 1px solid mc('grey', '200');
  293. border-left: 5px solid mc('grey', '300');
  294. box-shadow: 0 3px 8px 0 rgba(116, 129, 141, 0.1);
  295. padding: 1rem;
  296. border-radius: 5px;
  297. font-weight: 500;
  298. @at-root .is-rtl & {
  299. border-left-width: 1px;
  300. border-right-width: 5px;
  301. }
  302. &:hover {
  303. background-image: linear-gradient(to bottom, #FFF, lighten(mc('blue', '50'), 4%));
  304. border-left-color: mc('blue', '500');
  305. cursor: pointer;
  306. @at-root .is-rtl & {
  307. border-left-color: mc('grey', '200');
  308. border-right-width: mc('blue', '500');
  309. }
  310. }
  311. &::before {
  312. content: '';
  313. display: none;
  314. }
  315. > a {
  316. display: block;
  317. text-decoration: none;
  318. margin: -1rem;
  319. padding: 1rem;
  320. > em {
  321. font-weight: 400;
  322. font-style: normal;
  323. color: mc('grey', '700');
  324. display: inline-block;
  325. padding-left: .5rem;
  326. border-left: 1px solid mc('grey', '300');
  327. margin-left: .5rem;
  328. &.is-block {
  329. display: block;
  330. padding-left: 0;
  331. margin-left: 0;
  332. border-left: none;
  333. }
  334. }
  335. }
  336. > em {
  337. font-weight: 400;
  338. font-style: normal;
  339. }
  340. @at-root .theme--dark & {
  341. background-color: mc('grey', '50');
  342. background-image: linear-gradient(to bottom, lighten(mc('grey', '900'), 5%), mc('grey', '900'));
  343. border-right: 1px solid mc('grey', '900');
  344. border-bottom: 1px solid mc('grey', '900');
  345. border-left: 5px solid mc('grey', '700');
  346. box-shadow: 0 3px 8px 0 rgba(0, 0, 0, 0.1);
  347. @at-root .theme--dark.is-rtl & {
  348. border-left-width: 1px;
  349. border-right-width: 5px;
  350. }
  351. &:hover {
  352. background-image: linear-gradient(to bottom, lighten(mc('grey', '900'), 2%), darken(mc('grey', '900'), 3%));
  353. border-left-color: mc('indigo', '300');
  354. cursor: pointer;
  355. @at-root .theme--dark.is-rtl & {
  356. border-left-color: mc('grey', '900');
  357. border-right-width: mc('indigo', '300');
  358. }
  359. }
  360. }
  361. }
  362. }
  363. &.grid-list {
  364. margin: 1rem 0 0 0;
  365. background-color: #FFF;
  366. border: 1px solid mc('grey', '200');
  367. padding: 1px;
  368. display: inline-block;
  369. list-style-type: none;
  370. @at-root .theme--dark & {
  371. background-color: #000;
  372. border: 1px solid mc('grey', '800');
  373. }
  374. li {
  375. background-color: mc('grey', '50');
  376. padding: .6rem 1rem;
  377. display: block;
  378. &:nth-child(odd) {
  379. background-color: mc('grey', '100');
  380. }
  381. & + li {
  382. margin-top: 0;
  383. }
  384. &::before {
  385. content: '';
  386. display: none;
  387. }
  388. @at-root .theme--dark & {
  389. background-color: mc('grey', '900');
  390. &:nth-child(odd) {
  391. background-color: darken(mc('grey', '900'), 5%);
  392. }
  393. }
  394. }
  395. }
  396. }
  397. ul {
  398. list-style: square outside;
  399. }
  400. // ---------------------------------
  401. // CODE
  402. // ---------------------------------
  403. code {
  404. background-color: mc('indigo', '50');
  405. padding: 0 5px;
  406. color: mc('indigo', '800');
  407. font-family: 'Roboto Mono', monospace;
  408. font-weight: normal;
  409. font-size: 1rem;
  410. box-shadow: none;
  411. &::before, &::after {
  412. display: none;
  413. }
  414. @at-root .theme--dark & {
  415. background-color: darken(mc('grey', '900'), 5%);
  416. color: mc('indigo', '100');
  417. }
  418. }
  419. .prismjs{
  420. border: none;
  421. border-radius: 5px;
  422. box-shadow: initial;
  423. background-color: mc('grey', '900');
  424. padding: 1rem 1rem 1rem 3rem;
  425. margin: 1rem 0;
  426. @at-root .theme--dark & {
  427. background-color: darken(mc('grey', '900'), 5%);
  428. }
  429. > code {
  430. background-color: transparent;
  431. padding: 0;
  432. color: #FFF;
  433. box-shadow: initial;
  434. display: block;
  435. font-size: .85rem;
  436. font-family: 'Roboto Mono', monospace;
  437. &:after, &:before {
  438. content: initial;
  439. letter-spacing: initial;
  440. }
  441. }
  442. }
  443. // ---------------------------------
  444. // TASK LISTS
  445. // ---------------------------------
  446. .task-list-item {
  447. position: relative;
  448. list-style-type: none;
  449. &-checkbox[disabled] {
  450. display: none;
  451. & + label {
  452. padding-left: 1.5rem;
  453. }
  454. & + label::before {
  455. position: absolute;
  456. left: 0;
  457. top: 2px;
  458. content: ' ';
  459. display: block;
  460. width: 1.1rem;
  461. height: 1.1rem;
  462. background-color: #FFF;
  463. border: 1px solid mc('grey', '400');
  464. border-radius: 2px;
  465. font-weight: bold;
  466. font-size: .8rem;
  467. line-height: 1rem;
  468. text-align: center;
  469. @at-root .theme--dark & {
  470. background-color: mc('grey', '900');
  471. border-color: mc('grey', '700');
  472. }
  473. }
  474. &[checked] + label::before {
  475. content: '✓';
  476. }
  477. }
  478. .contains-task-list {
  479. padding: .5rem 0 0 1.5rem;
  480. }
  481. }
  482. // ---------------------------------
  483. // TABLES
  484. // ---------------------------------
  485. table {
  486. margin: .5rem 1.75rem;
  487. border-spacing: 0;
  488. th {
  489. padding: .75rem;
  490. border-bottom: 2px solid mc('grey', '500');
  491. color: mc('grey', '600');
  492. }
  493. td {
  494. padding: .75rem;
  495. }
  496. tr {
  497. td {
  498. border-bottom: 1px solid mc('grey', '200');
  499. }
  500. }
  501. }
  502. // ---------------------------------
  503. // IMAGES
  504. // ---------------------------------
  505. img {
  506. max-width: 100%;
  507. &.align-left {
  508. float: left;
  509. margin: 0 1rem 1rem 0;
  510. }
  511. &.align-right {
  512. float: right;
  513. margin: 0 0 1rem 1rem;
  514. }
  515. &.align-center {
  516. display: block;
  517. max-width: 100%;
  518. margin: auto;
  519. }
  520. &.align-abstopright {
  521. position: absolute;
  522. top: -90px;
  523. right: 1rem;
  524. height: calc(90px - 32px);
  525. width: auto;
  526. }
  527. &.decor-shadow {
  528. box-shadow: 0 3px 8px 0 rgba(116, 129, 141, 0.1);
  529. }
  530. &.decor-outline {
  531. border: 1px solid mc('grey', '400');
  532. }
  533. &.uml-diagram {
  534. margin: 1rem 0;
  535. }
  536. }
  537. figure.image {
  538. margin: 1rem 0 0 0;
  539. img {
  540. margin: 0 auto;
  541. }
  542. figcaption {
  543. padding: 4px 1rem;
  544. text-align: center;
  545. font-size: 12px;
  546. color: mc('grey', '700');
  547. background-color: mc('grey', '100');
  548. @at-root .theme--dark & {
  549. color: mc('grey', '400');
  550. background-color: mc('grey', '800');
  551. }
  552. }
  553. }
  554. // ---------------------------------
  555. // DETAILS
  556. // ---------------------------------
  557. details {
  558. background-color: mc('grey', '50');
  559. margin: 1rem 2rem;
  560. border: 1px solid mc('grey', '300');
  561. border-radius: 7px;
  562. > p {
  563. padding-left: 0;
  564. }
  565. summary {
  566. border-radius: 7px;
  567. background-color: mc('grey', '50');
  568. cursor: pointer;
  569. height: 40px;
  570. display: flex;
  571. align-items: center;
  572. padding: 0 1rem;
  573. transition: background-color .4s ease;
  574. &:focus {
  575. outline: none;
  576. background-color: mc('grey', '100');
  577. }
  578. }
  579. &[open] {
  580. padding: 1rem;
  581. summary {
  582. background-color: mc('grey', '100');
  583. border-bottom: 1px solid mc('grey', '300');
  584. border-bottom-left-radius: 0;
  585. border-bottom-right-radius: 0;
  586. margin: -1rem -1rem 1rem -1rem;
  587. }
  588. }
  589. @at-root .theme--dark & {
  590. background-color: mc('grey', '900');
  591. border-color: mc('grey', '700');
  592. summary {
  593. background-color: mc('grey', '900');
  594. border-color: mc('grey', '700');
  595. }
  596. &[open] summary {
  597. background-color: lighten(mc('grey', '900'), 5%);
  598. }
  599. }
  600. }
  601. // ---------------------------------
  602. // HIGHLIGHTING
  603. // ---------------------------------
  604. mark {
  605. &.pen-red {
  606. color: mc('red', '500');
  607. background-color: initial;
  608. }
  609. &.pen-green {
  610. color: mc('green', '500');
  611. background-color: initial;
  612. }
  613. &.marker-blue {
  614. background-color: mc('blue', '300');
  615. }
  616. &.marker-yellow {
  617. background-color: mc('yellow', '300');
  618. }
  619. &.marker-pink {
  620. background-color: mc('pink', '300');
  621. }
  622. &.marker-green {
  623. background-color: mc('green', '300');
  624. }
  625. }
  626. }
  627. // ---------------
  628. // RTL FIXES
  629. // Vuetify GH Issue: https://github.com/vuetifyjs/vuetify/issues/6317
  630. // ---------------
  631. .is-rtl {
  632. .page-col-content.is-page-header {
  633. @each $size, $width in $grid-breakpoints {
  634. @media (min-width: $width) {
  635. @for $n from 0 through 12 {
  636. &.offset-#{$size}-#{$n} {
  637. margin-left: 0;
  638. margin-right: ($n / 12 * 100) * 1%;
  639. }
  640. }
  641. }
  642. }
  643. }
  644. }
  645. // ---------------
  646. // PRINT OVERRIDES
  647. // ---------------
  648. @media print {
  649. .nav-header,
  650. .v-navigation-drawer,
  651. .v-footer,
  652. .v-btn--fab,
  653. .page-col-sd,
  654. .v-tooltip__content
  655. {
  656. display: none !important;
  657. }
  658. .page-col-content {
  659. flex-basis: 100% !important;
  660. flex-grow: 1 !important;
  661. max-width: 100% !important;
  662. margin-left: 0 !important;
  663. > .v-toolbar {
  664. border: 1px solid mc('grey', '300') !important;
  665. border-radius: 7px !important;
  666. & + .v-divider {
  667. display: none !important;
  668. }
  669. }
  670. }
  671. .v-content {
  672. padding: 0 !important;
  673. font-size: 14px;
  674. background-color: #FFF;
  675. }
  676. .v-content .contents {
  677. color: #000;
  678. background-color: #FFF;
  679. @at-root .theme--dark & {
  680. color: #000;
  681. }
  682. .prismjs{
  683. box-shadow: none;
  684. background-color: #FFF;
  685. @at-root .theme--dark & {
  686. background-color: #FFF;
  687. }
  688. > code {
  689. color: #000;
  690. box-shadow: none;
  691. text-shadow: none;
  692. }
  693. }
  694. }
  695. }