app.scss 33 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477
  1. @import './base/reset';
  2. @import './base/variables';
  3. @import './base/colors';
  4. @import './base/grid-flex';
  5. @import './base/transitions';
  6. @import './base/layout';
  7. @import './base/fonts';
  8. // your-app.scss
  9. // @import '~@sweetalert2/themes/dark/dark.scss';
  10. /* The emerging W3C standard
  11. that is currently Firefox-only */
  12. * {
  13. scrollbar-width: thin;
  14. scrollbar-color: $grisclair rgba(255,255,255,0);
  15. }
  16. /* Works on Chrome/Edge/Safari */
  17. *::-webkit-scrollbar {
  18. width: 12px;
  19. }
  20. *::-webkit-scrollbar-track {
  21. background: rgba(255,255,255,0);
  22. }
  23. *::-webkit-scrollbar-thumb {
  24. background-color: $grisclair;
  25. border-radius: 20px;
  26. border: none;
  27. }
  28. body{
  29. color: #1a1a1a;
  30. // background-image: url('/static/img/grille-ligne-de-base.png');
  31. // background-repeat: repeat;
  32. }
  33. #root{
  34. }
  35. .red{
  36. background-color: red;
  37. color:white;
  38. }
  39. header[role="banner"]{
  40. div.wrapper{
  41. display: grid;
  42. grid-template-columns: 1fr 1fr;
  43. }
  44. h1.site-title{
  45. grid-column: 1;
  46. margin:0;
  47. font-size: 1em;
  48. }
  49. nav#header-menu{
  50. grid-column: 2;
  51. text-align: right;
  52. >ul>li{
  53. display: inline-block;
  54. margin-right: 1em;
  55. position: relative;
  56. >ul{
  57. position: absolute;
  58. top:1em; right:-1em;
  59. overflow: hidden;
  60. padding-bottom: 0.5em;
  61. background-color: white;
  62. >li{
  63. padding:0 1em;
  64. // margin-right: -1em;
  65. transition: height 0.3s ease-in-out;
  66. height:0;
  67. overflow: hidden;
  68. }
  69. }
  70. //
  71. // &:focus-within
  72. // &:hover,
  73. &.opened{
  74. >ul>li{
  75. height:1em;
  76. }
  77. }
  78. &.has-submenu{
  79. cursor: pointer;
  80. }
  81. }
  82. li>span,li>a{
  83. font-size: 0.9em;
  84. color: $bleuroi;
  85. text-transform: uppercase;
  86. }
  87. }
  88. }
  89. section[role="main-content"]{
  90. #home{
  91. header{
  92. text-align: center;
  93. h1{
  94. color: $bleuroi;
  95. font-size: 8em;
  96. font-weight: 300;
  97. margin:15vh 0 0;
  98. }
  99. h2{
  100. color: $or;
  101. font-size: 2em;
  102. font-weight: 300;
  103. margin:1em 0 0;
  104. text-transform: uppercase;
  105. letter-spacing: 0.2em;
  106. sup{
  107. // line-height: 5em;
  108. vertical-align:text-top;
  109. font-size: 0.7em
  110. }
  111. }
  112. }
  113. // $filet_space:8em;
  114. // $decallage: 0.5em;
  115. section{
  116. padding-top: 8em;
  117. }
  118. @mixin teasersfilet($filet_space, $decallage){
  119. &:before, &:after{
  120. z-index: 0;
  121. content: "";
  122. position: absolute;
  123. opacity: 0.4;
  124. }
  125. &:before{
  126. border:1px solid $or;
  127. width:calc(100% + #{$filet_space*2 + $decallage*2});
  128. left:- $filet_space - $default_gap/2 -$decallage;
  129. height:calc(100% + #{$filet_space});
  130. top:- $filet_space / 2;
  131. }
  132. &:after{
  133. border:1px solid $rouge;
  134. width:calc(100% + #{$filet_space*2});
  135. left:- $filet_space - $default_gap/2;
  136. height:calc(100% + #{$filet_space + $decallage*2});
  137. top:- $filet_space / 2 - $decallage;
  138. }
  139. }
  140. div.teasers{
  141. display: flex;
  142. flex-direction: row;
  143. flex-wrap: nowrap;
  144. position: relative;
  145. padding-right: 0;
  146. article{
  147. box-sizing: border-box;
  148. flex-basis: percentage(2 / ( $default_sum - 6) );
  149. padding-right: $default_gap;
  150. @include fontsans;
  151. h1{
  152. color: $bleuroi;
  153. }
  154. p{
  155. font-size: 0.882em;
  156. line-height: 1.2;
  157. }
  158. span{
  159. color:$rouge;
  160. font-size:0.693em;
  161. }
  162. }
  163. // filets decoratif
  164. @include teasersfilet(8em, 0.5em);
  165. }
  166. // responsive
  167. @media only screen and (max-width: $small-bp), (orientation: portrait) {
  168. header{
  169. h1{
  170. font-size: 5em;
  171. margin:7vh 0 0;
  172. }
  173. h2{
  174. font-size: 1em;
  175. }
  176. }
  177. section{
  178. padding-top: 4em;
  179. }
  180. div.teasers{
  181. flex-direction: column;
  182. // filets decoratif
  183. @include teasersfilet(4em, 0.5em);
  184. }
  185. }
  186. }
  187. #list-corpus, .index{
  188. >header{
  189. &>h1{
  190. @include titleSansRed;
  191. margin: 0;
  192. }
  193. }
  194. article.item{
  195. // margin: 2em 0 0;
  196. header{
  197. margin:0;
  198. h1{
  199. margin:0;
  200. span.title{
  201. @include title1black;
  202. color: $bleuroi;
  203. }
  204. span.quantity{
  205. @include title4black;
  206. }
  207. }
  208. }
  209. }
  210. &:not(#list-corpus){
  211. ul.item-list{
  212. li{
  213. // margin: 0 0 2em 0;
  214. max-height: $base-line * 3;
  215. opacity: 1;
  216. transition: all 0.3s ease-in-out;
  217. &.hidden {
  218. // display: none;
  219. max-height: 0.01px;
  220. opacity: 0;
  221. }
  222. }
  223. }
  224. }
  225. ul.item-list{
  226. li{
  227. // margin: 0 0 2em 0;
  228. header{
  229. h2{
  230. @include title1blue;
  231. // margin:0.4em 0 0.2em;
  232. margin-bottom: $base-line / 2;
  233. }
  234. h3{
  235. margin:0;
  236. @include fontsans;
  237. font-size: 0.756em;
  238. font-weight: 500;
  239. line-height: $base-line / 2;
  240. }
  241. margin-bottom: $base-line / 2;
  242. }
  243. h4{
  244. margin:0;
  245. font-weight: 300;
  246. @include fontsans;
  247. font-size: 0.756em;
  248. line-height: $base-line / 2;
  249. &.texts-quantity{
  250. color: $rouge;
  251. // margin: 0.3em 0 0;
  252. }
  253. }
  254. section.editions{
  255. div.editions{
  256. ol{
  257. padding:0;
  258. li{
  259. margin:0.7em 1em;
  260. }
  261. }
  262. }
  263. }
  264. section.texts{
  265. ul.texts-list{
  266. padding: 0 0 0 1em;
  267. li{
  268. margin-bottom: $base-line / 2;
  269. }
  270. h3{
  271. @include title2black;
  272. // margin: 0.7em 0 0.3em;
  273. line-height: $base-line / 2;
  274. }
  275. p{
  276. font-weight: 300;
  277. @include fontsans;
  278. font-size: 0.756em;
  279. margin: 0;
  280. line-height: $base-line / 2;
  281. }
  282. }
  283. }
  284. ul {
  285. li{
  286. margin:0 0 0 1em;
  287. h3{
  288. margin: 0.5em 0;
  289. font-weight: 400;
  290. font-size: 1em;
  291. }
  292. }
  293. }
  294. }
  295. }
  296. .abc{
  297. ul{
  298. li{
  299. opacity: 1;
  300. transition: opacity 0.3s ease-in-out;
  301. padding: 3px;
  302. &.inactive{
  303. opacity: 0.4;
  304. }
  305. span{
  306. @include fontcaption;
  307. font-variant: small-caps;
  308. font-size: 1em;
  309. cursor: pointer;
  310. // line-height: $base-line / 2;
  311. border: 1px solid $grisclair;
  312. border-radius: 3px;
  313. padding: 0.3em;
  314. display: inline-block;
  315. text-align: center;
  316. }
  317. &:not(:first-of-type) span{
  318. width: 1.1em; height: 1.1em;
  319. }
  320. }
  321. }
  322. }
  323. }
  324. #corpus{
  325. }
  326. .index{
  327. }
  328. .index-item{
  329. header{
  330. h1{
  331. @include title1black;
  332. margin:0 0 0.3em;
  333. }
  334. p{
  335. margin: 0 0 0.5em 0;
  336. }
  337. h3{
  338. @include title2black;
  339. margin:0;
  340. }
  341. .authors{
  342. a{
  343. @include title2black;
  344. color: $bleuroi;
  345. }
  346. margin:0 0 0.3em;
  347. }
  348. .mdi{
  349. color: $bleuroilight;
  350. font-size: 0.7em;
  351. }
  352. .attested-forms{
  353. ul{
  354. // >li{
  355. // margin: 0 0 1em 0;
  356. // li{
  357. // margin: 0 0 0.5em 0;
  358. // }
  359. // }
  360. }
  361. a{
  362. @include title4grey;
  363. color: $grisfonce;
  364. font-weight: 400;
  365. }
  366. }
  367. }
  368. .tabs{
  369. border-bottom: 1px solid $bleuroilight;
  370. margin-bottom: $base-line / 2;
  371. .tab{
  372. cursor: pointer;
  373. border-radius: 5px 5px 0 0;
  374. z-index: 10;
  375. display: inline-block;
  376. margin-bottom: -2px;
  377. padding: 0.3em 0.5em;
  378. border: 1px solid $bleuroilight;
  379. &.active{
  380. border-bottom: 2px solid white;
  381. }
  382. }
  383. }
  384. .occurences{
  385. >ul{
  386. >li{
  387. padding:0 0 $base-line / 2 0;
  388. h3{
  389. @include title1black;
  390. padding:0 0 $base-line / 2 0;
  391. color: $bleuroi;
  392. }
  393. >ul{
  394. >li{
  395. // padding:0 0 0.5em 0;
  396. section{
  397. h4{
  398. // @include title3black;
  399. @include title4grey;
  400. color: $grisfonce;
  401. font-weight: 400;
  402. display: inline-block;
  403. a{
  404. span.form{
  405. font-style: italic;
  406. }
  407. }
  408. }
  409. // ? c'est quoi ça ?
  410. // span.open-close{
  411. // cursor: pointer;
  412. // display: inline-block;
  413. // svg{
  414. // transform: rotate(-90deg) scale(0.8);
  415. // transition: transform 0.3s ease-in-out;
  416. // path{
  417. // fill:$bleuroi;
  418. // }
  419. // }
  420. // }
  421. // div.text{
  422. // max-height: 0;
  423. // transition: max-height 0.3s ease-in-out;
  424. // overflow: hidden;
  425. // box-sizing: content-box;
  426. // p, h1, h2, h3, h4, h5, h6{
  427. // margin: 0.5em 0 0 0;
  428. // }
  429. // }
  430. // a.lire-plus{
  431. // color: $bleuroi;
  432. // opacity: 0;
  433. // display: inline-block;
  434. // height: 0;
  435. // overflow: hidden;
  436. // transition: height, opacity 0.3s ease-in-out;
  437. // }
  438. // &.opened{
  439. // span.open-close{
  440. // cursor: pointer;
  441. // display: inline-block;
  442. // svg{
  443. // transform: scale(0.8) rotate(0);
  444. // }
  445. // }
  446. // div.text{
  447. // max-height:100px;
  448. // }
  449. // a.lire-plus{
  450. // opacity: 1;
  451. // height:1em;
  452. // }
  453. // }
  454. }
  455. }
  456. }
  457. }
  458. }
  459. }
  460. .attested-forms-occurences{
  461. >ul{
  462. >li{
  463. margin: 0 0 1em 0;
  464. h3{
  465. @include title1black;
  466. padding:0 0 0 0;
  467. }
  468. li{
  469. // margin: 0 0 0.5em 0;
  470. h4{
  471. // @include title3black;
  472. @include title4grey;
  473. color: $grisfonce;
  474. font-weight: 400;
  475. display: inline-block;
  476. a{
  477. span.edition{
  478. font-style: italic;
  479. }
  480. }
  481. }
  482. }
  483. }
  484. }
  485. }
  486. nav{
  487. h3{
  488. @include title2black;
  489. margin:0 0 0.5em;
  490. }
  491. h4{
  492. @include title3black;
  493. margin:0 0 0.5em;
  494. color: $bleuroi;
  495. }
  496. }
  497. }
  498. #edition{
  499. >header{
  500. position: relative;
  501. h1{
  502. @include title1black;
  503. }
  504. aside.index-tooltip{
  505. z-index:10;
  506. margin-top: -1.75em;
  507. position:absolute;
  508. text-align: right;
  509. right: 2em;
  510. h1 {
  511. @include title2black;
  512. margin:0 0 0.5em 0;
  513. }
  514. p{
  515. margin:0 0 0.5em 0;
  516. }
  517. time{
  518. font-weight: 600;
  519. }
  520. @media only screen and (max-width: $small-bp), (orientation: portrait) {
  521. background-color: #fff;
  522. padding: 1em;
  523. box-shadow: 0 0 10px $gris;
  524. *{
  525. pointer-events: none;
  526. }
  527. }
  528. }
  529. }
  530. $pagenum_w:1em;
  531. >section{
  532. padding-right: 0;
  533. >.wrapper{
  534. padding-right: $pagenum_w*3;
  535. // outline: orange solid thin;
  536. }
  537. div#text{
  538. // .infinite-loading-container{
  539. // height:0;
  540. // overflow: hidden;
  541. // }
  542. .text-wrapper{
  543. // padding-left: 1em;
  544. position: relative;
  545. }
  546. .textrefcopylink{
  547. display: block;
  548. position: absolute;
  549. z-index: 99;
  550. span.mdi-open-in-new {
  551. position: relative;
  552. z-index: 10;
  553. margin-left: 1px;
  554. }
  555. .popup{
  556. position: absolute;
  557. top:0;
  558. left: 1px;
  559. // width: 15em;
  560. background-color: #fff;
  561. border-radius: 3px;
  562. padding: 1em 1em 1em 1.5em;
  563. box-shadow: 2px 2px 5px rgba(0,0,0,0.2);
  564. display: none;
  565. opacity: 0.1;
  566. // outline: 1px solid blue;
  567. transition: opacity 2s ease-in-out;
  568. button.copy-btn{
  569. display: block;
  570. padding: 0.5em 0.2em;
  571. @include fontcaption;
  572. white-space: nowrap;
  573. border: none;
  574. background: none;
  575. cursor: pointer;
  576. }
  577. }
  578. &:hover .popup{
  579. display: block;
  580. opacity: 1;
  581. transition: opacity 2s ease-in-out;
  582. }
  583. }
  584. div.tei{
  585. position: relative;
  586. width: calc(100% - #{$pagenum_w});
  587. // DEBUG
  588. color:chartreuse;
  589. &>*{ color: #1A1A1A;}
  590. // @media only screen and (min-width: $small-bp + 1) {
  591. padding-right: $pagenum_w;
  592. border-left: 1px dotted $grisclair;
  593. padding-left: 1em;
  594. margin-left:1.2em;
  595. overflow: visible;
  596. &.active{
  597. border-left: 1px dotted $bleuroi;
  598. }
  599. // }
  600. // front page
  601. header{
  602. padding-top: $base-line;
  603. h1{
  604. @include teititlefrontblue;
  605. .initial{
  606. display: inline-block;
  607. text-transform: uppercase;
  608. font-size: 1.3em;
  609. line-height: $base-line*2;
  610. margin: $base-line/2 0;
  611. }
  612. margin-bottom: $base-line;
  613. }
  614. }
  615. span.metamark.tailpiece,
  616. span.metamark.simpleLine{
  617. display: block;
  618. border-top: 1px solid $gris;
  619. margin: $base-line / 2 auto;
  620. }
  621. .byline{
  622. text-align: center;
  623. font-style: italic;
  624. padding-bottom: 1em;
  625. }
  626. .docImprint{
  627. text-align: center;
  628. // padding-bottom: 1em;
  629. .pubPlace{
  630. display: block;
  631. }
  632. .publisher{
  633. display: block;
  634. }
  635. .docDate{
  636. display: block;
  637. margin-top: $base-line / 2;
  638. }
  639. }
  640. .imprimatur{
  641. text-align: center;
  642. font-style: italic;
  643. padding-bottom: $base-line;
  644. }
  645. >h1{
  646. @include teititle1blue;
  647. }
  648. h1{ font-size: 1.512em;
  649. line-height: $base-line; }
  650. p{
  651. margin-top: 0;
  652. font-size: 1.134em;
  653. line-height: $base-line;
  654. margin-bottom: $base-line / 2;
  655. span.persName,
  656. span.placeName,
  657. span.objectName{
  658. font-weight: 500;
  659. }
  660. span.mdi.index-item-icon{
  661. font-size: 0.630em;
  662. vertical-align: super;
  663. }
  664. a{
  665. font-weight: 500;
  666. &.active-link{
  667. // color: $rouge;
  668. // text-decoration: underline;
  669. // line-height: $base-line/2;
  670. }
  671. // sup.mdi{
  672. // font-size: 0.630em;
  673. // vertical-align: super;
  674. // // line-height: 0.1;
  675. // padding: 0 0.2em;
  676. // }
  677. }
  678. }
  679. span[role="pageNum"]{
  680. font-size: 16px;
  681. position: relative;
  682. float:right;
  683. width: $pagenum_w; height:$base-line/4;
  684. border-bottom: 1px solid $bleuroilight;
  685. border-right: 1px solid $bleuroilight;
  686. // outline: solid red thin;
  687. // margin-left:calc(100% - #{$pagenum_w * 2});
  688. // margin-left: 100%;
  689. margin-right: - $pagenum_w * 1.5;
  690. &:before{
  691. // outline: solid green thin;
  692. content:attr(data-num);
  693. font-size: 0.630em;
  694. line-height: $base-line/3;
  695. position: absolute;
  696. right: 0;
  697. top:$base-line/2;
  698. color: $bleuroi;
  699. // top:0;
  700. // width: $pagenum_w*2; height: $pagenum_w;
  701. // border-top: 1px solid $bleuroilight;
  702. // border-right: 1px solid $bleuroilight;
  703. // text-indent: $pagenum_w * 2.5;
  704. }
  705. }
  706. a.text-item-link{
  707. // float: left;
  708. position: absolute;
  709. top:0; left:0;
  710. // display: block;
  711. // width:1em; height:1em;
  712. font-size: 0.630em;
  713. .mdi{
  714. color: $bleuroi;
  715. pointer-events: none;
  716. }
  717. }
  718. figure{
  719. // outline: 1px solid red;
  720. background-color: $grisclair;
  721. margin:1em 0;
  722. img{
  723. width: 100%;
  724. }
  725. figcaption{
  726. @include fontcaption;
  727. padding: 0.5em;
  728. }
  729. }
  730. ul{
  731. line-height: $base-line;
  732. margin-bottom: $base-line/2;
  733. }
  734. blockquote{
  735. margin: $base-line/2 1em;
  736. line-height: $base-line;
  737. p{
  738. margin: 0;
  739. }
  740. }
  741. }
  742. }
  743. }
  744. >nav{
  745. $pager_h:2em;
  746. display: flex;
  747. flex-direction: column;
  748. span.nav-title{ display:none; }
  749. section#toc{
  750. box-sizing: content-box;
  751. padding:0 0 1em 1.5em;
  752. height:calc(100% - #{$pager_h});
  753. overflow-x: hidden;
  754. overflow-y: auto;
  755. line-height: $base-line / 2;
  756. >ul{
  757. ul{
  758. li{
  759. ul{
  760. overflow: hidden;
  761. max-height: 1000px;
  762. transition: max-height 0.5s ease-in-out;
  763. // transform: scaleY(1);
  764. // transform-origin: top;
  765. // transition: transform 0.3s ease-in-out;
  766. &:not(.opened){
  767. // height:0;
  768. max-height:0;
  769. transition: max-height 0.5s cubic-bezier(0, 1.05, 0, 1);
  770. // transform: scaleY(0);
  771. }
  772. // &.opened{
  773. // border: 1px solid red;
  774. // }
  775. // padding-left: 1em;
  776. border-left: 0.5px solid $grisclair;
  777. // min-height: 1em;
  778. margin-bottom: 0em;
  779. li{
  780. // min-height: 1em;
  781. // border-left: 1px solid red;
  782. padding:0 0 0 1em;
  783. }
  784. }
  785. }
  786. }
  787. .toc-title{
  788. @include title4grey;
  789. &.active,
  790. &:hover{
  791. color:$grisfonce;
  792. font-weight: 600;
  793. }
  794. &.loaded{
  795. color:$grisfonce;
  796. }
  797. }
  798. // h2.toc-title{font-size: 0.882em;}
  799. // h3.toc-title{font-size: 0.882em;}
  800. // h4.toc-title{font-size: 0.882em;}
  801. // h5.toc-title{font-size: 0.882em;}
  802. // h6.toc-title{font-size: 0.882em;}
  803. // span.toc-title{font-size: 0.882em;}
  804. }
  805. }
  806. div#page-nav{
  807. height:$pager_h;
  808. overflow: hidden;
  809. box-sizing: content-box;
  810. padding:1em 0 0 1.5em;
  811. select{
  812. option{
  813. padding:0;
  814. }
  815. }
  816. }
  817. }
  818. // responsive
  819. @media only screen and (max-width: $small-bp), (orientation: portrait) {
  820. position: relative;
  821. >nav{
  822. $top: 45px;
  823. z-index: 2;
  824. position: absolute;
  825. top:$top;
  826. right:0;
  827. background-color: #fff;
  828. width:percentage(10/$default_sum);
  829. box-sizing: border-box;
  830. padding-top: 1em;
  831. padding-bottom: 1em;
  832. height:calc(100% - #{$top});
  833. transform: translateX(100%);
  834. transition: transform 0.3s ease-in-out;
  835. span.nav-title{
  836. display: block;
  837. position: absolute;
  838. top:4.5em; left:-1.8em;
  839. transform: rotateZ(-90deg);
  840. transform-origin: center;
  841. @include fontsans;
  842. font-size: 0.600em;
  843. cursor: pointer;
  844. color: $bleuroi;
  845. svg{
  846. vertical-align: bottom;
  847. transform-origin: center;
  848. transform: scale(0.8) rotate(180deg);
  849. transition: transform 0.3s ease-in-out;
  850. path{
  851. fill: $bleuroi;
  852. }
  853. }
  854. }
  855. &.opened{
  856. box-shadow: -3px -3px 5px $grisclair;
  857. transform: translateX(0);
  858. span.nav-title{
  859. svg{
  860. transform: scale(0.7) rotate(0);
  861. }
  862. }
  863. }
  864. }
  865. }
  866. }
  867. #biblio{
  868. .router-link-active{
  869. font-weight: 600;
  870. }
  871. ul.item-list{
  872. margin:0;
  873. padding:0;
  874. li{
  875. padding:0;
  876. margin:0 0 $base-line 0;
  877. h2{
  878. margin:0;
  879. @include title1black;
  880. }
  881. p{
  882. margin:0;
  883. }
  884. span.date{
  885. @include title2black;
  886. font-weight: 600;
  887. }
  888. aside{
  889. overflow: hidden;
  890. h5{
  891. @include title2black;
  892. margin: $base-line / 2 0;
  893. cursor: pointer;
  894. // padding-left: 1em;
  895. // position: relative;
  896. &:before{
  897. cursor: pointer;
  898. content:"\2304";
  899. position: relative;
  900. display: inline-block;
  901. top: -4px;
  902. // transform-origin: center;
  903. // transform: rotateZ(-90deg);
  904. }
  905. }
  906. ul{
  907. max-height: 1px;
  908. transition: all 0.3s ease-in-out;
  909. padding-left: 1em;
  910. li{
  911. margin-bottom: $base-line / 2;
  912. }
  913. }
  914. &.opened{
  915. h5{
  916. &:before{
  917. top: 4px;
  918. content:"\2303";
  919. // transform: rotateZ(90deg);
  920. }
  921. }
  922. ul{
  923. max-height: 100em;
  924. }
  925. }
  926. }
  927. }
  928. &.manifestations{
  929. li{
  930. max-height: 0.2px;
  931. margin-bottom:0;
  932. overflow: hidden;
  933. transition: all 1s ease-in-out;
  934. &.active{
  935. max-height: 10em;
  936. }
  937. .wrapper{
  938. margin-bottom: $base-line;
  939. }
  940. }
  941. }
  942. }
  943. ul.authors-filters{
  944. li{
  945. @include title4black;
  946. line-height: $base-line / 2;
  947. span{
  948. cursor: pointer;
  949. color: $gris;
  950. &.active{
  951. color: $grisfonce;
  952. }
  953. }
  954. }
  955. }
  956. }
  957. }
  958. footer[role="tools"]{
  959. $list-item-h: 7em;
  960. @mixin resultItem{
  961. box-sizing: border-box;
  962. // we are only on 10 colls as 2 are occupied by sides
  963. flex-basis: percentage(2/($default_sum - 2));
  964. max-height: $list-item-h;
  965. overflow: hidden;
  966. padding-bottom: 1em;
  967. padding-right: $default_gap;
  968. article{
  969. max-height: 100%;
  970. overflow: hidden;
  971. }
  972. article.item{
  973. h1{
  974. @include title3black;
  975. font-weight: 600;
  976. max-width: 95%;
  977. }
  978. h2{
  979. @include title3black;
  980. text-transform: none;
  981. }
  982. span{
  983. font-size: 0.882em;
  984. }
  985. // .preview{
  986. // font-size: 0.882em;
  987. // margin:0;
  988. // code{
  989. // @include fontserif;
  990. // background-color: lighten(desaturate($rouge,20%), 20%);
  991. // padding:0 0.2em;
  992. // }
  993. // }
  994. }
  995. }
  996. #history{
  997. z-index: 8;
  998. background-color: $or;
  999. padding:1.2em $side-padding;
  1000. max-height: $list-item-h;
  1001. @include accordeon-transition($list-item-h);
  1002. >header{
  1003. }
  1004. .history-list{
  1005. overflow-x: hidden;
  1006. .wrapper{
  1007. height:100%;
  1008. // hidding the scrollbar
  1009. overflow-y: auto;
  1010. // width:calc(100% + 1em);
  1011. padding-right: 1em;
  1012. >ul{
  1013. padding:0;
  1014. display: flex;
  1015. flex-direction: row;
  1016. flex-wrap: wrap;
  1017. }
  1018. }
  1019. li.item{
  1020. @include resultItem;
  1021. }
  1022. }
  1023. }
  1024. #results{
  1025. z-index: 9;
  1026. background-color: $gris;
  1027. padding:1.2em $side-padding;
  1028. @media only screen and (max-width: $small-bp), (orientation: portrait) {
  1029. padding:1.2em $side-padding/2;
  1030. }
  1031. max-height: $list-item-h * 3;
  1032. @include accordeon-transition($list-item-h * 3);
  1033. >header{
  1034. .search-keys{
  1035. font-size: 0.756em;
  1036. font-weight: 500;
  1037. }
  1038. .results-count{
  1039. font-size: 0.756em;
  1040. }
  1041. }
  1042. .results-list{
  1043. overflow-x: hidden;
  1044. .wrapper{
  1045. position:relative;
  1046. height:100%;
  1047. // hidding the scrollbar
  1048. overflow-y: auto;
  1049. // width:calc(100% + 1em);
  1050. padding-right: 1em;
  1051. >ul{
  1052. padding:0;
  1053. display: flex;
  1054. flex-direction: row;
  1055. flex-wrap: wrap;
  1056. }
  1057. }
  1058. li.result{
  1059. @include resultItem;
  1060. }
  1061. .infinite-loading-container{
  1062. // TODO: how to center the loading
  1063. }
  1064. }
  1065. >header, section.results-list{
  1066. transition: opacity 0.2s ease-in-out;
  1067. }
  1068. &.loading {
  1069. >header, section.results-list{
  1070. transition: opacity 0.5s ease-in-out;
  1071. opacity:0.5;
  1072. pointer-events: none;
  1073. }
  1074. }
  1075. // responsive
  1076. @media only screen and (max-width: $small-bp), (orientation: portrait) {
  1077. position: relative;
  1078. >header{
  1079. padding:0 0 1em 0;
  1080. >*{
  1081. display: inline-block;
  1082. margin-right: 1em;
  1083. }
  1084. #sorting{
  1085. width:10em;
  1086. }
  1087. }
  1088. >section.results-list{
  1089. max-height: 15em;
  1090. li.result{
  1091. flex-basis: 33%;
  1092. }
  1093. }
  1094. >nav{
  1095. position: absolute;
  1096. top:1.2em; right:1.2em;
  1097. }
  1098. }
  1099. }
  1100. #footer-bottom{
  1101. z-index: 10;
  1102. padding:0 $side-padding;
  1103. @media only screen and (max-width: $small-bp), (orientation: portrait) {
  1104. padding:0 $side-padding/2;
  1105. }
  1106. background-color: $bleuroi;
  1107. &>*{
  1108. // disable grid gap
  1109. padding-right: 0;
  1110. }
  1111. #footer-tabs{
  1112. ul{
  1113. padding:0; margin:0;
  1114. display: flex;
  1115. flex-direction: column;
  1116. li{
  1117. flex: 1 1 auto;
  1118. .wrapper{
  1119. box-sizing: border-box;
  1120. line-height: 0.6em;
  1121. height:2em;
  1122. width: calc(100% + $side-padding);
  1123. margin-left:-$side-padding;
  1124. padding:0.3em 0.5em 0.3em $side-padding;
  1125. }
  1126. &.history .wrapper{
  1127. background-color: $or;
  1128. }
  1129. &.results .wrapper{
  1130. background-color: $gris;
  1131. }
  1132. span{
  1133. font-size: 0.693em;
  1134. font-weight: 400;
  1135. text-transform: uppercase;
  1136. cursor: pointer;
  1137. @include fade-transition;
  1138. }
  1139. }
  1140. }
  1141. }
  1142. #search{
  1143. color: #fff;
  1144. background-color: $bleuroi;
  1145. form{
  1146. padding: 0;
  1147. // display: flex;
  1148. // flex-direction: row;
  1149. // flex-wrap: wrap;
  1150. fieldset{
  1151. padding:0.7em 1em;
  1152. border: none;
  1153. box-sizing:border-box;
  1154. // width correction as row is not the same width as others in the page
  1155. // flex-basis: percentage(2/($default_sum - 1));
  1156. // flex-basis: 17.667%;
  1157. // flex-basis: percentage(2 / 11);
  1158. &:not(:first-of-type){
  1159. border-left: 1px solid $grisclair;
  1160. }
  1161. }
  1162. fieldset.search{
  1163. display: inline-flex;
  1164. align-items: center;
  1165. >div{
  1166. width:80%;
  1167. vertical-align: middle;
  1168. }
  1169. label[for="keys"]{
  1170. display: none;
  1171. }
  1172. input[type="text"]{
  1173. padding:0em 0.3em;
  1174. margin:0 0 0.3em 0;
  1175. box-sizing: border-box;
  1176. font-size: 0.756em;
  1177. line-height: 1;
  1178. width:100%;
  1179. height:1.4em;
  1180. border:none;
  1181. border-radius: 2px;
  1182. }
  1183. span.mdi{
  1184. display: inline-block;
  1185. margin:0 0 0 0.5em;
  1186. font-size: 1.2em;
  1187. line-height:1.1;
  1188. vertical-align:middle;
  1189. width:1.2em; height:1.2em;
  1190. border-radius: 0.6em;
  1191. background-color: #fff;
  1192. color: $bleuroi;
  1193. text-align: center;
  1194. font-weight: 700;
  1195. cursor: pointer;
  1196. }
  1197. }
  1198. }
  1199. fieldset.filters{
  1200. .vs__actions{
  1201. // background-color: $grisclair;
  1202. align-items:baseline;
  1203. padding-top:0.2em;
  1204. }
  1205. }
  1206. form{
  1207. transition: opacity 0.2s ease-in-out;
  1208. }
  1209. &.loading{
  1210. form{
  1211. opacity:0.5;
  1212. transition: opacity 0.5s ease-in-out;
  1213. pointer-events: none;
  1214. }
  1215. }
  1216. // responsive
  1217. @media only screen and (max-width: $small-bp), (orientation: portrait) {
  1218. form{
  1219. fieldset{
  1220. &.search{
  1221. >div{
  1222. display: inline-flex;
  1223. flex-wrap: nowrap;
  1224. width:84%;
  1225. >*{
  1226. flex-basis: 45%;
  1227. margin: 0 0.5em 0 0;
  1228. // box-sizing: content-box;
  1229. // width:auto!important;
  1230. &#keys[type="text"]{
  1231. margin-right:1.5em;
  1232. }
  1233. }
  1234. }
  1235. span.mdi{
  1236. width:1em; height:1em;
  1237. margin-top: -0.1em;
  1238. margin-left: 0;
  1239. }
  1240. }
  1241. &.filters{
  1242. border-left: none;
  1243. flex-basis: 32%;
  1244. padding: 0.2em 0 1em 1em;
  1245. }
  1246. }
  1247. }
  1248. }
  1249. }
  1250. }
  1251. h2{
  1252. margin:0;
  1253. font-size: 0.756em;
  1254. font-weight: 400;
  1255. text-transform: uppercase;
  1256. padding:0;
  1257. }
  1258. }
  1259. // vue-select
  1260. .v-select{
  1261. padding:0;
  1262. div[role="combobox"]{
  1263. background-color: #fff;
  1264. padding:0;
  1265. border-radius: 2px;
  1266. border: none;
  1267. }
  1268. input[type="search"]{
  1269. margin:0;
  1270. padding:0;
  1271. -webkit-appearance:textfield;
  1272. -webkit-box-sizing:content-box;
  1273. }
  1274. input::-webkit-search-decoration,
  1275. input::-webkit-search-cancel-button {
  1276. display: none;
  1277. }
  1278. .vs__search{
  1279. &, &:focus{
  1280. font-size: 0.756em;
  1281. line-height: 1;
  1282. height:1.2em;
  1283. border:none;
  1284. box-sizing: border-box;
  1285. }
  1286. }
  1287. .vs__dropdown-toggle{
  1288. input::placeholder{background-color: #fff;}
  1289. }
  1290. .vs__selected-options{
  1291. background-color: #fff;
  1292. }
  1293. .vs__actions{
  1294. padding:1px 3px;
  1295. button.vs__clear{
  1296. line-height: 0.5;
  1297. // height:0;
  1298. }
  1299. svg[role="presentation"]{
  1300. transform: scale(0.8);
  1301. path{
  1302. fill: $bleuroi;
  1303. }
  1304. }
  1305. }
  1306. .vs__selected{
  1307. margin:0;
  1308. padding:0.2em 0;
  1309. line-height:1;
  1310. font-size: 0.756em;
  1311. background-color: #fff;
  1312. border:none;
  1313. align-items: middle;
  1314. box-sizing: content-box;
  1315. display: inline-block;
  1316. width: calc(100% - 12px);
  1317. // &>*:not(button){
  1318. // display: inline-block;
  1319. // width:70%;
  1320. // }
  1321. button{
  1322. svg{
  1323. transform: scale(0.8);
  1324. path{
  1325. fill: $bleuroi;
  1326. }
  1327. }
  1328. &.vs__deselect{
  1329. line-height: 0;
  1330. }
  1331. }
  1332. }
  1333. // border-radius: 2px;
  1334. // border: none;
  1335. }
  1336. ul[role="listbox"]{
  1337. @include fontsans;
  1338. padding:0;
  1339. margin:0;
  1340. border:none;
  1341. position: relative;
  1342. li{
  1343. box-sizing: content-box;
  1344. padding:0.3em;
  1345. margin:0;
  1346. font-size: 0.756em;
  1347. line-height: 1;
  1348. white-space: normal;
  1349. position: relative;
  1350. *{
  1351. max-width: 100%;
  1352. }
  1353. }
  1354. }
  1355. // ___
  1356. // |_ _|__ ___ _ _ ___
  1357. // | |/ _/ _ \ ' \(_-<
  1358. // |___\__\___/_||_/__/
  1359. span.mdi-close{
  1360. cursor: pointer;
  1361. }
  1362. @keyframes spin {
  1363. from {
  1364. transform:rotate(0deg);
  1365. }
  1366. to {
  1367. transform:rotate(360deg);
  1368. }
  1369. }
  1370. span.mdi-loading{
  1371. animation-name: spin;
  1372. animation-duration: 2000ms;
  1373. animation-iteration-count: infinite;
  1374. animation-timing-function: linear;
  1375. }
  1376. // _ _ _
  1377. // | | ___ __ _ __| (_)_ _ __ _
  1378. // | |__/ _ \/ _` / _` | | ' \/ _` |
  1379. // |____\___/\__,_\__,_|_|_||_\__, |
  1380. // |___/
  1381. span.loading{
  1382. @include fontsans;
  1383. font-size: 0.756em;
  1384. color: $grisfonce;
  1385. animation: pulseloading 4s infinite;
  1386. }
  1387. @keyframes pulseloading{
  1388. 0% {
  1389. opacity: 1;
  1390. }
  1391. 50%{
  1392. opacity: 0;
  1393. }
  1394. 100% {
  1395. opacity: 1;
  1396. }
  1397. }