app.scss 36 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616
  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. 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. a{
  667. font-weight: 500;
  668. &.active-link{
  669. // color: $rouge;
  670. // text-decoration: underline;
  671. // line-height: $base-line/2;
  672. }
  673. // sup.mdi{
  674. // font-size: 0.630em;
  675. // vertical-align: super;
  676. // // line-height: 0.1;
  677. // padding: 0 0.2em;
  678. // }
  679. }
  680. }
  681. blockquote{
  682. padding: 0 1em;
  683. }
  684. ul, ol{
  685. padding: 0 0 0 2em;
  686. li{
  687. list-style: disc;
  688. }
  689. }
  690. span.mdi.index-item-icon{
  691. font-size: 14px;
  692. vertical-align: super;
  693. }
  694. span[role="pageBreak"]{
  695. display: block;
  696. height:1.5em;
  697. }
  698. span.simpleLine + span[role="pageBreak"]{
  699. height:0em;
  700. margin-top: -1em;
  701. }
  702. span.metamark.typographicalPiece + span[role="pageBreak"]{
  703. height:0em;
  704. }
  705. span.metamark.typographicalPiece{
  706. display: block;
  707. height: 1.5em;
  708. }
  709. span.metamark.typographicalPiece + span.metamark.typographicalPiece{
  710. display: none;
  711. }
  712. span[role="pageNum"]{
  713. font-size: 16px;
  714. position: relative;
  715. float:right;
  716. width: $pagenum_w; height:$base-line/4;
  717. border-bottom: 1px solid $bleuroilight;
  718. border-right: 1px solid $bleuroilight;
  719. // outline: solid red thin;
  720. // margin-left:calc(100% - #{$pagenum_w * 2});
  721. // margin-left: 100%;
  722. margin-right: - $pagenum_w * 1.5;
  723. &:before{
  724. // outline: solid green thin;
  725. content:attr(data-num);
  726. font-size: 0.630em;
  727. line-height: $base-line/3;
  728. position: absolute;
  729. right: 0;
  730. top:$base-line/2;
  731. color: $bleuroi;
  732. // top:0;
  733. // width: $pagenum_w*2; height: $pagenum_w;
  734. // border-top: 1px solid $bleuroilight;
  735. // border-right: 1px solid $bleuroilight;
  736. // text-indent: $pagenum_w * 2.5;
  737. }
  738. }
  739. a.text-item-link{
  740. // float: left;
  741. position: absolute;
  742. top:0; left:0;
  743. // display: block;
  744. // width:1em; height:1em;
  745. font-size: 0.630em;
  746. .mdi{
  747. color: $bleuroi;
  748. pointer-events: none;
  749. }
  750. }
  751. figure{
  752. // outline: 1px solid red;
  753. background-color: $grisclair;
  754. margin:1em 0;
  755. img{
  756. width: 100%;
  757. }
  758. figcaption{
  759. @include fontcaption;
  760. padding: 0.5em;
  761. }
  762. }
  763. ul{
  764. line-height: $base-line;
  765. margin-bottom: $base-line/2;
  766. }
  767. blockquote{
  768. margin: $base-line/2 1em;
  769. line-height: $base-line;
  770. p{
  771. margin: 0;
  772. }
  773. }
  774. }
  775. }
  776. }
  777. >nav{
  778. $pager_h:2em;
  779. display: flex;
  780. flex-direction: column;
  781. span.nav-title{ display:none; }
  782. section#toc{
  783. box-sizing: content-box;
  784. padding:0 0 1em 1.5em;
  785. height:calc(100% - #{$pager_h});
  786. overflow-x: hidden;
  787. overflow-y: auto;
  788. line-height: $base-line / 2;
  789. // section.tocitem{
  790. // position: relative;
  791. // &:after{
  792. // display: block;
  793. // position:absolute;
  794. // top:0; right:0;
  795. // color: red;
  796. // content: attr(type);
  797. // font-size: 11px;
  798. // border: 1px solid red;
  799. // border-radius: 3px;
  800. // padding: 0px 2px;
  801. // }
  802. // }
  803. >ul{
  804. >li{
  805. section.tocitem{
  806. ul{
  807. overflow: hidden;
  808. max-height: 10000px;
  809. transition: max-height 0.5s ease-in-out;
  810. &:not(.opened):not(.init_opened){
  811. max-height:0;
  812. transition: max-height 0.5s cubic-bezier(0, 1.05, 0, 1);
  813. }
  814. &:not([level="1"]){
  815. border-left: 0.5px solid $grisclair;
  816. margin-bottom: 0em;
  817. li{
  818. padding:0 0 0 1em;
  819. }
  820. }
  821. }
  822. &.notitle>ul>li{
  823. padding:0;
  824. }
  825. }
  826. }
  827. }
  828. .toc-title{
  829. @include title4grey;
  830. &.active,
  831. &:hover{
  832. color:$grisfonce;
  833. font-weight: 600;
  834. }
  835. &.loaded{
  836. color:$grisfonce;
  837. }
  838. &.notitle{
  839. color: red;
  840. }
  841. }
  842. h2.toc-title{font-size: 1.1em;}
  843. h3.toc-title{font-size: 1em;}
  844. h4.toc-title{font-size: 0.9em;}
  845. h5.toc-title{font-size: 0.8em;}
  846. h6.toc-title{font-size: 0.7em;}
  847. // span.toc-title{font-size: 0.882em;}
  848. // >ul{
  849. // ul{
  850. // li{
  851. // ul{
  852. // overflow: hidden;
  853. // max-height: 10000px;
  854. // transition: max-height 0.5s ease-in-out;
  855. // // transform: scaleY(1);
  856. // // transform-origin: top;
  857. // // transition: transform 0.3s ease-in-out;
  858. // &:not(.opened){
  859. // // height:0;
  860. // max-height:0;
  861. // transition: max-height 0.5s cubic-bezier(0, 1.05, 0, 1);
  862. // // transform: scaleY(0);
  863. // }
  864. // // &.opened{
  865. // // border: 1px solid red;
  866. // // }
  867. // // padding-left: 1em;
  868. // border-left: 0.5px solid $grisclair;
  869. // // min-height: 1em;
  870. // margin-bottom: 0em;
  871. // li{
  872. // // min-height: 1em;
  873. // // border-left: 1px solid red;
  874. // padding:0 0 0 1em;
  875. // }
  876. // }
  877. // }
  878. // }
  879. // .toc-title{
  880. // @include title4grey;
  881. // &.active,
  882. // &:hover{
  883. // color:$grisfonce;
  884. // font-weight: 600;
  885. // }
  886. // &.loaded{
  887. // color:$grisfonce;
  888. // }
  889. // &.notitle{
  890. // color: red;
  891. // }
  892. // }
  893. // h2.toc-title{font-size: 1.1em;}
  894. // h3.toc-title{font-size: 1em;}
  895. // h4.toc-title{font-size: 0.9em;}
  896. // h5.toc-title{font-size: 0.8em;}
  897. // h6.toc-title{font-size: 0.7em;}
  898. // // span.toc-title{font-size: 0.882em;}
  899. // }
  900. }
  901. div#indexes-filters{
  902. // height:$pager_h;
  903. overflow: hidden;
  904. box-sizing: content-box;
  905. padding:1em 0 0 1.5em;
  906. select{
  907. option{
  908. padding:0;
  909. }
  910. }
  911. }
  912. div#page-nav{
  913. height:$pager_h;
  914. overflow: hidden;
  915. box-sizing: content-box;
  916. padding:1em 0 0 1.5em;
  917. select{
  918. option{
  919. padding:0;
  920. }
  921. }
  922. }
  923. }
  924. // responsive
  925. @media only screen and (max-width: $small-bp), (orientation: portrait) {
  926. position: relative;
  927. >nav{
  928. $top: 45px;
  929. z-index: 2;
  930. position: absolute;
  931. top:$top;
  932. right:0;
  933. background-color: #fff;
  934. width:percentage(10/$default_sum);
  935. box-sizing: border-box;
  936. padding-top: 1em;
  937. padding-bottom: 1em;
  938. height:calc(100% - #{$top});
  939. transform: translateX(100%);
  940. transition: transform 0.3s ease-in-out;
  941. span.nav-title{
  942. display: block;
  943. position: absolute;
  944. top:4.5em; left:-1.8em;
  945. transform: rotateZ(-90deg);
  946. transform-origin: center;
  947. @include fontsans;
  948. font-size: 0.600em;
  949. cursor: pointer;
  950. color: $bleuroi;
  951. svg{
  952. vertical-align: bottom;
  953. transform-origin: center;
  954. transform: scale(0.8) rotate(180deg);
  955. transition: transform 0.3s ease-in-out;
  956. path{
  957. fill: $bleuroi;
  958. }
  959. }
  960. }
  961. &.opened{
  962. box-shadow: -3px -3px 5px $grisclair;
  963. transform: translateX(0);
  964. span.nav-title{
  965. svg{
  966. transform: scale(0.7) rotate(0);
  967. }
  968. }
  969. }
  970. }
  971. }
  972. }
  973. #biblio{
  974. .router-link-active{
  975. font-weight: 600;
  976. }
  977. ul.item-list{
  978. margin:0;
  979. padding:0;
  980. li{
  981. padding:0;
  982. margin:0 0 $base-line 0;
  983. h2{
  984. margin:0;
  985. @include title1black;
  986. }
  987. p{
  988. margin:0;
  989. }
  990. span.date{
  991. @include title2black;
  992. font-weight: 600;
  993. }
  994. aside{
  995. overflow: hidden;
  996. h5{
  997. @include title2black;
  998. margin: $base-line / 2 0;
  999. cursor: pointer;
  1000. // padding-left: 1em;
  1001. // position: relative;
  1002. &:before{
  1003. cursor: pointer;
  1004. content:"\2304";
  1005. position: relative;
  1006. display: inline-block;
  1007. top: -4px;
  1008. // transform-origin: center;
  1009. // transform: rotateZ(-90deg);
  1010. }
  1011. }
  1012. ul{
  1013. max-height: 1px;
  1014. transition: all 0.3s ease-in-out;
  1015. padding-left: 1em;
  1016. li{
  1017. margin-bottom: $base-line / 2;
  1018. }
  1019. }
  1020. &.opened{
  1021. h5{
  1022. &:before{
  1023. top: 4px;
  1024. content:"\2303";
  1025. // transform: rotateZ(90deg);
  1026. }
  1027. }
  1028. ul{
  1029. max-height: 100em;
  1030. }
  1031. }
  1032. }
  1033. }
  1034. &.manifestations{
  1035. li{
  1036. max-height: 0.2px;
  1037. margin-bottom:0;
  1038. overflow: hidden;
  1039. transition: all 1s ease-in-out;
  1040. &.active{
  1041. max-height: 10em;
  1042. }
  1043. .wrapper{
  1044. margin-bottom: $base-line;
  1045. }
  1046. }
  1047. }
  1048. }
  1049. ul.authors-filters{
  1050. li{
  1051. @include title4black;
  1052. line-height: $base-line / 2;
  1053. span{
  1054. cursor: pointer;
  1055. color: $gris;
  1056. &.active{
  1057. color: $grisfonce;
  1058. }
  1059. }
  1060. }
  1061. }
  1062. }
  1063. }
  1064. footer[role="tools"]{
  1065. $list-item-h: 7em;
  1066. @mixin resultItem{
  1067. box-sizing: border-box;
  1068. // we are only on 10 colls as 2 are occupied by sides
  1069. flex-basis: percentage(2/($default_sum - 2));
  1070. max-height: $list-item-h;
  1071. overflow: hidden;
  1072. padding-bottom: 1em;
  1073. padding-right: $default_gap;
  1074. article{
  1075. max-height: 100%;
  1076. overflow: hidden;
  1077. }
  1078. article.item{
  1079. h1{
  1080. @include title3black;
  1081. font-size: 0.9em;
  1082. font-weight: 600;
  1083. max-width: 95%;
  1084. word-break:normal;
  1085. }
  1086. h2{
  1087. @include title3black;
  1088. text-transform: none;
  1089. }
  1090. span{
  1091. font-size: 0.882em;
  1092. }
  1093. // .preview{
  1094. // font-size: 0.882em;
  1095. // margin:0;
  1096. // code{
  1097. // @include fontserif;
  1098. // background-color: lighten(desaturate($rouge,20%), 20%);
  1099. // padding:0 0.2em;
  1100. // }
  1101. // }
  1102. }
  1103. }
  1104. #history{
  1105. z-index: 8;
  1106. background-color: $or;
  1107. padding:1.2em $side-padding;
  1108. max-height: $list-item-h;
  1109. @include accordeon-transition($list-item-h);
  1110. >header{
  1111. }
  1112. .history-list{
  1113. overflow-x: hidden;
  1114. .wrapper{
  1115. height:100%;
  1116. // hidding the scrollbar
  1117. overflow-y: auto;
  1118. // width:calc(100% + 1em);
  1119. padding-right: 1em;
  1120. >ul{
  1121. padding:0;
  1122. display: flex;
  1123. flex-direction: row;
  1124. flex-wrap: wrap;
  1125. }
  1126. }
  1127. li.item{
  1128. @include resultItem;
  1129. }
  1130. }
  1131. }
  1132. #results{
  1133. z-index: 9;
  1134. background-color: $gris;
  1135. padding:1.2em $side-padding;
  1136. @media only screen and (max-width: $small-bp), (orientation: portrait) {
  1137. padding:1.2em $side-padding/2;
  1138. }
  1139. max-height: $list-item-h * 3;
  1140. @include accordeon-transition($list-item-h * 3);
  1141. >header{
  1142. .search-keys{
  1143. font-size: 0.756em;
  1144. font-weight: 500;
  1145. }
  1146. .results-count{
  1147. font-size: 0.756em;
  1148. }
  1149. }
  1150. .results-list{
  1151. overflow-x: hidden;
  1152. .wrapper{
  1153. position:relative;
  1154. height:100%;
  1155. // hidding the scrollbar
  1156. overflow-y: auto;
  1157. // width:calc(100% + 1em);
  1158. padding-right: 1em;
  1159. >ul{
  1160. padding:0;
  1161. display: flex;
  1162. flex-direction: row;
  1163. flex-wrap: wrap;
  1164. }
  1165. }
  1166. li.result{
  1167. @include resultItem;
  1168. }
  1169. .infinite-loading-container{
  1170. // TODO: how to center the loading
  1171. }
  1172. }
  1173. >header, section.results-list{
  1174. transition: opacity 0.2s ease-in-out;
  1175. }
  1176. &.loading {
  1177. >header, section.results-list{
  1178. transition: opacity 0.5s ease-in-out;
  1179. opacity:0.5;
  1180. pointer-events: none;
  1181. }
  1182. }
  1183. // responsive
  1184. @media only screen and (max-width: $small-bp), (orientation: portrait) {
  1185. position: relative;
  1186. >header{
  1187. padding:0 0 1em 0;
  1188. >*{
  1189. display: inline-block;
  1190. margin-right: 1em;
  1191. }
  1192. #sorting{
  1193. width:10em;
  1194. }
  1195. }
  1196. >section.results-list{
  1197. max-height: 15em;
  1198. li.result{
  1199. flex-basis: 33%;
  1200. }
  1201. }
  1202. >nav{
  1203. position: absolute;
  1204. top:1.2em; right:1.2em;
  1205. }
  1206. }
  1207. }
  1208. #footer-bottom{
  1209. z-index: 10;
  1210. padding:0 $side-padding;
  1211. @media only screen and (max-width: $small-bp), (orientation: portrait) {
  1212. padding:0 $side-padding/2;
  1213. }
  1214. background-color: $bleuroi;
  1215. &>*{
  1216. // disable grid gap
  1217. padding-right: 0;
  1218. flex-grow: 0;
  1219. flex-shrink: 0;
  1220. }
  1221. #footer-tabs{
  1222. ul{
  1223. padding:0; margin:0;
  1224. display: flex;
  1225. flex-direction: column;
  1226. li{
  1227. flex: 1 1 auto;
  1228. .wrapper{
  1229. box-sizing: border-box;
  1230. line-height: 0.6em;
  1231. height:2em;
  1232. width: calc(100% + $side-padding);
  1233. margin-left:-$side-padding;
  1234. padding:0.3em 0.5em 0.3em $side-padding;
  1235. }
  1236. &.history .wrapper{
  1237. background-color: $or;
  1238. }
  1239. &.results .wrapper{
  1240. background-color: $gris;
  1241. }
  1242. span{
  1243. font-size: 0.693em;
  1244. font-weight: 400;
  1245. text-transform: uppercase;
  1246. cursor: pointer;
  1247. @include fade-transition;
  1248. }
  1249. }
  1250. }
  1251. }
  1252. #search{
  1253. color: #fff;
  1254. background-color: $bleuroi;
  1255. form{
  1256. padding: 0;
  1257. // display: flex;
  1258. // flex-direction: row;
  1259. // flex-wrap: wrap;
  1260. fieldset{
  1261. padding:0.7em 1em;
  1262. border: none;
  1263. box-sizing:border-box;
  1264. // width correction as row is not the same width as others in the page
  1265. // flex-basis: percentage(2/($default_sum - 1));
  1266. // flex-basis: 17.667%;
  1267. // flex-basis: percentage(2 / 11);
  1268. &:not(:first-of-type){
  1269. border-left: 1px solid $grisclair;
  1270. }
  1271. }
  1272. fieldset.search{
  1273. display: inline-flex;
  1274. align-items: center;
  1275. >div{
  1276. width:80%;
  1277. vertical-align: middle;
  1278. }
  1279. label[for="keys"]{
  1280. display: none;
  1281. }
  1282. input[type="text"]{
  1283. padding:0em 0.3em;
  1284. margin:0 0 0.3em 0;
  1285. box-sizing: border-box;
  1286. font-size: 0.756em;
  1287. line-height: 1;
  1288. width:100%;
  1289. height:1.4em;
  1290. border:none;
  1291. border-radius: 2px;
  1292. }
  1293. span.mdi{
  1294. display: inline-block;
  1295. margin:0 0 0 0.5em;
  1296. font-size: 1.2em;
  1297. line-height:1.1;
  1298. vertical-align:middle;
  1299. width:1.2em; height:1.2em;
  1300. border-radius: 0.6em;
  1301. background-color: #fff;
  1302. color: $bleuroi;
  1303. text-align: center;
  1304. font-weight: 700;
  1305. cursor: pointer;
  1306. }
  1307. }
  1308. }
  1309. fieldset.filters{
  1310. .vs__actions{
  1311. // background-color: $grisclair;
  1312. align-items:baseline;
  1313. padding-top:0.2em;
  1314. }
  1315. }
  1316. form{
  1317. transition: opacity 0.2s ease-in-out;
  1318. }
  1319. &.loading{
  1320. form{
  1321. opacity:0.5;
  1322. transition: opacity 0.5s ease-in-out;
  1323. pointer-events: none;
  1324. }
  1325. }
  1326. // responsive
  1327. @media only screen and (max-width: $small-bp), (orientation: portrait) {
  1328. form{
  1329. fieldset{
  1330. &.search{
  1331. >div{
  1332. display: inline-flex;
  1333. flex-wrap: nowrap;
  1334. width:84%;
  1335. >*{
  1336. flex-basis: 45%;
  1337. margin: 0 0.5em 0 0;
  1338. // box-sizing: content-box;
  1339. // width:auto!important;
  1340. &#keys[type="text"]{
  1341. margin-right:1.5em;
  1342. }
  1343. }
  1344. }
  1345. span.mdi{
  1346. width:1em; height:1em;
  1347. margin-top: -0.1em;
  1348. margin-left: 0;
  1349. }
  1350. }
  1351. &.filters{
  1352. border-left: none;
  1353. flex-basis: 32%;
  1354. padding: 0.2em 0 1em 1em;
  1355. }
  1356. }
  1357. }
  1358. }
  1359. }
  1360. ;
  1361. #logos{
  1362. // max-height: 100%;
  1363. position: relative;
  1364. flex-shrink: 1;
  1365. // display: flex;
  1366. // flex-direction: row;
  1367. // justify-content: flex-end;
  1368. .wrapper{
  1369. position: relative;
  1370. box-sizing: content-box;
  1371. // max-height: 50px;
  1372. padding:1em;
  1373. text-align: right;
  1374. height: 30px;
  1375. img{
  1376. // display: inline-block;
  1377. height: 100%;
  1378. padding-left: 1em;
  1379. }
  1380. }
  1381. }
  1382. }
  1383. h2{
  1384. margin:0;
  1385. font-size: 0.756em;
  1386. font-weight: 400;
  1387. text-transform: uppercase;
  1388. padding:0;
  1389. }
  1390. }
  1391. // vue-select
  1392. .v-select{
  1393. padding:0;
  1394. div[role="combobox"]{
  1395. background-color: #fff;
  1396. padding:0;
  1397. border-radius: 2px;
  1398. border: none;
  1399. }
  1400. input[type="search"]{
  1401. margin:0;
  1402. padding:0;
  1403. -webkit-appearance:textfield;
  1404. -webkit-box-sizing:content-box;
  1405. }
  1406. input::-webkit-search-decoration,
  1407. input::-webkit-search-cancel-button {
  1408. display: none;
  1409. }
  1410. .vs__search{
  1411. &, &:focus{
  1412. font-size: 0.756em;
  1413. line-height: 1;
  1414. height:1.2em;
  1415. border:none;
  1416. box-sizing: border-box;
  1417. }
  1418. }
  1419. .vs__dropdown-toggle{
  1420. input::placeholder{background-color: #fff;}
  1421. }
  1422. .vs__selected-options{
  1423. background-color: #fff;
  1424. }
  1425. .vs__actions{
  1426. padding:1px 3px;
  1427. button.vs__clear{
  1428. line-height: 0.5;
  1429. // height:0;
  1430. }
  1431. svg[role="presentation"]{
  1432. transform: scale(0.8);
  1433. path{
  1434. fill: $bleuroi;
  1435. }
  1436. }
  1437. }
  1438. .vs__selected{
  1439. margin:0;
  1440. padding:0.2em 0;
  1441. line-height:1;
  1442. font-size: 0.756em;
  1443. background-color: #fff;
  1444. border:none;
  1445. align-items: middle;
  1446. box-sizing: content-box;
  1447. display: inline-block;
  1448. width: calc(100% - 12px);
  1449. // &>*:not(button){
  1450. // display: inline-block;
  1451. // width:70%;
  1452. // }
  1453. button{
  1454. svg{
  1455. transform: scale(0.8);
  1456. path{
  1457. fill: $bleuroi;
  1458. }
  1459. }
  1460. &.vs__deselect{
  1461. line-height: 0;
  1462. }
  1463. }
  1464. }
  1465. // border-radius: 2px;
  1466. // border: none;
  1467. }
  1468. ul[role="listbox"]{
  1469. @include fontsans;
  1470. padding:0;
  1471. margin:0;
  1472. border:none;
  1473. position: relative;
  1474. li{
  1475. box-sizing: content-box;
  1476. padding:0.3em;
  1477. margin:0;
  1478. font-size: 0.756em;
  1479. line-height: 1;
  1480. white-space: normal;
  1481. position: relative;
  1482. *{
  1483. max-width: 100%;
  1484. }
  1485. }
  1486. }
  1487. // ___
  1488. // |_ _|__ ___ _ _ ___
  1489. // | |/ _/ _ \ ' \(_-<
  1490. // |___\__\___/_||_/__/
  1491. span.mdi-close{
  1492. cursor: pointer;
  1493. }
  1494. @keyframes spin {
  1495. from {
  1496. transform:rotate(0deg);
  1497. }
  1498. to {
  1499. transform:rotate(360deg);
  1500. }
  1501. }
  1502. span.mdi-loading{
  1503. animation-name: spin;
  1504. animation-duration: 2000ms;
  1505. animation-iteration-count: infinite;
  1506. animation-timing-function: linear;
  1507. }
  1508. // _ _ _
  1509. // | | ___ __ _ __| (_)_ _ __ _
  1510. // | |__/ _ \/ _` / _` | | ' \/ _` |
  1511. // |____\___/\__,_\__,_|_|_||_\__, |
  1512. // |___/
  1513. span.loading{
  1514. @include fontsans;
  1515. font-size: 0.756em;
  1516. color: $grisfonce;
  1517. animation: pulseloading 4s infinite;
  1518. }
  1519. @keyframes pulseloading{
  1520. 0% {
  1521. opacity: 1;
  1522. }
  1523. 50%{
  1524. opacity: 0;
  1525. }
  1526. 100% {
  1527. opacity: 1;
  1528. }
  1529. }