app.scss 47 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055
  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. margin:15vh 0 0;
  93. text-align: center;
  94. padding: 1em 0;
  95. h1{
  96. color: $bleuroi;
  97. font-size: 8em;
  98. font-weight: 300;
  99. margin: 0;
  100. }
  101. h2{
  102. color: $or;
  103. font-size: 2em;
  104. font-weight: 300;
  105. margin:1em 0 0;
  106. text-transform: uppercase;
  107. letter-spacing: 0.2em;
  108. sup{
  109. // line-height: 5em;
  110. vertical-align:text-top;
  111. font-size: 0.7em
  112. }
  113. }
  114. }
  115. // $filet_space:8em;
  116. // $decallage: 0.5em;
  117. section{
  118. padding-top: 8em;
  119. }
  120. @mixin teasersfilet($filet_space, $decallage){
  121. z-index: 1;
  122. &:before, &:after{
  123. z-index: 0;
  124. content: "";
  125. position: absolute;
  126. opacity: 0.4;
  127. pointer-events: none;
  128. }
  129. &:before{
  130. border:1px solid $or;
  131. width:calc(100% + #{$filet_space*2 + $decallage*2});
  132. left:- $filet_space - $default_gap/2 -$decallage;
  133. height:calc(100% + #{$filet_space});
  134. top:- $filet_space / 2;
  135. }
  136. &:after{
  137. border:1px solid $rouge;
  138. width:calc(100% + #{$filet_space*2});
  139. left:- $filet_space - $default_gap/2;
  140. height:calc(100% + #{$filet_space + $decallage*2});
  141. top:- $filet_space / 2 - $decallage;
  142. }
  143. }
  144. div.teasers>.wrapper{
  145. display: flex;
  146. flex-direction: row;
  147. flex-wrap: nowrap;
  148. position: relative;
  149. padding-right: 0;
  150. article{
  151. box-sizing: border-box;
  152. flex-basis: percentage(2 / ( $default_sum - 6) );
  153. padding-right: $default_gap;
  154. @include fontsans;
  155. h1{
  156. color: $bleuroi;
  157. }
  158. p{
  159. font-size: 0.882em;
  160. line-height: 1.2;
  161. }
  162. a.readmore span{
  163. color:$rouge;
  164. font-size:0.693em;
  165. }
  166. }
  167. // filets decoratif
  168. @include teasersfilet(8em, 0.5em);
  169. }
  170. // responsive
  171. @media only screen and (max-width: $small-bp), (orientation: portrait) {
  172. header{
  173. h1{
  174. font-size: 5em;
  175. margin:7vh 0 0;
  176. }
  177. h2{
  178. font-size: 1em;
  179. }
  180. }
  181. section{
  182. padding-top: 4em;
  183. }
  184. div.teasers{
  185. flex-direction: column;
  186. // filets decoratif
  187. @include teasersfilet(4em, 0.5em);
  188. }
  189. }
  190. }
  191. #list-corpus, .index{
  192. >header{
  193. &>h1{
  194. @include titleSansRed;
  195. margin: 0;
  196. }
  197. &>span{
  198. display: block;
  199. margin: 0.5em 0 0;
  200. @include title2black;
  201. font-weight: 600;
  202. }
  203. }
  204. &#list-corpus{
  205. >section>.wrapper>ul{
  206. >li{
  207. margin-bottom: $base-line*2;
  208. >header{
  209. margin-bottom: 0;
  210. h2{
  211. // display: inline-block;
  212. // margin: 0;
  213. margin-bottom: $base-line/2;
  214. line-height: $base-line;
  215. }
  216. h3{
  217. @include title1black;
  218. margin-bottom: $base-line/2;
  219. line-height: $base-line;
  220. }
  221. }
  222. section.notice{
  223. p{
  224. margin-top:0;
  225. font-size: 1.134em;
  226. line-height: $base-line * 0.7;
  227. // margin-bottom: $base-line * 0.7;
  228. }
  229. margin-bottom: $base-line/2;
  230. }
  231. section.editions{
  232. h4{
  233. font-size: 1em;
  234. line-height: $base-line * 0.8;
  235. // margin-bottom: $base-line / 2;
  236. }
  237. }
  238. section.texts {
  239. >h4{
  240. font-size: 1em;
  241. line-height: $base-line * 0.5;
  242. margin-bottom: $base-line / 2;
  243. }
  244. ul.texts-list{
  245. padding-left: 1.2em;
  246. >li{
  247. list-style: circle;
  248. h3{
  249. @include title1blue;
  250. font-size: 1.512em;
  251. line-height: $base-line * 0.5;
  252. margin-bottom: $base-line * 0.5;
  253. }
  254. p{
  255. font-size: 1em;
  256. @include fontserif;
  257. font-weight: 300;
  258. margin-top:0;
  259. font-size: 1em;
  260. line-height: $base-line * 0.5;
  261. margin-bottom: $base-line / 2;
  262. }
  263. margin-bottom: $base-line;
  264. }
  265. }
  266. }
  267. }
  268. }
  269. }
  270. article.item{
  271. // margin: 2em 0 0;
  272. header{
  273. margin:0;
  274. h1{
  275. margin:0;
  276. span.title{
  277. @include title1black;
  278. color: $bleuroi;
  279. }
  280. span.quantity{
  281. @include title4black;
  282. }
  283. }
  284. }
  285. }
  286. &:not(#list-corpus){
  287. ul.item-list{
  288. li{
  289. margin-bottom: $base-line;
  290. max-height: $base-line * 3;
  291. opacity: 1;
  292. transition: all 0.3s ease-in-out;
  293. &.hidden {
  294. // display: none;
  295. max-height: 0.001px;
  296. opacity: 0;
  297. margin-bottom: 0.001px;
  298. overflow: hidden;
  299. }
  300. }
  301. }
  302. }
  303. ul.item-list{
  304. li{
  305. // margin: 0 0 2em 0;
  306. margin-bottom: $base-line;
  307. header{
  308. h2{
  309. @include title1blue;
  310. // margin:0.4em 0 0.2em;
  311. margin-bottom: $base-line / 2;
  312. }
  313. h3{
  314. margin:0;
  315. @include fontsans;
  316. font-size: 0.756em;
  317. font-weight: 500;
  318. line-height: $base-line / 2;
  319. }
  320. section.notice{
  321. @include fontsans;
  322. font-size: 0.756em;
  323. font-weight: 300;
  324. line-height: $base-line / 2;
  325. }
  326. margin-bottom: $base-line / 2;
  327. }
  328. h4{
  329. margin:0;
  330. font-weight: 300;
  331. @include fontsans;
  332. font-size: 0.756em;
  333. line-height: $base-line / 2;
  334. &.texts-quantity{
  335. color: $rouge;
  336. margin-bottom: $base-line / 4;
  337. }
  338. }
  339. section.editions{
  340. div.editions{
  341. ol{
  342. padding:0;
  343. li{
  344. margin:0.7em 1em;
  345. }
  346. }
  347. }
  348. }
  349. section.texts{
  350. ul.texts-list{
  351. // padding: 0 0 0 1em;
  352. li{
  353. margin-bottom: $base-line / 2;
  354. }
  355. h3{
  356. @include title2black;
  357. // margin: 0.7em 0 0.3em;
  358. line-height: $base-line / 2;
  359. }
  360. p{
  361. font-weight: 300;
  362. @include fontsans;
  363. font-size: 0.756em;
  364. margin: 0;
  365. line-height: $base-line / 2;
  366. }
  367. }
  368. }
  369. ul {
  370. li{
  371. // margin:0 0 0 1em;
  372. h3{
  373. margin: 0.5em 0;
  374. font-weight: 400;
  375. font-size: 1em;
  376. }
  377. }
  378. }
  379. }
  380. }
  381. .abc{
  382. ul{
  383. li{
  384. opacity: 1;
  385. transition: opacity 0.3s ease-in-out;
  386. padding: 3px;
  387. &.inactive{
  388. opacity: 0.4;
  389. }
  390. span.tout, span.letter{
  391. @include fontcaption;
  392. font-variant: small-caps;
  393. font-size: 1em;
  394. cursor: pointer;
  395. // line-height: $base-line / 2;
  396. border: 1px solid $grisclair;
  397. border-radius: 3px;
  398. padding: 0.3em;
  399. display: inline-block;
  400. text-align: center;
  401. }
  402. &:not(:first-of-type) span.letter{
  403. width: 1.1em; height: 1.1em;
  404. }
  405. span.quantity{
  406. font-size: 0.765em;
  407. }
  408. }
  409. }
  410. }
  411. }
  412. .index-item{
  413. header{
  414. h1{
  415. @include title1blue;
  416. line-height: $base-line * 1.2;
  417. // margin:0 0 0.3em;
  418. }
  419. h2{
  420. @include title1black;
  421. margin:0 0 0.3em;
  422. }
  423. section{
  424. margin-bottom: 1em;
  425. h3{
  426. @include title2black;
  427. margin:0 0 0.3em;
  428. font-weight: 600;
  429. }
  430. }
  431. p{
  432. margin: 0 0 0.5em 0;
  433. span.label{ font-weight: 600; }
  434. }
  435. .authors{
  436. a{
  437. @include title2black;
  438. color: $bleuroi;
  439. }
  440. margin:0 0 0.3em;
  441. }
  442. .mdi{
  443. color: $bleuroilight;
  444. font-size: 0.7em;
  445. }
  446. .attested-forms{
  447. ul{
  448. // >li{
  449. // margin: 0 0 1em 0;
  450. // li{
  451. // margin: 0 0 0.5em 0;
  452. // }
  453. // }
  454. }
  455. a{
  456. @include title4grey;
  457. color: $grisfonce;
  458. font-weight: 400;
  459. }
  460. }
  461. }
  462. .tabs{
  463. border-bottom: 1px solid $bleuroilight;
  464. margin-bottom: $base-line / 2;
  465. .tab{
  466. cursor: pointer;
  467. border-radius: 5px 5px 0 0;
  468. z-index: 10;
  469. display: inline-block;
  470. margin-bottom: -2px;
  471. padding: 0.3em 0.5em;
  472. border: 1px solid $bleuroilight;
  473. &.active{
  474. border-bottom: 2px solid white;
  475. }
  476. }
  477. }
  478. .occurences{
  479. >ul{
  480. >li{
  481. padding:0 0 $base-line / 2 0;
  482. h3{
  483. @include title1black;
  484. padding:0 0 $base-line / 2 0;
  485. color: $bleuroi;
  486. }
  487. >ul{
  488. >li{
  489. // padding:0 0 0.5em 0;
  490. section{
  491. h4{
  492. // @include title3black;
  493. @include title4grey;
  494. color: $grisfonce;
  495. font-weight: 400;
  496. display: inline-block;
  497. a{
  498. span.form{
  499. font-style: italic;
  500. margin-top: 0;
  501. font-size: 1.134em;
  502. line-height: $base-line * 0.7;
  503. // margin-bottom: $base-line;
  504. }
  505. }
  506. }
  507. // ? c'est quoi ça ?
  508. // span.open-close{
  509. // cursor: pointer;
  510. // display: inline-block;
  511. // svg{
  512. // transform: rotate(-90deg) scale(0.8);
  513. // transition: transform 0.3s ease-in-out;
  514. // path{
  515. // fill:$bleuroi;
  516. // }
  517. // }
  518. // }
  519. // div.text{
  520. // max-height: 0;
  521. // transition: max-height 0.3s ease-in-out;
  522. // overflow: hidden;
  523. // box-sizing: content-box;
  524. // p, h1, h2, h3, h4, h5, h6{
  525. // margin: 0.5em 0 0 0;
  526. // }
  527. // }
  528. // a.lire-plus{
  529. // color: $bleuroi;
  530. // opacity: 0;
  531. // display: inline-block;
  532. // height: 0;
  533. // overflow: hidden;
  534. // transition: height, opacity 0.3s ease-in-out;
  535. // }
  536. // &.opened{
  537. // span.open-close{
  538. // cursor: pointer;
  539. // display: inline-block;
  540. // svg{
  541. // transform: scale(0.8) rotate(0);
  542. // }
  543. // }
  544. // div.text{
  545. // max-height:100px;
  546. // }
  547. // a.lire-plus{
  548. // opacity: 1;
  549. // height:1em;
  550. // }
  551. // }
  552. }
  553. }
  554. }
  555. }
  556. }
  557. }
  558. .attested-forms-occurences{
  559. >ul{
  560. >li{
  561. margin: 0 0 1em 0;
  562. h3{
  563. @include title1black;
  564. padding:0 0 0 0;
  565. }
  566. li{
  567. // margin: 0 0 0.5em 0;
  568. h4{
  569. // @include title3black;
  570. @include title4grey;
  571. color: $grisfonce;
  572. font-weight: 400;
  573. display: inline-block;
  574. a{
  575. font-style: italic;
  576. margin-top: 0;
  577. font-size: 1.134em;
  578. line-height: $base-line * 0.7;
  579. span.edition{
  580. font-style: italic;
  581. }
  582. }
  583. }
  584. }
  585. }
  586. }
  587. }
  588. nav{
  589. h3{
  590. @include title2black;
  591. margin:0 0 0.5em;
  592. }
  593. h4{
  594. @include title3black;
  595. margin:0 0 0.5em;
  596. color: $bleuroi;
  597. }
  598. }
  599. >nav{
  600. aside.links{
  601. position: absolute;
  602. bottom: 0;
  603. overflow-wrap:anywhere;
  604. }
  605. }
  606. }
  607. #edition{
  608. >header{
  609. position: relative;
  610. span.header-title{ display:none; }
  611. h1{
  612. @include title1blue;
  613. }
  614. aside.notice{
  615. // margin-top: 0;
  616. // font-size: 1em;
  617. // line-height: $base-line *0.5;
  618. // margin-bottom: $base-line / 2;
  619. }
  620. nav.entities-hide-show{
  621. position: absolute;
  622. bottom: 1em;
  623. span{
  624. @include fontsans;
  625. font-size: 0.882em;
  626. cursor: pointer;
  627. }
  628. }
  629. aside.index-tooltip{
  630. z-index:10;
  631. margin-top: -1.75em;
  632. position:absolute;
  633. text-align: right;
  634. right: 2em;
  635. h1 {
  636. @include title2black;
  637. margin:0 0 0.5em 0;
  638. }
  639. p{
  640. margin:0 0 0.5em 0;
  641. }
  642. time{
  643. font-weight: 600;
  644. }
  645. @media only screen and (max-width: $small-bp), (orientation: portrait) {
  646. background-color: #fff;
  647. padding: 1em;
  648. box-shadow: 0 0 10px $gris;
  649. *{
  650. pointer-events: none;
  651. }
  652. }
  653. }
  654. }
  655. // responsive
  656. @media only screen and (max-width: $small-bp), (orientation: portrait) {
  657. >header{
  658. $top: 45px;
  659. z-index: 110;
  660. position: absolute;
  661. top:$top;
  662. left:0;
  663. background-color: #fff;
  664. width:percentage(5/$default_sum);
  665. box-sizing: border-box;
  666. padding-top: 1em;
  667. padding-bottom: 1em;
  668. height:calc(100% - #{$top});
  669. transform: translateX(-100%);
  670. transition: transform 0.3s ease-in-out;
  671. span.header-title{
  672. display: block;
  673. position: absolute;
  674. top:4.5em; right:-1em;
  675. transform: rotateZ(-90deg);
  676. transform-origin: center;
  677. @include fontsans;
  678. font-size: 0.600em;
  679. cursor: pointer;
  680. color: $bleuroi;
  681. svg{
  682. vertical-align: bottom;
  683. transform-origin: center;
  684. transform: scale(0.8) rotate(0);
  685. transition: transform 0.3s ease-in-out;
  686. path{
  687. fill: $bleuroi;
  688. }
  689. }
  690. }
  691. &.opened{
  692. box-shadow: 3px 3px 5px $grisclair;
  693. transform: translateX(0);
  694. span.header-title{
  695. svg{
  696. transform: scale(0.7) rotate(180deg);
  697. }
  698. }
  699. }
  700. }
  701. }
  702. $pagenum_w:1em;
  703. >section{
  704. padding-right: 0;
  705. >.wrapper{
  706. padding-right: $pagenum_w*3;
  707. // outline: orange solid thin;
  708. }
  709. div#text{
  710. // .infinite-loading-container{
  711. // height:0;
  712. // overflow: hidden;
  713. // }
  714. .text-wrapper{
  715. // padding-left: 1em;
  716. position: relative;
  717. }
  718. .textrefcopylink{
  719. display: block;
  720. position: absolute;
  721. z-index: 99;
  722. span.mdi-open-in-new {
  723. position: relative;
  724. z-index: 10;
  725. margin-left: 1px;
  726. }
  727. .popup{
  728. position: absolute;
  729. top:0;
  730. left: 1px;
  731. // width: 15em;
  732. background-color: #fff;
  733. border-radius: 3px;
  734. padding: 1em 1em 1em 1.5em;
  735. box-shadow: 2px 2px 5px rgba(0,0,0,0.2);
  736. display: none;
  737. opacity: 0.1;
  738. // outline: 1px solid blue;
  739. transition: opacity 2s ease-in-out;
  740. button.copy-btn{
  741. display: block;
  742. padding: 0.5em 0.2em;
  743. @include fontcaption;
  744. white-space: nowrap;
  745. border: none;
  746. background: none;
  747. cursor: pointer;
  748. }
  749. }
  750. // todo what about touch is hover will work ?
  751. &:hover .popup{
  752. display: block;
  753. opacity: 1;
  754. transition: opacity 2s ease-in-out;
  755. }
  756. }
  757. div.tei{
  758. position: relative;
  759. width: calc(100% - #{$pagenum_w});
  760. // DEBUG
  761. color:chartreuse;
  762. &>*{ color: #1A1A1A;}
  763. // @media only screen and (min-width: $small-bp + 1) {
  764. padding-right: $pagenum_w;
  765. border-left: 1px dotted $grisclair;
  766. padding-left: 1em;
  767. margin-left:1.2em;
  768. overflow: visible;
  769. &.active{
  770. border-left: 1px dotted $bleuroi;
  771. }
  772. // }
  773. // front page
  774. header{
  775. padding-top: $base-line;
  776. h1{
  777. @include teititlefrontblue;
  778. .initial{
  779. display: inline-block;
  780. text-transform: uppercase;
  781. font-size: 1.3em;
  782. line-height: $base-line*2;
  783. margin: $base-line/2 0;
  784. }
  785. margin-bottom: $base-line;
  786. }
  787. }
  788. span.metamark.tailpiece,
  789. span.metamark.simpleLine{
  790. display: block;
  791. border-top: 1px solid $gris;
  792. margin: $base-line / 2 auto;
  793. }
  794. .byline{
  795. text-align: center;
  796. font-style: italic;
  797. padding-bottom: 1em;
  798. color: $bleuroi;
  799. &:last-of-type{
  800. padding-bottom: $base-line*2;
  801. }
  802. }
  803. .docImprint{
  804. text-align: center;
  805. // padding-bottom: 1em;
  806. color: $bleuroi;
  807. font-size: 1.3em;
  808. line-height: $base-line;
  809. .pubPlace{
  810. display: block;
  811. }
  812. .publisher{
  813. display: block;
  814. }
  815. .docDate{
  816. display: block;
  817. // margin-top: $base-line / 2;
  818. font-weight: 700;
  819. }
  820. }
  821. .docEdition{
  822. display: block;
  823. text-align: center;
  824. color: $bleuroi;
  825. font-size: 1.3em;
  826. line-height: $base-line;
  827. }
  828. span.epigraph{
  829. display: block;
  830. text-align: center;
  831. color: $bleuroi;
  832. font-size: 1em;
  833. line-height: $base-line;
  834. border-top: 1px $gris solid;
  835. border-bottom: 1px $gris solid;
  836. }
  837. .imprimatur{
  838. text-align: center;
  839. font-style: italic;
  840. color: $bleuroi;
  841. font-size: 1.3em;
  842. line-height: $base-line;
  843. padding-bottom: $base-line;
  844. &:last-of-type{
  845. padding-bottom: $base-line*2;
  846. }
  847. }
  848. >h1{
  849. @include teititle1blue;
  850. }
  851. h1{ font-size: 1.512em;
  852. line-height: $base-line; }
  853. p{
  854. margin-top: 0;
  855. font-size: 1.134em;
  856. line-height: $base-line;
  857. margin-bottom: $base-line / 2;
  858. span.no-wrap{
  859. white-space: nowrap;
  860. }
  861. span.persName,
  862. span.placeName,
  863. span.objectName{
  864. font-weight: 500;
  865. }
  866. a{
  867. font-weight: 500;
  868. &.active-link{
  869. // color: $rouge;
  870. // text-decoration: underline;
  871. // line-height: $base-line/2;
  872. }
  873. // sup.mdi{
  874. // font-size: 0.630em;
  875. // vertical-align: super;
  876. // // line-height: 0.1;
  877. // padding: 0 0.2em;
  878. // }
  879. }
  880. }
  881. $bq_padd: 2em;
  882. blockquote{
  883. padding: 0 $bq_padd;
  884. margin: $base-line/2 0;
  885. line-height: $base-line;
  886. p{
  887. margin: 0;
  888. }
  889. }
  890. ul, ol{
  891. padding: 0 0 0 2em;
  892. li{
  893. list-style: disc;
  894. }
  895. }
  896. span.mdi.index-item-icon{
  897. font-size: 14px;
  898. vertical-align: super;
  899. line-height: 0;
  900. }
  901. // span[role="pageBreak"]{
  902. // display: block;
  903. // height:1.5em;
  904. // }
  905. span.simpleLine + span[role="pageBreak"]{
  906. height:0em;
  907. margin-top: -1em;
  908. }
  909. span.metamark.typographicalPiece + span[role="pageBreak"]{
  910. height:0em;
  911. }
  912. span.metamark.typographicalPiece{
  913. display: block;
  914. height: 1.5em;
  915. }
  916. span.metamark.typographicalPiece + span.metamark.typographicalPiece{
  917. display: none;
  918. }
  919. span[role="pageNum"]{
  920. font-size: 16px;
  921. position: relative;
  922. float:right;
  923. width: $pagenum_w; height:$base-line/4;
  924. border-bottom: 1px solid $bleuroilight;
  925. border-right: 1px solid $bleuroilight;
  926. // outline: solid red thin;
  927. // margin-left:calc(100% - #{$pagenum_w * 2});
  928. // margin-left: 100%;
  929. margin-right: - $pagenum_w * 1.5;
  930. &:before{
  931. // outline: solid green thin;
  932. content:attr(data-num);
  933. font-size: 0.630em;
  934. line-height: $base-line/3;
  935. position: absolute;
  936. right: 0;
  937. top:$base-line/2;
  938. color: $bleuroi;
  939. // top:0;
  940. // width: $pagenum_w*2; height: $pagenum_w;
  941. // border-top: 1px solid $bleuroilight;
  942. // border-right: 1px solid $bleuroilight;
  943. // text-indent: $pagenum_w * 2.5;
  944. }
  945. }
  946. blockquote span[role="pageNum"]{
  947. margin-right: - $pagenum_w * 1.5 - $bq_padd;
  948. // &:before{
  949. // right: -$bq_padd;
  950. // }
  951. }
  952. a.text-item-link{
  953. // float: left;
  954. position: absolute;
  955. top:0; left:0;
  956. // display: block;
  957. // width:1em; height:1em;
  958. font-size: 0.630em;
  959. .mdi{
  960. color: $bleuroi;
  961. pointer-events: none;
  962. }
  963. }
  964. figure{
  965. // outline: 1px solid red;
  966. background-color: $grisclair;
  967. margin:1em 0;
  968. img{
  969. width: 100%;
  970. }
  971. figcaption{
  972. @include fontcaption;
  973. padding: 0.5em;
  974. }
  975. }
  976. ul{
  977. line-height: $base-line;
  978. margin-bottom: $base-line/2;
  979. }
  980. }
  981. &.entities-hidden{
  982. span.mdi.index-item-icon{ display: none;}
  983. }
  984. }
  985. }
  986. >nav{
  987. $filter_m: 0.3em;
  988. $pager_h:18px;
  989. display: flex;
  990. flex-direction: column;
  991. span.nav-title{ display:none; }
  992. section#toc{
  993. $m:0.5em;
  994. box-sizing: content-box;
  995. padding:0 0 1em 1.5em;
  996. margin-bottom: $m;
  997. height:calc(100% - #{$pager_h} - #{$m} - #{$filter_m} * 2);
  998. overflow-x: hidden;
  999. overflow-y: auto;
  1000. line-height: $base-line / 2;
  1001. // section.tocitem{
  1002. // position: relative;
  1003. // &:after{
  1004. // display: block;
  1005. // position:absolute;
  1006. // top:0; right:0;
  1007. // color: red;
  1008. // content: attr(type);
  1009. // font-size: 11px;
  1010. // border: 1px solid red;
  1011. // border-radius: 3px;
  1012. // padding: 0px 2px;
  1013. // }
  1014. // }
  1015. >ul{
  1016. >li{
  1017. section.tocitem{
  1018. ul{
  1019. overflow: hidden;
  1020. max-height: 10000px;
  1021. transition: max-height 0.5s ease-in-out;
  1022. &:not(.opened):not(.init_opened){
  1023. max-height:0;
  1024. transition: max-height 0.5s cubic-bezier(0, 1.05, 0, 1);
  1025. }
  1026. &:not([level="1"]){
  1027. border-left: 0.5px solid $grisclair;
  1028. margin-bottom: 0em;
  1029. li{
  1030. padding:0 0 0 1em;
  1031. }
  1032. }
  1033. }
  1034. &.notitle>ul>li{
  1035. padding:0;
  1036. }
  1037. }
  1038. }
  1039. }
  1040. section.tocitem{
  1041. &[level="1"]:not([type="front"]),
  1042. &[level="2"]{
  1043. padding-top: 0.4em;
  1044. }
  1045. }
  1046. .toc-title{
  1047. @include title4grey;
  1048. color: $grismoyen;
  1049. &.active,
  1050. &:hover{
  1051. color:$grisfonce;
  1052. font-weight: 600;
  1053. }
  1054. &.loaded{
  1055. color:$grisfonce;
  1056. }
  1057. &.notitle{
  1058. color: red;
  1059. }
  1060. &.disabled{
  1061. color: $grisclair;
  1062. pointer-events: none;
  1063. }
  1064. }
  1065. h2.toc-title{
  1066. font-size: 1.1em;
  1067. color: $bleuroilight;
  1068. &:hover, &.loaded{
  1069. color: $bleuroi;
  1070. }
  1071. }
  1072. h3.toc-title{font-size: 1em;}
  1073. h4.toc-title{font-size: 0.9em;}
  1074. h5.toc-title{font-size: 0.8em;}
  1075. h6.toc-title{font-size: 0.7em;}
  1076. // span.toc-title{font-size: 0.882em;}
  1077. // >ul{
  1078. // ul{
  1079. // li{
  1080. // ul{
  1081. // overflow: hidden;
  1082. // max-height: 10000px;
  1083. // transition: max-height 0.5s ease-in-out;
  1084. // // transform: scaleY(1);
  1085. // // transform-origin: top;
  1086. // // transition: transform 0.3s ease-in-out;
  1087. // &:not(.opened){
  1088. // // height:0;
  1089. // max-height:0;
  1090. // transition: max-height 0.5s cubic-bezier(0, 1.05, 0, 1);
  1091. // // transform: scaleY(0);
  1092. // }
  1093. // // &.opened{
  1094. // // border: 1px solid red;
  1095. // // }
  1096. // // padding-left: 1em;
  1097. // border-left: 0.5px solid $grisclair;
  1098. // // min-height: 1em;
  1099. // margin-bottom: 0em;
  1100. // li{
  1101. // // min-height: 1em;
  1102. // // border-left: 1px solid red;
  1103. // padding:0 0 0 1em;
  1104. // }
  1105. // }
  1106. // }
  1107. // }
  1108. // .toc-title{
  1109. // @include title4grey;
  1110. // &.active,
  1111. // &:hover{
  1112. // color:$grisfonce;
  1113. // font-weight: 600;
  1114. // }
  1115. // &.loaded{
  1116. // color:$grisfonce;
  1117. // }
  1118. // &.notitle{
  1119. // color: red;
  1120. // }
  1121. // }
  1122. // h2.toc-title{font-size: 1.1em;}
  1123. // h3.toc-title{font-size: 1em;}
  1124. // h4.toc-title{font-size: 0.9em;}
  1125. // h5.toc-title{font-size: 0.8em;}
  1126. // h6.toc-title{font-size: 0.7em;}
  1127. // // span.toc-title{font-size: 0.882em;}
  1128. // }
  1129. }
  1130. div#indexes-filters{
  1131. // height:$pager_h;
  1132. overflow: hidden;
  1133. box-sizing: content-box;
  1134. padding:0 0 0 1.5em;
  1135. margin: 0 0 $filter_m 0;
  1136. select{
  1137. option{
  1138. padding:0;
  1139. }
  1140. }
  1141. }
  1142. div#page-nav{
  1143. height:$pager_h;
  1144. overflow: hidden;
  1145. box-sizing: content-box;
  1146. padding:0 0 0 1.5em;
  1147. margin: 0 0 $filter_m 0;
  1148. select{
  1149. option{
  1150. padding:0;
  1151. }
  1152. }
  1153. }
  1154. }
  1155. // responsive
  1156. @media only screen and (max-width: $small-bp), (orientation: portrait) {
  1157. position: relative;
  1158. >nav{
  1159. $top: 45px;
  1160. z-index: 2;
  1161. position: absolute;
  1162. top:$top;
  1163. right:0;
  1164. background-color: #fff;
  1165. width:percentage(10/$default_sum);
  1166. box-sizing: border-box;
  1167. padding-top: 1em;
  1168. padding-bottom: 1em;
  1169. height:calc(100% - #{$top});
  1170. transform: translateX(100%);
  1171. transition: transform 0.3s ease-in-out;
  1172. span.nav-title{
  1173. display: block;
  1174. position: absolute;
  1175. top:4.5em; left:-1.8em;
  1176. transform: rotateZ(-90deg);
  1177. transform-origin: center;
  1178. @include fontsans;
  1179. font-size: 0.600em;
  1180. cursor: pointer;
  1181. color: $bleuroi;
  1182. svg{
  1183. vertical-align: bottom;
  1184. transform-origin: center;
  1185. transform: scale(0.8) rotate(180deg);
  1186. transition: transform 0.3s ease-in-out;
  1187. path{
  1188. fill: $bleuroi;
  1189. }
  1190. }
  1191. }
  1192. &.opened{
  1193. box-shadow: -3px -3px 5px $grisclair;
  1194. transform: translateX(0);
  1195. span.nav-title{
  1196. svg{
  1197. transform: scale(0.7) rotate(0);
  1198. }
  1199. }
  1200. }
  1201. }
  1202. }
  1203. }
  1204. #biblio{
  1205. >header{
  1206. &>h1{
  1207. @include titleSansRed;
  1208. margin: 0;
  1209. }
  1210. li{
  1211. margin: 0.5em 0 0;
  1212. a{
  1213. @include title2black;
  1214. &.router-link-active{
  1215. font-weight: 600;
  1216. }
  1217. }
  1218. }
  1219. }
  1220. .biblio-item{
  1221. h2{
  1222. color: $bleuroi;
  1223. }
  1224. p{
  1225. span.label{
  1226. font-weight: 600;
  1227. }
  1228. }
  1229. }
  1230. ul.item-list{
  1231. margin:0;
  1232. padding:0;
  1233. li{
  1234. padding:0;
  1235. margin:0 0 $base-line 0;
  1236. h2{
  1237. margin:0;
  1238. @include title1black;
  1239. color: $bleuroi;
  1240. }
  1241. p{
  1242. margin:0;
  1243. }
  1244. span.date{
  1245. @include title2black;
  1246. font-weight: 600;
  1247. }
  1248. aside{
  1249. overflow: hidden;
  1250. h5{
  1251. @include title2black;
  1252. margin: $base-line / 2 0;
  1253. cursor: pointer;
  1254. // padding-left: 1em;
  1255. // position: relative;
  1256. &:before{
  1257. cursor: pointer;
  1258. content:"\2304";
  1259. position: relative;
  1260. display: inline-block;
  1261. top: -4px;
  1262. // transform-origin: center;
  1263. // transform: rotateZ(-90deg);
  1264. }
  1265. }
  1266. ul{
  1267. max-height: 1px;
  1268. transition: all 0.3s ease-in-out;
  1269. padding-left: 1em;
  1270. overflow-y: hidden;
  1271. li{
  1272. margin-bottom: $base-line / 2;
  1273. }
  1274. }
  1275. &.opened{
  1276. h5{
  1277. &:before{
  1278. top: 4px;
  1279. content:"\2303";
  1280. // transform: rotateZ(90deg);
  1281. }
  1282. }
  1283. ul{
  1284. max-height: 100em;
  1285. }
  1286. }
  1287. }
  1288. }
  1289. &.manifestations{
  1290. li{
  1291. max-height: 0.2px;
  1292. margin-bottom:0;
  1293. overflow: hidden;
  1294. transition: all 1s ease-in-out;
  1295. &.active{
  1296. max-height: 10em;
  1297. }
  1298. .wrapper{
  1299. margin-bottom: $base-line;
  1300. }
  1301. }
  1302. }
  1303. }
  1304. ul.authors-filters{
  1305. li{
  1306. @include title4black;
  1307. line-height: $base-line / 2;
  1308. span{
  1309. cursor: pointer;
  1310. color: $gris;
  1311. &.active{
  1312. color: $grisfonce;
  1313. }
  1314. }
  1315. }
  1316. }
  1317. >nav{
  1318. aside.links{
  1319. position: absolute;
  1320. bottom: 0;
  1321. }
  1322. }
  1323. }
  1324. #static{
  1325. @include fontsans;
  1326. >header{
  1327. display: flex;
  1328. flex-direction: column;
  1329. flex-wrap: nowrap;
  1330. h1{
  1331. @include titleSansRed;
  1332. margin-bottom: $base-line * 0.4;
  1333. flex: 0 0 auto;
  1334. }
  1335. nav.toc{
  1336. flex: 1 1 auto;
  1337. overflow-y: auto;
  1338. span.sommaire-title{ display:none; }
  1339. >div.wrapper{
  1340. height:100%;
  1341. overflow-y: auto;
  1342. }
  1343. li{
  1344. a{
  1345. font-size: 1em;
  1346. line-height: $base-line * 0.7;
  1347. font-weight: 300;
  1348. }
  1349. }
  1350. // responsive
  1351. @media only screen and (max-width: $small-bp), (orientation: portrait) {
  1352. $top: 80px;
  1353. z-index: 110;
  1354. position: absolute;
  1355. top:$top;
  1356. left:0;
  1357. background-color: #fff;
  1358. width:percentage(7/$default_sum);
  1359. box-sizing: border-box;
  1360. padding-top: 1em;
  1361. padding-bottom: 1em;
  1362. height:calc(100% - #{$top});
  1363. overflow-y: auto;
  1364. transform: translateX(-100%);
  1365. transition: transform 0.3s ease-in-out;
  1366. >div.wrapper{
  1367. padding-right: 2em;
  1368. height: 100%;
  1369. overflow-y: auto;
  1370. }
  1371. span.sommaire-title{
  1372. display: block;
  1373. position: absolute;
  1374. top:4.5em; right:-2em;
  1375. transform: rotateZ(-90deg);
  1376. transform-origin: center;
  1377. @include fontsans;
  1378. font-size: 0.600em;
  1379. cursor: pointer;
  1380. color: $bleuroi;
  1381. svg{
  1382. vertical-align: bottom;
  1383. transform-origin: center;
  1384. transform: scale(0.8) rotate(0);
  1385. transition: transform 0.3s ease-in-out;
  1386. path{
  1387. fill: $bleuroi;
  1388. }
  1389. }
  1390. }
  1391. &.opened{
  1392. box-shadow: 3px 3px 5px $grisclair;
  1393. transform: translateX(0);
  1394. span.sommaire-title{
  1395. svg{
  1396. transform: scale(0.7) rotate(180deg);
  1397. }
  1398. }
  1399. }
  1400. }
  1401. }
  1402. }
  1403. >section{
  1404. h1{
  1405. font-weight: 400;
  1406. color: $bleuroi;
  1407. }
  1408. p{
  1409. margin-top:0;
  1410. font-size: 1em;
  1411. line-height: $base-line * 0.7;
  1412. font-weight: 300;
  1413. }
  1414. dl{
  1415. font-size: 1em;
  1416. line-height: $base-line * 0.7;
  1417. font-weight: 300;
  1418. span.label{
  1419. font-weight: 400;
  1420. }
  1421. dd{
  1422. margin: 0;
  1423. }
  1424. margin-bottom: $base-line;
  1425. }
  1426. a{
  1427. font-size: 1em;
  1428. line-height: $base-line * 0.7;
  1429. font-weight: 300;
  1430. border-bottom: 1px dotted #1a1a1a;
  1431. // margin-bottom: $base-line * 0.5;
  1432. display: inline-block;
  1433. }
  1434. figure{
  1435. margin: 2em 0;
  1436. img{
  1437. max-width: 100%;
  1438. }
  1439. figcaption{
  1440. @include fontcaption;
  1441. padding: 1em 0;
  1442. }
  1443. }
  1444. }
  1445. }
  1446. }
  1447. footer[role="tools"]{
  1448. $list-item-h: 7em;
  1449. @mixin resultItem{
  1450. box-sizing: border-box;
  1451. // we are only on 10 colls as 2 are occupied by sides
  1452. flex-basis: percentage(2/($default_sum - 2));
  1453. max-height: $list-item-h;
  1454. overflow: hidden;
  1455. padding-bottom: 1em;
  1456. padding-right: $default_gap;
  1457. article{
  1458. max-height: 100%;
  1459. overflow: hidden;
  1460. }
  1461. article.item{
  1462. h1{
  1463. @include title3black;
  1464. font-size: 0.9em;
  1465. font-weight: 600;
  1466. max-width: 95%;
  1467. word-break:normal;
  1468. }
  1469. h2{
  1470. @include title3black;
  1471. text-transform: none;
  1472. }
  1473. span{
  1474. font-size: 0.882em;
  1475. }
  1476. // .preview{
  1477. // font-size: 0.882em;
  1478. // margin:0;
  1479. // code{
  1480. // @include fontserif;
  1481. // background-color: lighten(desaturate($rouge,20%), 20%);
  1482. // padding:0 0.2em;
  1483. // }
  1484. // }
  1485. }
  1486. }
  1487. #history{
  1488. z-index: 8;
  1489. background-color: $or;
  1490. padding:1.2em $side-padding;
  1491. max-height: $list-item-h;
  1492. @include accordeon-transition($list-item-h);
  1493. >header{
  1494. }
  1495. .history-list{
  1496. overflow-x: hidden;
  1497. .wrapper{
  1498. height:100%;
  1499. // hidding the scrollbar
  1500. overflow-y: auto;
  1501. // width:calc(100% + 1em);
  1502. padding-right: 1em;
  1503. >ul{
  1504. padding:0;
  1505. display: flex;
  1506. flex-direction: row;
  1507. flex-wrap: wrap;
  1508. }
  1509. }
  1510. li.item{
  1511. @include resultItem;
  1512. }
  1513. }
  1514. }
  1515. #results{
  1516. z-index: 9;
  1517. background-color: $gris;
  1518. padding:1.2em $side-padding;
  1519. @media only screen and (max-width: $small-bp), (orientation: portrait) {
  1520. padding:1.2em $side-padding/2;
  1521. }
  1522. max-height: $list-item-h * 3;
  1523. @include accordeon-transition($list-item-h * 3);
  1524. >header{
  1525. >*{
  1526. // padding:0 0 5px;
  1527. // line-height: $base-line / 2;
  1528. &.v-select{
  1529. padding-top:5px;
  1530. }
  1531. }
  1532. div.results-details{
  1533. line-height: $base-line * 0.5;
  1534. >*{
  1535. display: block;
  1536. }
  1537. .search-keys{
  1538. font-size: 0.756em;
  1539. font-weight: 500;
  1540. }
  1541. .results-count{
  1542. white-space:nowrap;
  1543. font-size: 0.756em;
  1544. }
  1545. }
  1546. }
  1547. .results-list{
  1548. overflow-x: hidden;
  1549. .wrapper{
  1550. position:relative;
  1551. height:100%;
  1552. // hidding the scrollbar
  1553. overflow-y: auto;
  1554. // width:calc(100% + 1em);
  1555. padding-right: 1em;
  1556. >ul{
  1557. padding:0;
  1558. display: flex;
  1559. flex-direction: row;
  1560. flex-wrap: wrap;
  1561. }
  1562. }
  1563. li.result{
  1564. @include resultItem;
  1565. }
  1566. .infinite-loading-container{
  1567. // TODO: how to center the loading
  1568. }
  1569. }
  1570. >header, section.results-list{
  1571. transition: opacity 0.2s ease-in-out;
  1572. }
  1573. &.loading {
  1574. >header, section.results-list{
  1575. transition: opacity 0.5s ease-in-out;
  1576. opacity:0.5;
  1577. pointer-events: none;
  1578. }
  1579. }
  1580. // responsive
  1581. @media only screen and (max-width: $small-bp), (orientation: portrait) {
  1582. position: relative;
  1583. >header{
  1584. padding:0 0 1em 0;
  1585. >*{
  1586. display: inline-block;
  1587. margin-right: 1em;
  1588. }
  1589. div.results-details{
  1590. >*{
  1591. display: inline-block;
  1592. &:not(:last-child){
  1593. padding-right: 1em;
  1594. }
  1595. }
  1596. }
  1597. #sorting{
  1598. width:10em;
  1599. }
  1600. }
  1601. >section.results-list{
  1602. max-height: 15em;
  1603. li.result{
  1604. flex-basis: 33%;
  1605. }
  1606. }
  1607. >nav{
  1608. position: absolute;
  1609. top:1.2em; right:1.2em;
  1610. }
  1611. }
  1612. }
  1613. #footer-bottom{
  1614. z-index: 10;
  1615. padding:0 $side-padding;
  1616. @media only screen and (max-width: $small-bp), (orientation: portrait) {
  1617. padding:0 $side-padding/2;
  1618. flex-wrap: nowrap;
  1619. }
  1620. background-color: $bleuroi;
  1621. &>*{
  1622. // disable grid gap
  1623. padding-right: 0;
  1624. flex-grow: 0;
  1625. flex-shrink: 0;
  1626. }
  1627. #footer-tabs{
  1628. ul{
  1629. padding:0; margin:0;
  1630. display: flex;
  1631. flex-direction: column;
  1632. li{
  1633. flex: 1 1 auto;
  1634. .wrapper{
  1635. box-sizing: border-box;
  1636. line-height: 0.6em;
  1637. height:2em;
  1638. width: calc(100% + $side-padding);
  1639. margin-left:-$side-padding;
  1640. padding:0.3em 0.5em 0.3em $side-padding;
  1641. @media only screen and (max-width: $small-bp), (orientation: portrait) {
  1642. padding: 0.3em 0em 0.3em 2em;
  1643. }
  1644. }
  1645. &.history .wrapper{
  1646. background-color: $or;
  1647. }
  1648. &.results .wrapper{
  1649. background-color: $gris;
  1650. }
  1651. span{
  1652. font-size: 0.693em;
  1653. font-weight: 400;
  1654. text-transform: uppercase;
  1655. cursor: pointer;
  1656. @include fade-transition;
  1657. }
  1658. }
  1659. }
  1660. }
  1661. #search{
  1662. color: #fff;
  1663. background-color: $bleuroi;
  1664. form{
  1665. padding: 0;
  1666. // display: flex;
  1667. // flex-direction: row;
  1668. // flex-wrap: wrap;
  1669. fieldset{
  1670. padding:0.7em 1em;
  1671. border: none;
  1672. box-sizing:border-box;
  1673. // width correction as row is not the same width as others in the page
  1674. // flex-basis: percentage(2/($default_sum - 1));
  1675. // flex-basis: 17.667%;
  1676. // flex-basis: percentage(2 / 11);
  1677. &:not(:first-of-type){
  1678. border-left: 1px solid $grisclair;
  1679. }
  1680. }
  1681. fieldset.search{
  1682. display: inline-flex;
  1683. align-items: center;
  1684. >div{
  1685. width:80%;
  1686. vertical-align: middle;
  1687. }
  1688. label[for="keys"]{
  1689. display: none;
  1690. }
  1691. input[type="text"]{
  1692. padding:0em 0.3em;
  1693. margin:0 0 0.3em 0;
  1694. box-sizing: border-box;
  1695. font-size: 0.756em;
  1696. line-height: 1;
  1697. width:100%;
  1698. height:1.4em;
  1699. border:none;
  1700. border-radius: 2px;
  1701. }
  1702. span.mdi{
  1703. display: inline-block;
  1704. margin:0 0 0 0.5em;
  1705. font-size: 1.2em;
  1706. line-height:1.1;
  1707. vertical-align:middle;
  1708. width:1.2em; height:1.2em;
  1709. border-radius: 0.6em;
  1710. background-color: #fff;
  1711. color: $bleuroi;
  1712. text-align: center;
  1713. font-weight: 700;
  1714. cursor: pointer;
  1715. }
  1716. }
  1717. }
  1718. fieldset.filters{
  1719. .vs__actions{
  1720. // background-color: $grisclair;
  1721. align-items:baseline;
  1722. padding-top:0.2em;
  1723. }
  1724. }
  1725. form{
  1726. transition: opacity 0.2s ease-in-out;
  1727. }
  1728. &.loading{
  1729. form{
  1730. opacity:0.5;
  1731. transition: opacity 0.5s ease-in-out;
  1732. pointer-events: none;
  1733. }
  1734. }
  1735. // responsive
  1736. @media only screen and (max-width: $small-bp), (orientation: portrait) {
  1737. form{
  1738. fieldset{
  1739. &.search{
  1740. >div{
  1741. display: inline-flex;
  1742. flex-wrap: nowrap;
  1743. width:84%;
  1744. >*{
  1745. flex-basis: 45%;
  1746. margin: 0 0.5em 0 0;
  1747. // box-sizing: content-box;
  1748. // width:auto!important;
  1749. &#keys[type="text"]{
  1750. margin-right:1.5em;
  1751. }
  1752. }
  1753. }
  1754. span.mdi{
  1755. width:1em; height:1em;
  1756. margin-top: -0.1em;
  1757. margin-left: 0;
  1758. }
  1759. }
  1760. &.filters{
  1761. border-left: none;
  1762. flex-basis: 32%;
  1763. padding: 0.2em 0 1em 1em;
  1764. }
  1765. }
  1766. }
  1767. }
  1768. }
  1769. ;
  1770. #logos{
  1771. // max-height: 100%;
  1772. position: relative;
  1773. flex-shrink: 1;
  1774. // display: flex;
  1775. // flex-direction: row;
  1776. // justify-content: flex-end;
  1777. .wrapper{
  1778. position: relative;
  1779. box-sizing: content-box;
  1780. // max-height: 50px;
  1781. padding:1em;
  1782. text-align: right;
  1783. height: 30px;
  1784. img{
  1785. // display: inline-block;
  1786. height: 100%;
  1787. padding-left: 1em;
  1788. }
  1789. }
  1790. }
  1791. }
  1792. h2{
  1793. margin:0;
  1794. font-size: 0.756em;
  1795. font-weight: 400;
  1796. text-transform: uppercase;
  1797. padding:0;
  1798. }
  1799. }
  1800. // vue-select
  1801. .v-select{
  1802. padding:0;
  1803. div[role="combobox"]{
  1804. background-color: #fff;
  1805. padding:0;
  1806. border-radius: 2px;
  1807. border: none;
  1808. }
  1809. input[type="search"]{
  1810. margin:0;
  1811. padding:0;
  1812. -webkit-appearance:textfield;
  1813. -webkit-box-sizing:content-box;
  1814. }
  1815. input::-webkit-search-decoration,
  1816. input::-webkit-search-cancel-button {
  1817. display: none;
  1818. }
  1819. .vs__search{
  1820. &, &:focus{
  1821. font-size: 0.756em;
  1822. line-height: 1;
  1823. height:1.2em;
  1824. border:none;
  1825. box-sizing: border-box;
  1826. }
  1827. }
  1828. .vs__dropdown-toggle{
  1829. input::placeholder{background-color: #fff;}
  1830. }
  1831. .vs__selected-options{
  1832. background-color: #fff;
  1833. height:18px;
  1834. >input{
  1835. height:100%;
  1836. }
  1837. }
  1838. .vs__actions{
  1839. padding:1px 3px;
  1840. button.vs__clear{
  1841. line-height: 0.5;
  1842. // height:0;
  1843. }
  1844. svg[role="presentation"]{
  1845. transform: scale(0.8);
  1846. path{
  1847. fill: $bleuroi;
  1848. }
  1849. }
  1850. }
  1851. .vs__selected{
  1852. margin:0;
  1853. padding:0.2em 0;
  1854. line-height:1;
  1855. font-size: 0.756em;
  1856. background-color: #fff;
  1857. border:none;
  1858. align-items: middle;
  1859. box-sizing: content-box;
  1860. display: inline-block;
  1861. width: calc(100% - 12px);
  1862. @include fontsans;
  1863. // &>*:not(button){
  1864. // display: inline-block;
  1865. // width:70%;
  1866. // }
  1867. button{
  1868. svg{
  1869. transform: scale(0.8);
  1870. path{
  1871. fill: $bleuroi;
  1872. }
  1873. }
  1874. &.vs__deselect{
  1875. line-height: 0;
  1876. }
  1877. }
  1878. }
  1879. // border-radius: 2px;
  1880. // border: none;
  1881. }
  1882. ul[role="listbox"]{
  1883. @include fontsans;
  1884. padding:0;
  1885. margin:0;
  1886. border:none;
  1887. position: relative;
  1888. li{
  1889. box-sizing: content-box;
  1890. padding:0.3em;
  1891. margin:0;
  1892. font-size: 0.756em;
  1893. line-height: 1;
  1894. white-space: normal;
  1895. position: relative;
  1896. *{
  1897. max-width: 100%;
  1898. }
  1899. h3{
  1900. @include title1black;
  1901. color: $bleuroi;
  1902. padding: 0.5em 0 0 0.3em;
  1903. span.hi{
  1904. font-variant-position: super;
  1905. }
  1906. }
  1907. }
  1908. }
  1909. // ___
  1910. // |_ _|__ ___ _ _ __
  1911. // | |/ _/ _ \ ' \(_-<
  1912. // |___\__\___/_||_/__/
  1913. span.mdi-close{
  1914. cursor: pointer;
  1915. }
  1916. @keyframes spin {
  1917. from {
  1918. transform:rotate(0deg);
  1919. }
  1920. to {
  1921. transform:rotate(360deg);
  1922. }
  1923. }
  1924. span.mdi-loading{
  1925. animation-name: spin;
  1926. animation-duration: 2000ms;
  1927. animation-iteration-count: infinite;
  1928. animation-timing-function: linear;
  1929. }
  1930. // _ _ _
  1931. // | | ___ __ _ __| (_)_ _ __ _
  1932. // | |__/ _ \/ _` / _` | | ' \/ _` |
  1933. // |____\___/\__,_\__,_|_|_||_\__, |
  1934. // |___/
  1935. span.loading{
  1936. @include fontsans;
  1937. font-size: 0.756em;
  1938. color: $grisfonce;
  1939. animation: pulseloading 4s infinite;
  1940. }
  1941. @keyframes pulseloading{
  1942. 0% {
  1943. opacity: 1;
  1944. }
  1945. 50%{
  1946. opacity: 0;
  1947. }
  1948. 100% {
  1949. opacity: 1;
  1950. }
  1951. }