app.scss 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550
  1. @import './base/reset';
  2. @import './base/variables';
  3. @import './base/colors';
  4. @import './base/grid-flex';
  5. @import './base/layout';
  6. @import './base/fonts';
  7. @import './base/transitions';
  8. body{
  9. color: #1a1a1a;
  10. }
  11. #root{
  12. }
  13. .red{
  14. background-color: red;
  15. color:white;
  16. }
  17. header[role="banner"]{
  18. div.wrapper{
  19. display: grid;
  20. grid-template-columns: 1fr 1fr;
  21. }
  22. h1.site-title{
  23. grid-column: 1;
  24. margin:0;
  25. font-size: 1em;
  26. }
  27. nav#header-menu{
  28. grid-column: 2;
  29. text-align: right;
  30. >ul>li{
  31. display: inline-block;
  32. margin-right: 1em;
  33. position: relative;
  34. >ul{
  35. position: absolute;
  36. top:1em; right:-1em;
  37. overflow: hidden;
  38. padding-bottom: 0.5em;
  39. background-color: white;
  40. >li{
  41. padding:0 1em;
  42. // margin-right: -1em;
  43. transition: height 0.3s ease-in-out;
  44. height:0;
  45. overflow: hidden;
  46. }
  47. }
  48. &:hover{
  49. >ul>li{
  50. height:1em;
  51. }
  52. }
  53. }
  54. li>span,li>a{
  55. font-size: 0.9em;
  56. color: $bleuroi;
  57. text-transform: uppercase;
  58. }
  59. }
  60. }
  61. section[role="main-content"]{
  62. #home{
  63. header{
  64. text-align: center;
  65. h1{
  66. color: $bleuroi;
  67. font-size: 8em;
  68. font-weight: 300;
  69. margin:15vh 0 0;
  70. }
  71. h2{
  72. color: $or;
  73. font-size: 2em;
  74. font-weight: 300;
  75. margin:1em 0 0;
  76. text-transform: uppercase;
  77. letter-spacing: 0.2em;
  78. sup{
  79. // line-height: 5em;
  80. vertical-align:text-top;
  81. font-size: 0.7em
  82. }
  83. }
  84. }
  85. $filet_space:8em;
  86. $decallage: 0.5em;
  87. section{
  88. padding-top: $filet_space;
  89. }
  90. div.teasers{
  91. display: flex;
  92. flex-direction: row;
  93. flex-wrap: nowrap;
  94. position: relative;
  95. padding-right: 0;
  96. article{
  97. box-sizing: border-box;
  98. flex-basis: percentage(2 / ( $default_sum - 6) );
  99. padding-right: $default_gap;
  100. @include fontsans;
  101. h1{
  102. color: $bleuroi;
  103. }
  104. p{
  105. font-size: 0.882em;
  106. line-height: 1.2;
  107. }
  108. span{
  109. color:$rouge;
  110. font-size:0.693em;
  111. }
  112. }
  113. // filets decoratif
  114. &:before, &:after{
  115. z-index: 0;
  116. content: "";
  117. position: absolute;
  118. opacity: 0.4;
  119. }
  120. &:before{
  121. border:1px solid $or;
  122. width:calc(100% + #{$filet_space*2 + $decallage*2});
  123. left:- $filet_space - $default_gap/2 -$decallage;
  124. height:calc(100% + #{$filet_space});
  125. top:- $filet_space / 2;
  126. }
  127. &:after{
  128. border:1px solid $rouge;
  129. width:calc(100% + #{$filet_space*2});
  130. left:- $filet_space - $default_gap/2;
  131. height:calc(100% + #{$filet_space + $decallage*2});
  132. top:- $filet_space / 2 - $decallage;
  133. }
  134. }
  135. }
  136. #list-corpus, .index{
  137. >header>h1{
  138. font-family: "noto_sans";
  139. color: $rouge;
  140. font-weight: 400;
  141. }
  142. article.item{
  143. margin: 2em 0 0;
  144. header h1{
  145. font-size: 1.512em;
  146. color: $bleuroi;
  147. font-weight: 400;
  148. margin:0;
  149. }
  150. }
  151. ul.item-list{
  152. li{
  153. margin: 0 0 2em 0;
  154. header{
  155. h2{
  156. margin:0.4em 0 0.2em;
  157. @include title1blue;
  158. }
  159. h3{
  160. margin:0.2em 0;
  161. @include fontsans;
  162. font-size: 0.756em;
  163. font-weight: 500;
  164. }
  165. margin-bottom: 0.3em;
  166. }
  167. section.editions{
  168. div.editions{
  169. ol{
  170. padding:0;
  171. li{
  172. margin:0.7em 1em;
  173. }
  174. }
  175. }
  176. }
  177. h4{
  178. margin:0.1em 0;
  179. font-weight: 300;
  180. @include fontsans;
  181. font-size: 0.756em;
  182. &.texts-quantity{
  183. color: $rouge;
  184. // &:after{
  185. // content: ">>";
  186. // margin:0 0 0 0.5em;
  187. // }
  188. }
  189. }
  190. ul {
  191. li{
  192. margin:0 0 0 1em;
  193. h3{
  194. margin: 0.5em 0;
  195. font-weight: 400;
  196. font-size: 1em;
  197. }
  198. }
  199. }
  200. }
  201. }
  202. }
  203. #corpus{
  204. }
  205. .index{
  206. }
  207. #edition{
  208. header{
  209. h1{
  210. @include title2black;
  211. }
  212. }
  213. >section{
  214. div#text{
  215. // >h1{
  216. // @include title1blue;
  217. // }
  218. div.tei{
  219. // >h1{display: none;}
  220. >h1{@include title1blue;}
  221. span.placeName,
  222. span.objectName,
  223. span.persName{
  224. font-weight: 600;
  225. }
  226. }
  227. }
  228. }
  229. >nav{
  230. >section{
  231. padding:0 0 0 1.5em;
  232. >ul{
  233. ul{
  234. li{
  235. ul{
  236. overflow: hidden;
  237. max-height: 1000px;
  238. transition: max-height 0.5s ease-in-out;
  239. // transform: scaleY(1);
  240. // transform-origin: top;
  241. // transition: transform 0.3s ease-in-out;
  242. &:not(.opened){
  243. // height:0;
  244. max-height:0;
  245. transition: max-height 0.5s cubic-bezier(0, 1.05, 0, 1);
  246. // transform: scaleY(0);
  247. }
  248. // &.opened{
  249. // border: 1px solid red;
  250. // }
  251. // padding-left: 1em;
  252. border-left: 0.5px solid $grisclair;
  253. // min-height: 1em;
  254. margin-bottom: 0em;
  255. li{
  256. // min-height: 1em;
  257. // border-left: 1px solid red;
  258. padding:0 0 0.2em 1em;
  259. }
  260. }
  261. }
  262. }
  263. .toc-title{
  264. color: $gris;
  265. font-weight: 400;
  266. margin:0;
  267. &.active,
  268. &:hover{
  269. color:$grisfonce;
  270. }
  271. }
  272. h2.toc-title{font-size: 0.882em;}
  273. h3.toc-title{font-size: 0.882em;}
  274. h4.toc-title{font-size: 0.882em;}
  275. h5.toc-title{font-size: 0.882em;}
  276. h6.toc-title{font-size: 0.882em;}
  277. }
  278. }
  279. }
  280. }
  281. #text{
  282. .content{
  283. color: $bleuroi;
  284. h1{
  285. font-size: 1.512em;
  286. }
  287. p{
  288. font-size: 1.134em;
  289. line-height: 1.5;
  290. span.persName,
  291. span.placeName,
  292. span.objectName{
  293. font-weight: 600;
  294. }
  295. }
  296. }
  297. }
  298. }
  299. footer[role="tools"]{
  300. $list-item-h: 5.3em;
  301. #history{
  302. z-index: 8;
  303. background-color: $or;
  304. padding:1.2em $side-padding;
  305. max-height: $list-item-h;
  306. @include accordeon-transition($list-item-h);
  307. >header{
  308. }
  309. .history-list{
  310. overflow-x: hidden;
  311. .wrapper{
  312. height:100%;
  313. // hidding the scrollbar
  314. overflow-y: auto;
  315. width:calc(100% + 1em);
  316. padding-right: 1em;
  317. >ul{
  318. padding:0;
  319. display: flex;
  320. flex-direction: row;
  321. flex-wrap: wrap;
  322. }
  323. }
  324. li.item{
  325. box-sizing: border-box;
  326. // we are only on 10 colls as 2 are occupied by sides
  327. flex-basis: percentage(2/($default_sum - 2));
  328. height: $list-item-h;
  329. overflow: hidden;
  330. padding-bottom: 1em;
  331. padding-right: $default_gap;
  332. article{
  333. max-height: 100%;
  334. overflow: hidden;
  335. }
  336. }
  337. article.history.item{
  338. header{
  339. h1{
  340. font-size: 0.882em;
  341. font-weight: normal;
  342. margin:0 0 0.5em 0;
  343. }
  344. }
  345. .extract{
  346. p{
  347. font-size: 0.882em;
  348. margin:0;
  349. }
  350. code{
  351. background-color: lighten(desaturate($rouge,20%), 20%);
  352. }
  353. }
  354. }
  355. }
  356. }
  357. #results{
  358. z-index: 9;
  359. background-color: $gris;
  360. padding:1.2em $side-padding;
  361. max-height: $list-item-h * 3;
  362. @include accordeon-transition($list-item-h * 3);
  363. >header{
  364. .search-keys{
  365. font-size: 0.756em;
  366. font-weight: 500;
  367. }
  368. .results-count{
  369. font-size: 0.756em;
  370. }
  371. }
  372. .results-list{
  373. overflow-x: hidden;
  374. .wrapper{
  375. height:100%;
  376. // hidding the scrollbar
  377. overflow-y: auto;
  378. width:calc(100% + 1em);
  379. padding-right: 1em;
  380. >ul{
  381. padding:0;
  382. display: flex;
  383. flex-direction: row;
  384. flex-wrap: wrap;
  385. }
  386. }
  387. li.result{
  388. box-sizing: border-box;
  389. // we are only on 10 colls as 2 are occupied by sides
  390. flex-basis: percentage(2/($default_sum - 2));
  391. height: $list-item-h;
  392. overflow: hidden;
  393. padding-bottom: 1em;
  394. padding-right: $default_gap;
  395. article{
  396. max-height: 100%;
  397. overflow: hidden;
  398. }
  399. }
  400. article.result.item{
  401. header{
  402. h1{
  403. font-size: 0.882em;
  404. font-weight: normal;
  405. margin:0 0 0.5em 0;
  406. }
  407. }
  408. .extract{
  409. p{
  410. font-size: 0.882em;
  411. margin:0;
  412. }
  413. code{
  414. background-color: lighten(desaturate($rouge,20%), 20%);
  415. }
  416. }
  417. }
  418. }
  419. }
  420. #footer-bottom{
  421. z-index: 10;
  422. padding:0 $side-padding;
  423. background-color: $bleuroi;
  424. &>*{
  425. // disable grid gap
  426. padding-right: 0;
  427. }
  428. #footer-tabs{
  429. ul{
  430. padding:0; margin:0;
  431. display: flex;
  432. flex-direction: column;
  433. li{
  434. flex: 1 1 auto;
  435. .wrapper{
  436. box-sizing: border-box;
  437. line-height: 0.6em;
  438. height:2em;
  439. width: calc(100% + $side-padding);
  440. margin-left:-$side-padding;
  441. padding:0.3em 0.5em 0.3em $side-padding;
  442. }
  443. &.history .wrapper{
  444. background-color: $or;
  445. }
  446. &.results .wrapper{
  447. background-color: $gris;
  448. }
  449. span{
  450. font-size: 0.693em;
  451. font-weight: 400;
  452. text-transform: uppercase;
  453. cursor: pointer;
  454. @include fade-transition;
  455. }
  456. }
  457. }
  458. }
  459. #search{
  460. color: #fff;
  461. background-color: $bleuroi;
  462. form{
  463. padding: 0.7em;
  464. label[for="keys"]{
  465. display: none;
  466. }
  467. input[type="text"]{
  468. padding:0.3em;
  469. font-size: 0.756em;
  470. line-height: 1;
  471. height:1em;
  472. border:none;
  473. border-radius: 2px;
  474. }
  475. // input[type="submit"]{
  476. // #submit-search{
  477. // border:none;
  478. //
  479. // }
  480. // }
  481. span.mdi{
  482. display: inline-block;
  483. font-size: 1.2em;
  484. line-height:1.1;
  485. vertical-align:middle;
  486. width:1.2em; height:1.2em;
  487. border-radius: 0.6em;
  488. background-color: #fff;
  489. color: $bleuroi;
  490. text-align: center;
  491. font-weight: 700;
  492. cursor: pointer;
  493. }
  494. }
  495. }
  496. }
  497. h2{
  498. margin:0;
  499. font-size: 0.756em;
  500. font-weight: 400;
  501. text-transform: uppercase;
  502. padding:0;
  503. }
  504. }
  505. // ___
  506. // |_ _|__ ___ _ _ ___
  507. // | |/ _/ _ \ ' \(_-<
  508. // |___\__\___/_||_/__/
  509. span.mdi-close{
  510. cursor: pointer;
  511. }
  512. @keyframes spin {
  513. from {
  514. transform:rotate(0deg);
  515. }
  516. to {
  517. transform:rotate(360deg);
  518. }
  519. }
  520. span.mdi-loading{
  521. animation-name: spin;
  522. animation-duration: 2000ms;
  523. animation-iteration-count: infinite;
  524. animation-timing-function: linear;
  525. }