app.scss 37 KB

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