app.scss 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744
  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 .application--is-rtl & {
  86. background: linear-gradient(to left, mc('theme', 'primary'), rgba(mc('theme', 'primary'), 0));
  87. }
  88. @at-root .theme--dark.application--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 .application--is-rtl & {
  112. background: linear-gradient(to left, mc('grey', '700'), rgba(mc('grey', '700'), 0));
  113. }
  114. @at-root .theme--dark.application--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 0 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 0;
  266. list-style-position: inside;
  267. li + li {
  268. margin-top: .5rem;
  269. }
  270. &.links-list {
  271. li {
  272. background-color: mc('grey', '50');
  273. background-image: linear-gradient(to bottom, #FFF, mc('grey', '50'));
  274. border-right: 1px solid mc('grey', '200');
  275. border-bottom: 1px solid mc('grey', '200');
  276. border-left: 5px solid mc('grey', '300');
  277. box-shadow: 0 3px 8px 0 rgba(116, 129, 141, 0.1);
  278. padding: 1rem;
  279. border-radius: 5px;
  280. font-weight: 500;
  281. &:hover {
  282. background-image: linear-gradient(to bottom, #FFF, lighten(mc('blue', '50'), 4%));
  283. border-left-color: mc('blue', '500');
  284. cursor: pointer;
  285. }
  286. &::before {
  287. content: '';
  288. display: none;
  289. }
  290. > a {
  291. display: block;
  292. text-decoration: none;
  293. margin: -1rem;
  294. padding: 1rem;
  295. > em {
  296. font-weight: 400;
  297. font-style: normal;
  298. color: mc('grey', '700');
  299. display: inline-block;
  300. padding-left: .5rem;
  301. border-left: 1px solid mc('grey', '300');
  302. margin-left: .5rem;
  303. &.is-block {
  304. display: block;
  305. padding-left: 0;
  306. margin-left: 0;
  307. border-left: none;
  308. }
  309. }
  310. }
  311. > em {
  312. font-weight: 400;
  313. font-style: normal;
  314. }
  315. @at-root .theme--dark & {
  316. background-color: mc('grey', '50');
  317. background-image: linear-gradient(to bottom, lighten(mc('grey', '900'), 5%), mc('grey', '900'));
  318. border-right: 1px solid mc('grey', '900');
  319. border-bottom: 1px solid mc('grey', '900');
  320. border-left: 5px solid mc('grey', '700');
  321. box-shadow: 0 3px 8px 0 rgba(0, 0, 0, 0.1);
  322. &:hover {
  323. background-image: linear-gradient(to bottom, lighten(mc('grey', '900'), 2%), darken(mc('grey', '900'), 3%));
  324. border-left-color: mc('indigo', '300');
  325. cursor: pointer;
  326. }
  327. }
  328. }
  329. }
  330. &.grid-list {
  331. margin: 1rem 0 0 0;
  332. background-color: #FFF;
  333. border: 1px solid mc('grey', '200');
  334. padding: 1px;
  335. display: inline-block;
  336. @at-root .theme--dark & {
  337. background-color: #000;
  338. border: 1px solid mc('grey', '800');
  339. }
  340. li {
  341. background-color: mc('grey', '50');
  342. padding: .6rem 1rem;
  343. display: block;
  344. &:nth-child(odd) {
  345. background-color: mc('grey', '100');
  346. }
  347. & + li {
  348. margin-top: 0;
  349. }
  350. &::before {
  351. content: '';
  352. display: none;
  353. }
  354. @at-root .theme--dark & {
  355. background-color: mc('grey', '900');
  356. &:nth-child(odd) {
  357. background-color: darken(mc('grey', '900'), 5%);
  358. }
  359. }
  360. }
  361. }
  362. }
  363. ul {
  364. list-style: none;
  365. > li::before {
  366. content: '\25b8';
  367. color: mc('grey', '600');
  368. display: inline-block;
  369. width: 1.35rem;
  370. }
  371. }
  372. // ---------------------------------
  373. // CODE
  374. // ---------------------------------
  375. code {
  376. background-color: mc('indigo', '50');
  377. padding: 0 5px;
  378. color: mc('indigo', '800');
  379. font-family: 'Roboto Mono', monospace;
  380. font-weight: normal;
  381. font-size: 1rem;
  382. box-shadow: none;
  383. &::before, &::after {
  384. display: none;
  385. }
  386. @at-root .theme--dark & {
  387. background-color: darken(mc('grey', '900'), 5%);
  388. color: mc('indigo', '100');
  389. }
  390. }
  391. .prismjs{
  392. border: none;
  393. border-radius: 5px;
  394. box-shadow: initial;
  395. background-color: mc('grey', '900');
  396. padding: 1rem 1rem 1rem 3rem;
  397. margin: 1rem 0;
  398. @at-root .theme--dark & {
  399. background-color: darken(mc('grey', '900'), 5%);
  400. }
  401. > code {
  402. background-color: transparent;
  403. padding: 0;
  404. color: #FFF;
  405. box-shadow: initial;
  406. display: block;
  407. font-size: .85rem;
  408. font-family: 'Roboto Mono', monospace;
  409. &:after, &:before {
  410. content: initial;
  411. letter-spacing: initial;
  412. }
  413. }
  414. }
  415. // ---------------------------------
  416. // TASK LISTS
  417. // ---------------------------------
  418. .task-list-item {
  419. position: relative;
  420. list-style-type: none;
  421. &-checkbox[disabled] {
  422. display: none;
  423. & + label {
  424. padding-left: 1.5rem;
  425. }
  426. & + label::before {
  427. position: absolute;
  428. left: 0;
  429. top: 2px;
  430. content: ' ';
  431. display: block;
  432. width: 1.1rem;
  433. height: 1.1rem;
  434. background-color: #FFF;
  435. border: 1px solid mc('grey', '400');
  436. border-radius: 2px;
  437. font-weight: bold;
  438. font-size: .8rem;
  439. line-height: 1rem;
  440. text-align: center;
  441. @at-root .theme--dark & {
  442. background-color: mc('grey', '900');
  443. border-color: mc('grey', '700');
  444. }
  445. }
  446. &[checked] + label::before {
  447. content: '✓';
  448. }
  449. }
  450. .contains-task-list {
  451. padding: .5rem 0 0 1.5rem;
  452. }
  453. }
  454. // ---------------------------------
  455. // TABLES
  456. // ---------------------------------
  457. table {
  458. margin: .5rem 1.75rem;
  459. border-spacing: 0;
  460. th {
  461. padding: .75rem;
  462. border-bottom: 2px solid mc('grey', '500');
  463. color: mc('grey', '600');
  464. }
  465. td {
  466. padding: .75rem;
  467. }
  468. tr {
  469. td {
  470. border-bottom: 1px solid mc('grey', '200');
  471. }
  472. }
  473. }
  474. // ---------------------------------
  475. // IMAGES
  476. // ---------------------------------
  477. img {
  478. max-width: 100%;
  479. &.align-left {
  480. float: left;
  481. margin: 0 1rem 1rem 0;
  482. }
  483. &.align-right {
  484. float: right;
  485. margin: 0 0 1rem 1rem;
  486. }
  487. &.align-center {
  488. display: block;
  489. max-width: 100%;
  490. margin: auto;
  491. }
  492. &.align-abstopright {
  493. position: absolute;
  494. top: -90px;
  495. right: 1rem;
  496. height: calc(90px - 32px);
  497. width: auto;
  498. }
  499. &.decor-shadow {
  500. box-shadow: 0 3px 8px 0 rgba(116, 129, 141, 0.1);
  501. }
  502. &.decor-outline {
  503. border: 1px solid mc('grey', '400');
  504. }
  505. &.uml-diagram {
  506. margin: 1rem 0;
  507. }
  508. }
  509. figure.image {
  510. margin: 1rem 0 0 0;
  511. img {
  512. margin: 0 auto;
  513. }
  514. figcaption {
  515. padding: 4px 1rem;
  516. text-align: center;
  517. font-size: 12px;
  518. color: mc('grey', '700');
  519. background-color: mc('grey', '100');
  520. @at-root .theme--dark & {
  521. color: mc('grey', '400');
  522. background-color: mc('grey', '800');
  523. }
  524. }
  525. }
  526. // ---------------------------------
  527. // DETAILS
  528. // ---------------------------------
  529. details {
  530. background-color: mc('grey', '50');
  531. margin: 1rem 2rem;
  532. border: 1px solid mc('grey', '300');
  533. border-radius: 7px;
  534. > p {
  535. padding-left: 0;
  536. }
  537. summary {
  538. border-radius: 7px;
  539. background-color: mc('grey', '50');
  540. cursor: pointer;
  541. height: 40px;
  542. display: flex;
  543. align-items: center;
  544. padding: 0 1rem;
  545. transition: background-color .4s ease;
  546. &:focus {
  547. outline: none;
  548. background-color: mc('grey', '100');
  549. }
  550. }
  551. &[open] {
  552. padding: 1rem;
  553. summary {
  554. background-color: mc('grey', '100');
  555. border-bottom: 1px solid mc('grey', '300');
  556. border-bottom-left-radius: 0;
  557. border-bottom-right-radius: 0;
  558. margin: -1rem -1rem 1rem -1rem;
  559. }
  560. }
  561. @at-root .theme--dark & {
  562. background-color: mc('grey', '900');
  563. border-color: mc('grey', '700');
  564. summary {
  565. background-color: mc('grey', '900');
  566. border-color: mc('grey', '700');
  567. }
  568. &[open] summary {
  569. background-color: lighten(mc('grey', '900'), 5%);
  570. }
  571. }
  572. }
  573. }
  574. // ---------------
  575. // PRINT OVERRIDES
  576. // ---------------
  577. @media print {
  578. .nav-header,
  579. .v-navigation-drawer,
  580. .v-footer,
  581. .v-btn--fab,
  582. .page-col-sd,
  583. .v-tooltip__content
  584. {
  585. display: none !important;
  586. }
  587. .page-col-content {
  588. flex-basis: 100% !important;
  589. flex-grow: 1 !important;
  590. max-width: 100% !important;
  591. margin-left: 0 !important;
  592. > .v-toolbar {
  593. border: 1px solid mc('grey', '300') !important;
  594. border-radius: 7px !important;
  595. & + .v-divider {
  596. display: none !important;
  597. }
  598. }
  599. }
  600. .v-content {
  601. padding: 0 !important;
  602. font-size: 14px;
  603. background-color: #FFF;
  604. }
  605. .v-content .contents {
  606. color: #000;
  607. background-color: #FFF;
  608. @at-root .theme--dark & {
  609. color: #000;
  610. }
  611. .prismjs{
  612. box-shadow: none;
  613. background-color: #FFF;
  614. @at-root .theme--dark & {
  615. background-color: #FFF;
  616. }
  617. > code {
  618. color: #000;
  619. box-shadow: none;
  620. text-shadow: none;
  621. }
  622. }
  623. }
  624. }