app.scss 33 KB

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