app.scss 42 KB

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