app.scss 42 KB

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