main.scss 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678
  1. // @Author: Bachir Soussi Chiadmi <bach>
  2. // @Date: 16-04-2017
  3. // @Email: bachir@figureslibres.io
  4. // @Last modified by: bach
  5. // @Last modified time: 18-04-2017
  6. // @License: GPL-V3
  7. $fs:16px;
  8. @mixin base_font{
  9. font-family: 'amiri', sans-serif;
  10. font-size: $fs;
  11. font-kerning: auto;
  12. line-height: 1.4;
  13. }
  14. html, body{
  15. @include base_font;
  16. position: relative;
  17. margin:0;
  18. padding:0;
  19. }
  20. $header_height:5em;
  21. $footer_height:3em;
  22. $dot_w:550px;
  23. $bullet_w:40px;
  24. $margin_left:50px + ($bullet_w/2);
  25. header{
  26. position: fixed;
  27. width:100%; height:$header_height;
  28. top:0; z-index: 5;
  29. background-color: white;
  30. // padding: 0 0 0 $margin_left;
  31. // outline: 1px solid green;
  32. >*{
  33. display: inline-block;
  34. vertical-align: text-bottom;
  35. // &:first-child{ margin-left: 1em;}
  36. &:last-child{ margin-right: 1em;}
  37. }
  38. hgroup{
  39. margin: 0 4em 0 $margin_left;
  40. h1,h2{
  41. margin:0; padding:0;
  42. line-height: 1;
  43. }
  44. h1{font-size: 3em;}
  45. h2{line-height: 1;}
  46. }
  47. #menus{
  48. // float:right;
  49. >*{
  50. display: inline-block;
  51. vertical-align: top;
  52. }
  53. nav {
  54. padding:0 1em;
  55. position: relative;
  56. h3{
  57. margin:0; padding:0;
  58. line-height: 1;
  59. cursor: pointer;
  60. transition: color 0.3s ease-in-out;
  61. }
  62. ul{
  63. position: absolute;
  64. margin:0;
  65. left:0; padding:0 1em 0;
  66. background-color: rgba(255,255,255, 1);
  67. // top:2em;
  68. white-space: nowrap;
  69. li{
  70. position: relative;
  71. margin:0;
  72. padding:0;
  73. list-style: none;
  74. transition: color 0.3s ease-in-out;
  75. font-weight:500;
  76. font-size: 1.2em;
  77. line-height: 1.2;
  78. &:not(.active){
  79. height:0px; opacity:0;
  80. overflow: hidden;
  81. transition: opacity 0.3s ease-in-out;
  82. }
  83. // &.active{
  84. // z-index: 99;
  85. // }
  86. a{
  87. color: inherit;
  88. text-decoration: none;
  89. display: inline-block;
  90. width: 100%;
  91. &:active,
  92. &:focus{ outline:none; -moz-outline-style: none; }
  93. }
  94. &.active{
  95. a:after{
  96. content: " \1F7AC";
  97. font-style: normal;
  98. font-size: 0.7em;
  99. font-weight: 300;
  100. }
  101. }
  102. }
  103. }
  104. }
  105. // nav#parts-nav{
  106. // ul{
  107. // right:0; left: auto;
  108. // }
  109. // }
  110. &:hover{
  111. h3{
  112. color: rgb(100,100,100);
  113. }
  114. nav:hover{
  115. z-index: 10;
  116. h3{
  117. color:#000;
  118. }
  119. ul{
  120. padding-bottom: 1em;
  121. }
  122. li{
  123. height:auto; opacity: 1;
  124. transition: height opacity 0.3s ease-in-out;
  125. color: rgb(100,100,100);
  126. &:hover{
  127. color: #000;
  128. }
  129. }
  130. }
  131. }
  132. }
  133. }
  134. // #app{
  135. // position: relative;
  136. // text-align: center;
  137. // margin: 3em auto;
  138. // }
  139. #db-loader{
  140. position: relative;
  141. width:300px;
  142. height:1px;
  143. background-color: black;
  144. margin-left: $margin_left;
  145. #db-loaded{
  146. position: absolute;
  147. top:-1px; left:0;
  148. width: 0%;
  149. height:3px;
  150. background-color: black;
  151. transition: width 1.2s;
  152. }
  153. }
  154. .sticky-clone-wrapper{
  155. padding-top: $header_height;
  156. // padding-bottom: 1em;
  157. position: fixed;
  158. top:0; left: 0;
  159. z-index: 4;
  160. width:100%;
  161. background-color: white;
  162. h1.part-title{
  163. // // font-size: 1.6em;
  164. // // body.mode-connections &{
  165. // // margin: 0 0 0 $margin_left;
  166. // }
  167. // body.mode-text &{
  168. margin:0 0 0 $margin_left;
  169. // }
  170. }
  171. // h2.title{
  172. // font-size: 1em;
  173. // body.mode-connections &{
  174. // margin: 0 0 0 $margin_left;
  175. // }
  176. // body.mode-text &{
  177. // margin:0 0 0 $margin_left;
  178. // }
  179. // }
  180. }
  181. main#content{
  182. margin-top: $header_height;
  183. margin-bottom: $footer_height;
  184. // margin: 5em;
  185. // width: 450px;
  186. // &>*{
  187. // width: 450px;
  188. // }
  189. // h1.part-title{
  190. // font-size: 1.6em;
  191. // width:450px;
  192. // }
  193. section.part{
  194. position: relative;
  195. margin-bottom:2em;
  196. }
  197. // h2.title, h2.filet{
  198. // font-size: 1em;
  199. // width:450px;
  200. // // margin: 1em 0;
  201. // }
  202. }
  203. section.intro{
  204. margin-left: $margin_left;
  205. }
  206. // Commons
  207. h1.part-title{
  208. font-size: 1.8em;
  209. margin:0 0 0.3em $margin_left;
  210. padding: 0.5em 0 0.2em;
  211. font-weight: normal;
  212. letter-spacing: 0.3em;
  213. display: inline-block;
  214. // border-top: 1px solid black;
  215. border-bottom: 1px solid black;
  216. white-space:nowrap;
  217. em{
  218. font-size: 0.7em;
  219. letter-spacing: normal;
  220. }
  221. &>em:first-of-type{
  222. display: block;
  223. }
  224. }
  225. h2.title{
  226. font-size: 1.2em;
  227. font-weight: 500;
  228. margin:1em 0 0 $margin_left;
  229. line-height: 1;
  230. }
  231. // div.definition,
  232. // div.axiom{
  233. // margin-top: 1em;
  234. // }
  235. h4.filet{
  236. margin:0.5em 0 0 $margin_left;
  237. }
  238. div.proposition,
  239. div.appendice,
  240. div.chapitre{
  241. &:not(.chapitre), &.chapitre:first-of-type, &:not(.dot.nested){margin-top: 1em;}
  242. span.title{
  243. font-size: 1.2em;
  244. font-weight: 500;
  245. }
  246. }
  247. div.explication,
  248. div.demonstration,
  249. div.scolie,
  250. div.corollaire,
  251. div.prop-axiom,
  252. div.lemme{
  253. span.title{
  254. font-size: 0.8em;
  255. text-transform:capitalize;
  256. font-variant: small-caps;
  257. }
  258. }
  259. div.lemme-scolie,
  260. div.lemme-corrollaire,
  261. div.lemme-demonstration,
  262. div.corollaire-demo{
  263. span.title{
  264. font-size: 0.7em;
  265. text-transform:capitalize;
  266. font-variant: small-caps;
  267. }
  268. }
  269. // ____ __ _
  270. // / _/___ / / (_)___ ___
  271. // / // __ \/ / / / __ \/ _ \
  272. // _/ // / / / /___/ / / / / __/
  273. // /___/_/ /_/_____/_/_/ /_/\___/
  274. main#content.mode-text{
  275. // h1.part-title{
  276. // margin: 1em 0 0 $margin_left;
  277. // }
  278. // h2.title, h4.filet{
  279. // margin: 1em 0 0 $margin_left;
  280. // }
  281. // .sticky{
  282. // color: red;
  283. // &.fixed{
  284. // position: fixed;
  285. // }
  286. // }
  287. section.enonce, section.item.nested{
  288. width:600px;
  289. margin: 1em 0 1em $margin_left;
  290. overflow-x: visible;
  291. }
  292. section.enonce{
  293. @include base_font;
  294. // max-height:14px;
  295. // overflow: hidden;
  296. // transition: max-height 0.5s ease-in-out;
  297. // &.active{
  298. // max-height:1000px;
  299. // }
  300. h2{
  301. font-size: 1em;
  302. font-weight: 300;
  303. margin: 0;
  304. cursor:pointer;
  305. }
  306. &.definition, &.axiom, &.def-affect{
  307. &:not(.nested)>h2{
  308. font-size: 1.2em;
  309. float:left;
  310. margin:0 0.5em 0 0;
  311. // line-height: 1.9;
  312. font-weight: 600;
  313. text-transform: uppercase;
  314. }
  315. }
  316. h3{
  317. font-size: 0.9em;
  318. font-weight: 300;
  319. margin: 0;
  320. cursor:pointer;
  321. }
  322. &.proposition>div.text{
  323. font-size: 1.5em;
  324. font-weight: 500;
  325. }
  326. div.text{
  327. font-size: 1.2em;
  328. div.paragraph{
  329. margin-bottom: 1em;
  330. div.opened-link{
  331. display:inline;
  332. }
  333. a.link, span.link.text{
  334. font-weight: 600;
  335. text-decoration: none;
  336. color: inherit;
  337. }
  338. span.link.text:after{
  339. content:':'
  340. }
  341. section.enonce, section.item{
  342. padding-left:2em;
  343. border-left: 1px solid #999;
  344. }
  345. img{
  346. float: left;
  347. }
  348. sup{
  349. font-size: 55%;
  350. font-weight: 400;
  351. a{
  352. pointer-events: none;
  353. cursor: pointer;
  354. }
  355. }
  356. }
  357. }
  358. // footnotes
  359. hr{
  360. display:none;
  361. }
  362. section ol{
  363. font-size: 0.7em;
  364. margin: -1em 0 2em 0;
  365. padding:0 0 0 1em;
  366. a{
  367. display: none;
  368. }
  369. }
  370. }
  371. // reset font-size since nested items are in a div with alternate font-size
  372. .enonce.nested, .item.nested{
  373. font-size: $fs;
  374. font-style: normal;
  375. }
  376. .opened-link{
  377. // position:relative;
  378. // outline: 1px solid red;
  379. .close-link-btn{
  380. width:20px; height: 20px;
  381. margin:1em 0 -2.1em $margin_left - 9px;
  382. // outline: 1px solid green;
  383. // display:inline-block;
  384. position:relative;
  385. background-color: white;
  386. z-index: 10;
  387. // top:0; left:-1em;
  388. cursor: pointer;
  389. text-align: center;
  390. &:before{
  391. content:"\1f7ac";
  392. font-style: normal;
  393. font-size: 0.7em;
  394. font-weight: 300;
  395. }
  396. // span{
  397. // font-style: normal;
  398. // font-size: 0.7em;
  399. // font-weight: 300;
  400. // }
  401. }
  402. }
  403. }
  404. // ______
  405. // /_ __/_______ ___
  406. // / / / ___/ _ \/ _ \
  407. // / / / / / __/ __/
  408. // /_/ /_/ \___/\___/
  409. main#content.mode-connections{
  410. // h2.title, h4.filet{
  411. // margin:0 0 0 $margin_left;
  412. // }
  413. }
  414. .dot{
  415. margin:0 0 0 $margin_left;
  416. position: relative;
  417. // overflow-x: visible;
  418. // overflow-y: auto;
  419. border: 1px solid white;
  420. // transform: translate3d(0,0,0);
  421. // transition: transform 0.2s ease-in-out;
  422. width: $dot_w;
  423. // >span.id{
  424. // display: inline-block;
  425. // // position: absolute;
  426. // // left:-3.5em;
  427. // width: $margin_left - ($bullet_w/2); text-align: right;
  428. // opacity:0;
  429. // // transform: translate3d(0, 0, 0);
  430. // // transition: transform 0.2s ease-in-out,opacity 0.4s ease-in-out;
  431. // transition: opacity 0.4s ease-in-out;
  432. // }
  433. // >span.bullet{
  434. // display: inline-block;
  435. // width:$bullet_w; text-align: center;
  436. // vertical-align: top;
  437. // font-size: 15px;
  438. // font-kerning: none;
  439. // }
  440. >span.title{
  441. text-transform: capitalize;
  442. padding: 0 0.6em 0 0;
  443. }
  444. &.opened>span.title{
  445. display:block;
  446. }
  447. >p.summary{
  448. display: inline-block;
  449. vertical-align: top;
  450. margin: 0;
  451. opacity: 0;
  452. transition: opacity 0.4s ease-in-out;
  453. max-width : $dot_w - $margin_left -5px;
  454. // width: 200px;
  455. // white-space: nowrap;
  456. // overflow: hidden;
  457. // text-overflow: ellipsis;
  458. a{
  459. color: inherit;
  460. text-decoration: none;
  461. font-weight: bold;
  462. pointer-events: none;
  463. }
  464. }
  465. &.preface{
  466. .title{display: none;}
  467. p.summary{
  468. opacity: 1;
  469. }
  470. }
  471. &:not(.disabled) {
  472. >span.title,>p.summary{cursor: pointer;}
  473. }
  474. &.disabled {
  475. >span.title,>p.summary{cursor: default;}
  476. }
  477. >section.text{
  478. display: inline-block;
  479. vertical-align: top;
  480. margin: 0;
  481. width : $dot_w - $margin_left - $bullet_w -5px;
  482. p{
  483. margin:0;
  484. &:not(:last-child){
  485. margin-bottom:1em;
  486. }
  487. }
  488. a{
  489. color: inherit;
  490. text-decoration: none;
  491. font-weight: bold;
  492. }
  493. }
  494. &.to-links > section.text{
  495. border-top: 1px solid #e2e2e2;
  496. padding-top:1.5em;
  497. margin-top: -1.4em;
  498. }
  499. &.from-links > section.text{
  500. border-bottom: 1px solid #e2e2e2;
  501. }
  502. >nav.links{
  503. position:relative;
  504. // left: $margin_left*2;
  505. box-sizing: border-box;
  506. &.to{
  507. bottom:100%;
  508. margin-top: 15px;
  509. padding-bottom:10px;
  510. margin-top: 1em;
  511. &:before{
  512. content: "\2304";
  513. display: flex;
  514. align-items: flex-end;
  515. }
  516. }
  517. &.from{
  518. top:100%;
  519. padding-top:10px;
  520. margin-bottom: 1em;
  521. &:before{
  522. content: "\2303";
  523. }
  524. }
  525. &:before{
  526. border-left: 1px solid #e2e2e2;
  527. position: absolute;
  528. top:0; left:$margin_left - 5px;
  529. height: 100%; width:0;
  530. z-index: 3;
  531. text-indent: -0.45em;
  532. line-height: 1;
  533. color: #4a4848;
  534. }
  535. }
  536. &:hover, &.opened, &.highlight{
  537. // transform: translate3d(0.5em, 0, 0);
  538. // transition: transform 0.1s ease-in-out;
  539. >p.summary{
  540. opacity: 1;
  541. transition: opacity 0.4s ease-in-out;
  542. }
  543. // >span.id{
  544. // opacity: 1;
  545. // // transform: translate3d(-0.5em, 0, 0);
  546. // // transition: transform 0.1s ease-in-out,opacity 0.4s ease-in-out;
  547. // transition: opacity 0.4s ease-in-out;
  548. // }
  549. }
  550. &.disabled>*{
  551. color:grey;
  552. }
  553. // &:not(.opened){
  554. // line-height: 0.8;
  555. // }
  556. &.opened{
  557. // position:relative;
  558. // outline: 1px solid red;
  559. margin-bottom: 15px;
  560. // span.title{
  561. // float:left;
  562. // }
  563. }
  564. .bullet,.close-link-btn{
  565. position:absolute;
  566. width:20px;
  567. // top:0;
  568. left:-24px;
  569. margin:-3px 0 0 0;
  570. // outline: 1px solid green;
  571. // display:inline-block;
  572. // background-color: white;
  573. // z-index: 10;
  574. text-align: center;
  575. }
  576. .bullet{
  577. span{
  578. font-style: normal;
  579. font-size: 0.2em;
  580. font-weight: 300;
  581. }
  582. }
  583. .close-link-btn{
  584. cursor: pointer;
  585. &:before{
  586. content:"\1f7ac";
  587. font-style: normal;
  588. font-size: 0.7em;
  589. font-weight: 300;
  590. }
  591. // span{
  592. // font-style: normal;
  593. // font-size: 0.7em;
  594. // font-weight: 300;
  595. // }
  596. }
  597. &.nested{
  598. font-size: $fs;
  599. }
  600. }
  601. footer{
  602. box-sizing: border-box;
  603. height: $footer_height;
  604. position: fixed;
  605. bottom: 0;
  606. background-color: white;
  607. width: 100%;
  608. padding: 1em 0 0 $margin_left;
  609. p{
  610. font-size: 0.756em;
  611. display: inline-block;
  612. margin:0 2em 0 0 ;
  613. &:before{
  614. content:'⋅ ';
  615. }
  616. }
  617. a{
  618. text-decoration: none; color: inherit;
  619. }
  620. }