academic.css 37 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121
  1. /*************************************************
  2. * Hugo Academic: an academic theme for Hugo.
  3. * Designed by @GeorgeCushen.
  4. * https://github.com/gcushen/hugo-academic
  5. **************************************************/
  6. /*************************************************
  7. * Core
  8. **************************************************/
  9. html {
  10. font-family: '{{ .Get "body_font" }}', sans-serif;
  11. font-size: {{ .Get "font_size_small" }}px;
  12. color: rgba(0,0,0,0.8);
  13. line-height: 1.65;
  14. }
  15. @media screen and (min-width: 58em) {
  16. html {
  17. font-size: {{ .Get "font_size" }}px;
  18. }
  19. }
  20. body {
  21. font-family: inherit;
  22. font-size: 1rem;
  23. line-height: inherit;
  24. color: inherit;
  25. background-color: {{ .Get "background" }};
  26. margin-top: 71px; /* Offset body content by navbar height. */
  27. padding-top: 0;
  28. counter-reset: captions;
  29. }
  30. @media screen and (max-width: 1200px) { /* Match max-width of .nav-bar query. */
  31. body {
  32. margin-top: 51px; /* Offset body content by navbar height. */
  33. }
  34. }
  35. .max-width-640 {
  36. max-width: 640px;
  37. }
  38. .margin-auto {
  39. margin-left: auto;
  40. margin-right: auto;
  41. }
  42. .center-text {
  43. text-align: center;
  44. }
  45. /* Body text */
  46. p {
  47. margin-top: 0;
  48. margin-bottom: 1rem;
  49. }
  50. /* Lists */
  51. ul, ol, dl {
  52. margin-top: 0;
  53. margin-bottom: 1rem;
  54. }
  55. /* Navigation bar text */
  56. .navbar-light {
  57. font-family: '{{ .Get "nav_font" }}', sans-serif;
  58. font-weight: 400;
  59. line-height: 1.25;
  60. text-rendering: optimizeLegibility;
  61. }
  62. /* Headings */
  63. h1, h2, h3, h4, h5, h6 {
  64. font-family: '{{ .Get "heading_font" }}', sans-serif;
  65. font-weight: 400;
  66. margin-top: 1rem;
  67. margin-bottom: .5rem;
  68. line-height: 1.25;
  69. color: #313131;
  70. text-rendering: optimizeLegibility;
  71. overflow-wrap: break-word; /* Ensures very long heading words do not overflow into content. */
  72. }
  73. h1 {
  74. font-size: 2.25rem;
  75. }
  76. h2 {
  77. margin-top: 1rem;
  78. font-size: 1.5rem;
  79. }
  80. h3 {
  81. font-weight: 700;
  82. margin-top: 1.5rem;
  83. font-size: 1.25rem;
  84. }
  85. h4, h5, h6 {
  86. font-weight: 700;
  87. margin-top: 1rem;
  88. font-size: 1rem;
  89. }
  90. a,
  91. h3.article-title a:hover {
  92. color: {{ .Get "link" }};
  93. text-decoration: none;
  94. transition: color 0.6s ease;
  95. }
  96. a:hover,
  97. a:focus {
  98. color: {{ .Get "link_hover" }};
  99. }
  100. img,
  101. video {
  102. height: auto;
  103. max-width: 100%;
  104. display: block;
  105. }
  106. video {
  107. width: 100%;
  108. height: auto;
  109. max-height: 400px;
  110. }
  111. .img-responsive {
  112. /* Extend Bootstrap declaration with centering. */
  113. margin: 0 auto;
  114. }
  115. figcaption {
  116. display: block;
  117. margin-top: 0.75em;
  118. line-height: 1.25;
  119. font-size: 1rem;
  120. margin-bottom: 1.65rem;
  121. font-family: '{{ .Get "heading_font" }}', sans-serif;
  122. }
  123. figcaption.numbered:before {
  124. font-weight: 700;
  125. text-transform: uppercase;
  126. content: attr(data-pre) counter(captions) attr(data-post);
  127. }
  128. figcaption.numbered {
  129. counter-increment: captions;
  130. }
  131. figcaption h4 {
  132. display: inline;
  133. font-size: 1rem;
  134. font-weight: 400;
  135. margin: 0;
  136. }
  137. pre,
  138. code {
  139. font-family: '{{ .Get "mono_font" }}', monospace;
  140. color: #c7254e;
  141. background-color: #f9f2f4;
  142. }
  143. pre {
  144. margin: 0 0 1rem 0;
  145. background-color: rgb(248, 248, 248); /* Match default highlight theme. */
  146. border-color: rgb(248, 248, 248);
  147. font-size: 0.7rem;
  148. border-radius: 4px;
  149. }
  150. pre code {
  151. white-space: pre; /* Override Bootstrap to preserve line breaks in code. */
  152. overflow-x: auto;
  153. }
  154. hr {
  155. border: 0;
  156. height: 1px;
  157. background: #333;
  158. background-image: linear-gradient(to right, #ccc, #333, #ccc);
  159. }
  160. /* Quotes */
  161. blockquote {
  162. padding: .5rem 1rem;
  163. margin: .8rem 0;
  164. color: #7a7a7a;
  165. border-left: .25rem solid #e5e5e5;
  166. }
  167. blockquote p:last-child {
  168. margin-bottom: 0;
  169. }
  170. @media (min-width: 30em) {
  171. blockquote {
  172. padding-right: 5rem;
  173. padding-left: 1.25rem;
  174. }
  175. }
  176. .markup-quote {
  177. background-color: transparent;
  178. background-image: linear-gradient(to bottom, rgba(233, 231, 245, 1), rgba(233, 231, 245, 1));
  179. }
  180. .space-below {
  181. margin-bottom: 50px;
  182. }
  183. @media screen and (max-width: 768px) {
  184. .space-below {
  185. margin-bottom: 10px;
  186. }
  187. }
  188. .universal-wrapper {
  189. margin: 0 auto;
  190. padding-right: 1rem;
  191. padding-left: 1rem;
  192. padding-top: 0.1rem;
  193. width: 100%;
  194. }
  195. @media only screen and (min-width: 1001px) {
  196. .universal-wrapper {
  197. width: 1000px;
  198. }
  199. }
  200. small,
  201. .small {
  202. font-size: .75em;
  203. }
  204. .responsive-wrap iframe {
  205. max-width: 100%;
  206. }
  207. /*************************************************
  208. * Search.
  209. **************************************************/
  210. #search-box {
  211. position: relative; /* Required for search icon positioning. */
  212. margin-bottom: 0.5rem;
  213. }
  214. #search-box::before {
  215. font-family: 'Font Awesome 5 Free';
  216. font-weight: 900;
  217. content: "\f002";
  218. font-size: 1rem;
  219. opacity: 0.25;
  220. line-height: 1rem;
  221. position: absolute;
  222. left: 0.7rem;
  223. top: 0.6rem;
  224. overflow-x: hidden;
  225. }
  226. #search-box #search-query {
  227. border: 1px solid #dedede;
  228. border-radius: 1rem;
  229. padding: 1rem 1rem 1rem 2rem; /* Wider left padding for search icon to fit in. */
  230. width: 250px;
  231. line-height: 1rem;
  232. height: 1rem;
  233. font-size: 0.8rem;
  234. }
  235. .search-hit em {
  236. font-style: normal;
  237. background-color: #FFE0B2;
  238. color: #E65100;
  239. border-bottom: 1px solid #E65100;
  240. }
  241. .search-hit-type {
  242. margin-bottom: 0 !important; /* Override .article-metadata margin. */
  243. text-transform: capitalize;
  244. }
  245. .search-hit-description {
  246. font-size: 0.7rem;
  247. }
  248. /* Load more results button - hide when there are no more results. */
  249. #search-hits button[disabled] {
  250. display: none;
  251. }
  252. .form-control:focus {
  253. border-color: {{ .Get "primary" }};
  254. box-shadow: 0 0 0 .2rem {{ .Get "primary_light" }};
  255. }
  256. /*************************************************
  257. * Modals.
  258. **************************************************/
  259. .modal-content {
  260. background: {{ .Get "background" }};
  261. }
  262. .modal-title {
  263. margin: 0; /* Override default h5 margin. */
  264. }
  265. .modal-content pre {
  266. margin: 0;
  267. }
  268. .modal-header {
  269. border: 0;
  270. color: rgba(0,0,0,0.8);
  271. }
  272. .modal-footer {
  273. border: 0;
  274. }
  275. #modal-error {
  276. color: red;
  277. }
  278. /*************************************************
  279. * Gallery.
  280. **************************************************/
  281. .gallery {
  282. margin: 0.5em -4px 1.5em -4px;
  283. font-size: 0;
  284. }
  285. a[data-fancybox] {
  286. text-decoration: none;
  287. }
  288. a[data-fancybox] img {
  289. height: 250px;
  290. max-width: inherit;
  291. display: inherit;
  292. margin: 0;
  293. padding: 4px;
  294. box-shadow: none;
  295. vertical-align: inherit;
  296. }
  297. .fancybox-caption {
  298. font-size: 1rem;
  299. line-height: 1.5rem;
  300. text-align: center;
  301. }
  302. /*************************************************
  303. * Pager.
  304. **************************************************/
  305. .post-nav {
  306. margin-top: 1rem;
  307. font-size: 0.8rem;
  308. }
  309. .post-nav-item {
  310. hyphens: auto;
  311. word-wrap: break-word;
  312. padding: 11px 0 12px;
  313. width: 100%;
  314. }
  315. .post-nav-item a {
  316. color: #2b2b2b;
  317. line-height: 1.7;
  318. text-transform: none;
  319. }
  320. .post-nav-item .meta-nav {
  321. color: #767676;
  322. font-weight: 900;
  323. line-height: 2;
  324. text-transform: uppercase;
  325. }
  326. .dark .post-nav-item a {
  327. color: #ddd;
  328. }
  329. /*************************************************
  330. * Home Sections
  331. **************************************************/
  332. @keyframes intro {
  333. 0% {
  334. opacity: 0;
  335. }
  336. 100% {
  337. opacity: 1;
  338. }
  339. }
  340. .home-section {
  341. background-color: {{ .Get "home_section_odd" }};
  342. padding: 110px 0 110px 0;
  343. animation: intro 0.3s both;
  344. animation-delay: 0.15s;
  345. }
  346. .home-section:first-of-type {
  347. padding-top: 50px;
  348. }
  349. .home-section:nth-of-type(even) {
  350. background-color: {{ .Get "home_section_even" }};
  351. }
  352. @media screen and (max-width: 768px) {
  353. .home-section {
  354. padding: 60px 0 60px 0;
  355. }
  356. .home-section:first-of-type {
  357. padding-top: 40px;
  358. }
  359. }
  360. .section-heading h1 {
  361. margin: 0 0 10px 0;
  362. }
  363. .section-heading p {
  364. font-weight: 400;
  365. font-size: 1.1rem;
  366. color: #b2b2b2;
  367. }
  368. /*************************************************
  369. * Hero Widget
  370. **************************************************/
  371. .hero-overlay {
  372. padding: 3em 0;
  373. clear: both;
  374. background-size: cover;
  375. background-repeat: no-repeat;
  376. background-position: center;
  377. animation: intro 0.3s both;
  378. animation-delay: 0s;
  379. animation-delay: 0.25s;
  380. }
  381. .hero-title {
  382. font-size: 2.7rem;
  383. margin-top: 0;
  384. line-height: 1;
  385. }
  386. .hero-lead {
  387. max-width: 768px;
  388. font-size: 1.35rem;
  389. }
  390. .hero-overlay .hero-title,
  391. .hero-overlay .hero-lead,
  392. .hero-overlay .btn {
  393. color: #fff;
  394. text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
  395. }
  396. .hero-overlay a {
  397. color: #fff;
  398. }
  399. .hero-overlay .hero-lead a {
  400. color: #fff;
  401. text-decoration-line: underline;
  402. }
  403. .hero-overlay .btn-lg {
  404. font-size: 1.1rem;
  405. }
  406. /*************************************************
  407. * Featurette Widget
  408. **************************************************/
  409. .featurette {
  410. font-size: 0.8rem;
  411. line-height: 1.5;
  412. color: #555;
  413. text-align: center;
  414. }
  415. .featurette h3 {
  416. margin-top: 0;
  417. margin-bottom: 5px;
  418. font-weight: 400;
  419. color: #333;
  420. }
  421. .dark .featurette,
  422. .dark .featurette h3 {
  423. color: #fff;
  424. }
  425. .featurette-icon {
  426. display: block;
  427. width: 100%;
  428. color: {{ .Get "primary" }};
  429. font-size: 3rem;
  430. text-align: center;
  431. }
  432. /*************************************************
  433. * Biography
  434. **************************************************/
  435. #profile {
  436. text-align: center;
  437. padding: 30px 10px;
  438. position: relative;
  439. }
  440. #profile .portrait {
  441. width: 200px;
  442. height: 200px;
  443. margin: 0 auto;
  444. border-radius: 50%;
  445. object-fit: cover;
  446. }
  447. #profile .portrait-title h2 {
  448. font-size: 1.75em;
  449. font-weight: 300;
  450. color: #000000;
  451. margin: 20px 0 10px 0;
  452. }
  453. #profile .portrait-title h3 {
  454. font-size: 1rem;
  455. font-weight: 300;
  456. color: rgba(0,0,0, 0.54);
  457. margin: 0px 0 10px 0;
  458. }
  459. ul.network-icon {
  460. display: inline-flex;
  461. flex-direction: row;
  462. flex-wrap: wrap;
  463. justify-content: center;
  464. list-style: none;
  465. padding: 0;
  466. }
  467. #profile .network-icon {
  468. margin-top: 30px;
  469. }
  470. .network-icon li {
  471. margin-right: 10px;
  472. }
  473. .network-icon li:last-of-type {
  474. margin-right: 0;
  475. }
  476. .network-icon li:hover {
  477. transform: scale(1.2)
  478. }
  479. .big-icon {
  480. font-size: 2rem;
  481. }
  482. ul.ul-interests li {
  483. font-size: 0.9rem;
  484. }
  485. ul.ul-edu {
  486. list-style: none;
  487. }
  488. ul.ul-edu li {
  489. position: relative;
  490. padding: 0px 15px 4px 3px;
  491. }
  492. ul.ul-edu li .description p {
  493. margin: 0;
  494. }
  495. ul.ul-edu li .description p.course {
  496. font-size: 0.9rem;
  497. }
  498. ul.ul-edu li .description p.institution {
  499. font-size: 0.75rem;
  500. color: rgba(0,0,0,0.6);
  501. }
  502. /*************************************************
  503. * Sharing
  504. **************************************************/
  505. .share-box {
  506. float: right;
  507. }
  508. ul.share {
  509. display: flex;
  510. flex-direction: row;
  511. flex-wrap: wrap;
  512. list-style: none;
  513. margin: 0;
  514. padding: 0;
  515. }
  516. ul.share li {
  517. display: inline-flex;
  518. margin-right: 5px;
  519. }
  520. ul.share li:last-of-type {
  521. margin-right: 0;
  522. }
  523. ul.share li i {
  524. display: block;
  525. width: 30px;
  526. height: 30px;
  527. line-height: 30px;
  528. font-size: 16px;
  529. text-align: center;
  530. transition: all 150ms ease-in-out;
  531. color: #fff;
  532. }
  533. .dark ul.share li i {
  534. color: rgb(68, 71, 90);
  535. }
  536. ul.share li a {
  537. background-color: #b5c6ce;
  538. display: block;
  539. border-radius: 50%;
  540. text-decoration: none !important;
  541. margin: 0;
  542. }
  543. ul.share li:hover i {
  544. transform: scale(1.4)
  545. }
  546. /*************************************************
  547. * Page content style
  548. **************************************************/
  549. article {
  550. animation: intro 0.3s both;
  551. animation-delay: 0.15s;
  552. }
  553. .article-container {
  554. max-width: 760px;
  555. padding: 0 20px 0 20px;
  556. margin: 0 auto 0 auto;
  557. }
  558. .split-header {
  559. margin-bottom: 2rem;
  560. }
  561. .split-header .share-box {
  562. float: left;
  563. }
  564. .page-subtitle {
  565. font-size: 1.15rem;
  566. color: rgba(0,0,0,.54);
  567. margin-bottom: 1rem;
  568. }
  569. .dark .page-subtitle {
  570. color: rgba(255,255,255,0.54);
  571. }
  572. .split-header .page-subtitle {
  573. margin-bottom: 1.5rem;
  574. }
  575. .split-header-content {
  576. max-width: 612px;
  577. width: 100%;
  578. padding: 60px 60px 32px 0;
  579. margin-left: auto;
  580. -webkit-box-sizing: border-box;
  581. box-sizing: border-box;
  582. }
  583. .split-header-image {
  584. position: relative; /* Required for caption positioning */
  585. clear: both;
  586. max-width: 580px;
  587. }
  588. .article-header {
  589. position: relative; /* Required for caption positioning */
  590. clear: both;
  591. }
  592. .article-banner {
  593. width: 100%;
  594. height: auto;
  595. }
  596. .article-header-caption {
  597. position: absolute;
  598. bottom: 0;
  599. right: 0;
  600. margin: 0 auto;
  601. padding: 2px 5px;
  602. color: #fff;
  603. font-size: .7em;
  604. background: #000;
  605. text-align: right;
  606. z-index: 5;
  607. opacity: 0.65;
  608. border-radius: 5px 0 0 0;
  609. }
  610. @media (min-width: 64em) {
  611. .article-header-caption {
  612. padding: 5px 10px;
  613. }
  614. }
  615. .article-header-caption a {
  616. color: #fff;
  617. text-decoration: none;
  618. }
  619. .article-title {
  620. font-size: 1.75rem;
  621. }
  622. .article-title a {
  623. color: #151515;
  624. transition: color 0.6s ease;
  625. }
  626. .text-muted {
  627. color: rgba(0,0,0,0.54); /* Override Bootstrap */
  628. }
  629. .dark .text-muted {
  630. color: rgba(255,255,255,0.54);
  631. }
  632. .article-metadata {
  633. margin-bottom: 15px;
  634. overflow: hidden;
  635. font-size: 14px;
  636. letter-spacing: 0.03em;
  637. color: rgba(0,0,0,0.54);
  638. }
  639. .dark .article-metadata {
  640. color: rgba(255,255,255,0.54);
  641. }
  642. .stream-meta.article-metadata {
  643. margin-bottom: 5px;
  644. }
  645. /* For article page only, not lists. */
  646. article .article-metadata {
  647. margin-bottom: 20px;
  648. line-height: 30px; /* Match share bar line height. */
  649. }
  650. .article-metadata a {
  651. color: rgba(0,0,0,.54);
  652. }
  653. .dark .article-metadata a {
  654. color: rgba(255,255,255,0.54);
  655. }
  656. .article-metadata a:hover {
  657. color: {{ .Get "primary" }};
  658. }
  659. .middot-divider {
  660. padding-right: .45em;
  661. padding-left: .45em;
  662. font-size: 15px;
  663. }
  664. .middot-divider::after {
  665. content: '\00B7';
  666. }
  667. .article-style img,
  668. .article-style video {
  669. margin-left: auto;
  670. margin-right: auto;
  671. margin-top: 60px;
  672. margin-bottom: 60px;
  673. padding: 0;
  674. }
  675. .article-style td img,
  676. .article-style td video {
  677. margin-top: 0;
  678. margin-bottom: 0;
  679. }
  680. .article-style figure {
  681. margin-top: 60px;
  682. margin-bottom: 60px;
  683. }
  684. .article-style figure img {
  685. margin-top: 0;
  686. margin-bottom: 0;
  687. }
  688. .article-widget {
  689. padding-top: 1rem;
  690. }
  691. .article-widget h3 {
  692. margin-top: 0;
  693. }
  694. .hr-light {
  695. border-top: 1px solid rgba(0,0,0,.05);
  696. margin-top: 0.5rem;
  697. margin-bottom: 1rem;
  698. }
  699. #comments {
  700. padding-top: 1rem;
  701. }
  702. /*************************************************
  703. * Stream
  704. **************************************************/
  705. .media.stream-item {
  706. margin-bottom: 2rem;
  707. }
  708. .media.stream-item .article-title {
  709. font-size: 1.2rem;
  710. }
  711. .media.stream-item .article-style {
  712. margin-top: 2px;
  713. font-size: 0.8rem;
  714. }
  715. .media.stream-item .stream-meta {
  716. margin-top: 12px;
  717. }
  718. .media.stream-item img {
  719. max-width: 150px;
  720. height: auto;
  721. object-fit: cover;
  722. }
  723. @media screen and (max-width: 768px) {
  724. .media.stream-item img {
  725. max-width: 80px;
  726. }
  727. }
  728. /*************************************************
  729. * Author profile card
  730. **************************************************/
  731. .author-card {
  732. margin-top: 1rem;
  733. padding-top: 1rem;
  734. border-top: 1px solid rgba(0,0,0,.05);
  735. }
  736. .dark .author-card {
  737. border-top: 1px solid rgba(255,255,255,.05);
  738. }
  739. .author-card .portrait {
  740. width: 60px;
  741. height: 60px;
  742. margin: 0 auto;
  743. border-radius: 50%;
  744. object-fit: cover;
  745. }
  746. .author-card .card-title {
  747. margin-top: 0;
  748. margin-bottom: 15px;
  749. font-weight: 600;
  750. color: rgba(0, 0, 0, 0.84);
  751. }
  752. .author-card .card-title a {
  753. color: rgba(0, 0, 0, 0.84);
  754. }
  755. .dark .author-card .card-title,
  756. .dark .author-card .card-title a {
  757. color: rgba(255, 255, 255, 0.84);
  758. }
  759. .author-card p {
  760. margin-bottom: 5px;
  761. }
  762. .author-card .card-subtitle {
  763. font-weight: 300;
  764. font-size: 0.8rem;
  765. color: rgba(0, 0, 0, 0.54);
  766. margin-bottom: 7px;
  767. }
  768. .dark .author-card .card-subtitle {
  769. color: rgba(255, 255, 255, 0.54);
  770. }
  771. .author-card .card-text {
  772. color: rgba(0, 0, 0, 0.76);
  773. font-size: 0.8rem;
  774. margin-bottom: 4px;
  775. }
  776. .dark .author-card .card-text {
  777. color: rgba(255, 255, 255, 0.76);
  778. }
  779. /*************************************************
  780. * Publications
  781. **************************************************/
  782. .pub-icon {
  783. color: rgba(0, 0, 0, 0.54);
  784. font-size: 0.81em;
  785. padding-top: 6px;
  786. }
  787. .pub-banner {
  788. max-width: 100%;
  789. height: auto;
  790. margin-left: auto;
  791. margin-right: auto;
  792. }
  793. .pub .pub-authors {
  794. font-style: italic;
  795. line-height: 30px; /* Match share bar line height. */
  796. }
  797. .pub .pub-row-heading {
  798. font-weight: bold;
  799. }
  800. .pub-list-item .pub-abstract {
  801. font-size: 1rem;
  802. }
  803. .pub-list-item .pub-authors {
  804. line-height: normal;
  805. font-style: normal;
  806. font-size: 0.9rem;
  807. color: rgba(0,0,0,0.54);
  808. }
  809. .pub-list-item .pub-publication {
  810. color: rgba(0,0,0,0.54);
  811. font-size: 0.9rem;
  812. }
  813. .dark .pub-authors,
  814. .dark .pub-publication {
  815. color: rgba(255,255,255,0.54);
  816. }
  817. .pub-list-item .pub-links {
  818. padding-top: 10px;
  819. }
  820. #container-publications {
  821. display: block;
  822. position: relative;
  823. overflow: hidden;
  824. }
  825. /*************************************************
  826. * Experience
  827. **************************************************/
  828. .exp-title {
  829. text-transform: none !important;
  830. }
  831. .exp-company {
  832. font-weight: normal !important;
  833. text-transform: none !important;
  834. }
  835. .exp-meta {
  836. font-size: 0.8rem;
  837. }
  838. .experience .card-text,
  839. .experience .card-text p {
  840. color: #000 !important;
  841. font-size: 0.75rem !important;
  842. }
  843. .dark .experience .text-muted {
  844. color: rgba(255, 255, 255, 0.8) !important;
  845. }
  846. .dark .experience .card-text,
  847. .dark .experience .card-text p {
  848. color: rgb(248, 248, 242) !important;
  849. }
  850. .card .card-text ul {
  851. margin-top: -1rem;
  852. margin-bottom: 0rem;
  853. }
  854. .experience .m-2 .border,
  855. .experience .col.border-right {
  856. border-color: {{ .Get "primary" }} !important;
  857. }
  858. .experience .m-2 .border.exp-fill {
  859. background-color: {{ .Get "primary" }} !important;
  860. }
  861. /*************************************************
  862. * Talks
  863. **************************************************/
  864. .talk-metadata {
  865. color: #4b4f56;
  866. font-size: 0.8rem;
  867. }
  868. /*************************************************
  869. * Projects
  870. **************************************************/
  871. .project-widget-simple li {
  872. margin-bottom: 1rem;
  873. }
  874. .project-widget-simple li:last-of-type {
  875. margin-bottom: 0;
  876. }
  877. .project-widget-simple .project-title {
  878. margin-bottom: 6px;
  879. }
  880. .project-widget-simple .project-summary {
  881. font-size: 0.9rem;
  882. margin-bottom: 0.4rem;
  883. }
  884. .projects-container {
  885. display: block;
  886. position: relative;
  887. /*margin-top: 5rem;*/
  888. overflow: hidden;
  889. }
  890. .project-toolbar{
  891. margin-bottom: 2rem;
  892. }
  893. .project-item {
  894. margin-bottom: 1.5rem;
  895. }
  896. .isotope-item {
  897. z-index: 2;
  898. }
  899. .isotope-item:hover{
  900. z-index: 3;
  901. }
  902. /*************************************************
  903. * Card component
  904. **************************************************/
  905. .card-simple {
  906. background: #fff;
  907. box-shadow: 0 1px 4px rgba(0,0,0,.04);
  908. border: 1px solid rgba(0,0,0,.09);
  909. border-radius: 3px;
  910. margin-top: 20px;
  911. padding: 15px 20px 15px 20px;
  912. }
  913. .card-simple:first-of-type {
  914. margin-top: 0;
  915. }
  916. .card-simple p.read-more {
  917. margin: 0;
  918. }
  919. .dark .card-simple {
  920. background: rgb(40, 42, 54);
  921. box-shadow: 0 1px 4px rgba(0,0,0,.04);
  922. border: 1px solid rgb(68, 71, 90);
  923. }
  924. .card {
  925. margin-bottom: 1.5rem;
  926. overflow: hidden;
  927. text-overflow: ellipsis;
  928. background: #fff;
  929. box-shadow: 0 2px 4px 0 rgba(0,0,0,0.2);
  930. transition: all 0.2s ease-out;
  931. }
  932. .card .card-image {
  933. display: block;
  934. position: relative;
  935. min-height: 100px;
  936. }
  937. .card h4 {
  938. font-size: 0.9rem;
  939. font-weight: 700;
  940. line-height: 1.5;
  941. text-transform: uppercase;
  942. }
  943. .card h4 a {
  944. color: #000;
  945. border-bottom: solid 1px transparent;
  946. }
  947. .card h4 a:hover {
  948. color: #000;
  949. border-bottom: solid 1px #000;
  950. text-decoration: none;
  951. }
  952. .card .card-text {
  953. padding: 0.75rem 1rem 0.75rem;
  954. }
  955. .card .card-text p {
  956. color: rgba(0,0,0,0.54);
  957. font-size: 0.75rem;
  958. }
  959. .dark .card-text p {
  960. color: rgb(248, 248, 242);
  961. }
  962. .card p:last-child {
  963. margin-bottom: 0;
  964. }
  965. .card .card-image.hover-overlay:before {
  966. display: block;
  967. position: absolute;
  968. left: 0;
  969. top: 0;
  970. width: 100%;
  971. height: 100%;
  972. background: #fff;
  973. content: " ";
  974. opacity: 0;
  975. transition: all 0.2s ease-out;
  976. }
  977. .card .card-image.hover-overlay:after {
  978. display: block;
  979. position: absolute;
  980. left: 0;
  981. top: 50%;
  982. width: 100%;
  983. transform: translate(0, -50%);
  984. opacity: 0;
  985. transition: all 0.2s ease-out;
  986. font-family: 'Font Awesome 5 Free';
  987. font-weight: 900;
  988. content: '\f0c1';
  989. text-align: center;
  990. font-size: 3rem;
  991. color: #666;
  992. }
  993. .card:hover {
  994. box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
  995. }
  996. .card:hover .card-image.hover-overlay:before {
  997. opacity: 0.8;
  998. }
  999. .card:hover .card-image.hover-overlay:after {
  1000. opacity: 0.6;
  1001. }
  1002. /*************************************************
  1003. * Contact
  1004. **************************************************/
  1005. .contact-widget .fa-ul {
  1006. margin-left: 3.14285714rem; /* Must be > `fa-2x` icon size. */
  1007. }
  1008. .contact-widget .fa-li {
  1009. position: absolute;
  1010. left: -3.14285714rem; /* Negative of `.contact-widget .fa-ul` margin. */
  1011. width: 2rem; /* Match `fa-2x` icon size. */
  1012. top: 0.14285714em; /* Default FA value. */
  1013. text-align: center;
  1014. }
  1015. .contact-widget li {
  1016. padding-top: 0.8rem; /* Align text with bottom of `fa-2x` icon. */
  1017. margin-bottom: 0.3rem;
  1018. }
  1019. .contact-widget li:last-of-type {
  1020. margin-bottom: 0;
  1021. }
  1022. #map {
  1023. height: 350px;
  1024. width: 100%;
  1025. }
  1026. /*************************************************
  1027. * Footer
  1028. **************************************************/
  1029. footer {
  1030. margin: 4rem 0 0;
  1031. padding: 2rem 0;
  1032. width: 100%;
  1033. }
  1034. footer p {
  1035. font-size: 0.75rem;
  1036. text-align: center;
  1037. }
  1038. .site-footer,
  1039. footer a#back_to_top i {
  1040. color: rgba(0,0,0,0.54);
  1041. }
  1042. .dark .site-footer,
  1043. .dark footer a#back_to_top i,
  1044. .dark .docs .body-footer {
  1045. color: rgba(255,255,255,0.54);
  1046. }
  1047. /**************************************************
  1048. * Tags/Labels
  1049. **************************************************/
  1050. .badge-light {
  1051. border: none;
  1052. color: rgba(0,0,0,.68);
  1053. background: rgba(0,0,0,.05);
  1054. font-weight: normal;
  1055. border-radius: 3px;
  1056. padding: 5px 10px;
  1057. margin-right: 8px;
  1058. margin-bottom: 8px;
  1059. }
  1060. .article-tags > .badge-light:last-child {
  1061. margin-right: 0;
  1062. }
  1063. .badge-light[href]:focus,
  1064. .badge-light[href]:hover {
  1065. background: rgba(0,0,0,.1);
  1066. }
  1067. a.badge:focus,
  1068. a.badge:hover {
  1069. color: rgba(0,0,0,.68);
  1070. }
  1071. /*************************************************
  1072. * Button size override
  1073. *************************************************/
  1074. .btn {
  1075. padding: .5rem;
  1076. font-size: .8rem;
  1077. line-height: .5;
  1078. border-radius: .3rem;
  1079. }
  1080. .btn.btn-sm {
  1081. padding: .4rem;
  1082. font-size: .6rem;
  1083. border-radius: .2rem;
  1084. }
  1085. /*************************************************
  1086. * Button Primary: Color override
  1087. **************************************************/
  1088. .btn-primary {
  1089. border-color: {{ .Get "primary" }};
  1090. background: {{ .Get "primary" }};
  1091. }
  1092. .btn-outline-primary {
  1093. border-color: {{ .Get "primary" }};
  1094. color: {{ .Get "primary" }};
  1095. }
  1096. .btn-primary:hover,
  1097. .btn-primary:active,
  1098. .btn-primary.active,
  1099. .btn-primary:visited,
  1100. .open > .dropdown-toggle.btn-primary {
  1101. background: {{ .Get "primary" }};
  1102. }
  1103. .btn-outline-light:hover,
  1104. .btn-outline-light:active,
  1105. .btn-outline-light.active {
  1106. background: rgba(0,0,0,0.4);
  1107. }
  1108. .btn-outline-primary:not(:disabled):not(.disabled).active,
  1109. .btn-outline-primary:not(:disabled):not(.disabled):active,
  1110. .show > .btn-outline-primary.dropdown-toggle {
  1111. color: #fff;
  1112. background-color: {{ .Get "primary" }};
  1113. border-color: {{ .Get "primary" }};
  1114. }
  1115. .dark .btn-outline-primary:not(:disabled):not(.disabled).active,
  1116. .dark .btn-outline-primary:not(:disabled):not(.disabled):active,
  1117. .dark .show > .btn-outline-primary.dropdown-toggle {
  1118. color: rgb(68, 71, 90);
  1119. }
  1120. .btn-outline-primary:hover {
  1121. color: #fff;
  1122. background-color: {{ .Get "primary" }};
  1123. border-color: {{ .Get "primary" }};
  1124. }
  1125. .dark .btn-outline-primary:hover {
  1126. color: rgb(68, 71, 90);
  1127. }
  1128. /*************************************************
  1129. * Toolbar Buttons
  1130. **************************************************/
  1131. .btn-toolbar .btn {
  1132. font-size: 0.9rem;
  1133. padding: 10px 14px 9px;
  1134. border: none;
  1135. }
  1136. .btn-toolbar .btn:first-child {
  1137. border-radius: 6px 0 0 6px;
  1138. }
  1139. .btn-toolbar .btn:last-child {
  1140. border-radius: 0 6px 6px 0;
  1141. }
  1142. .btn-toolbar .btn.btn-primary:hover,
  1143. .btn-toolbar .btn.btn-primary:focus {
  1144. background-color: {{ .Get "primary_light" }} !important;
  1145. }
  1146. .btn-toolbar .btn.btn-primary:active,
  1147. .btn-toolbar .btn.btn-primary.active {
  1148. background-color: {{ .Get "primary_dark" }} !important;
  1149. }
  1150. .btn-primary:not(:disabled):not(.disabled).active:focus,
  1151. .btn-primary:not(:disabled):not(.disabled):active:focus,
  1152. .show > .btn-primary.dropdown-toggle:focus {
  1153. box-shadow: 0 0 0 .2rem {{ .Get "primary_light" }};
  1154. }
  1155. /*************************************************
  1156. * Navigation Bar
  1157. **************************************************/
  1158. .navbar {
  1159. min-height: 70px !important;
  1160. }
  1161. .navbar-light {
  1162. background: {{ .Get "menu_primary" }} !important;
  1163. box-shadow: 0 0.125rem 0.25rem 0 rgba(0,0,0,.11)
  1164. }
  1165. .navbar-light .navbar-toggler {
  1166. border-color: transparent;
  1167. }
  1168. .navbar-toggler {
  1169. color: {{ .Get "menu_text" }} !important;
  1170. }
  1171. .navbar-light .navbar-toggler:focus,
  1172. .navbar-light .navbar-toggler:hover {
  1173. background-color: transparent;
  1174. }
  1175. .dropdown-menu,
  1176. nav#navbar-main li.nav-item {
  1177. font-size: {{ .Get "font_size_small" }}px;
  1178. }
  1179. .navbar-light .navbar-nav>.nav-item>.nav-link,
  1180. .navbar-light .navbar-nav>.nav-item>.nav-link:focus,
  1181. .navbar-light .navbar-nav>.nav-item>.nav-link:hover {
  1182. white-space: nowrap;
  1183. -webkit-transition: 0.2s ease;
  1184. transition: 0.2s ease;
  1185. color: {{ .Get "menu_text" }};
  1186. font-weight: 600;
  1187. }
  1188. .navbar-light .navbar-nav>.nav-item>.nav-link:focus {
  1189. color: {{ .Get "menu_text" }};
  1190. background-color: transparent;
  1191. }
  1192. .navbar-light .navbar-nav>.nav-item>.nav-link:hover {
  1193. color: {{ .Get "menu_text_active" }};
  1194. background-color: transparent;
  1195. }
  1196. .navbar-light .navbar-nav>li.nav-item>a.active,
  1197. .navbar-light .navbar-nav>li.nav-item>a.active:focus,
  1198. .navbar-light .navbar-nav>li.nav-item>a.active:hover {
  1199. color: {{ .Get "menu_text_active" }};
  1200. font-weight: 700;
  1201. background-color: transparent !important; /* Override Bootstrap. */
  1202. }
  1203. .navbar-brand,
  1204. .navbar-nav li.nav-item a.nav-link {
  1205. height: inherit;
  1206. line-height: 50px;
  1207. padding-top: 10px;
  1208. padding-bottom: 10px;
  1209. }
  1210. .navbar-brand img {
  1211. max-height: 50px;
  1212. }
  1213. .navbar-light .navbar-toggler .icon-bar {
  1214. background-color: {{ .Get "menu_text" }} !important;
  1215. }
  1216. .dropdown-menu {
  1217. background-color: {{ .Get "menu_primary" }} !important;
  1218. }
  1219. .dropdown-menu > li > a {
  1220. display: block;
  1221. padding: 3px 20px;
  1222. clear: both;
  1223. font-weight: 400;
  1224. line-height: 1.42857143;
  1225. color: {{ .Get "menu_text" }};
  1226. white-space: nowrap;
  1227. }
  1228. .dropdown-menu>li>a:focus,
  1229. .dropdown-menu>li>a:hover {
  1230. color: {{ .Get "menu_text_active" }};
  1231. text-decoration: none;
  1232. background-color: {{ .Get "menu_primary" }};
  1233. }
  1234. .dropdown-menu > .active,
  1235. .dropdown-menu > .active:focus,
  1236. .dropdown-menu > .active:hover {
  1237. color: {{ .Get "menu_primary" }};
  1238. text-decoration: none;
  1239. background-color: {{ .Get "menu_text_active" }};
  1240. outline: 0;
  1241. }
  1242. .navbar-light .navbar-nav>.open>a,
  1243. .navbar-light .navbar-nav>.open>a:focus,
  1244. .navbar-light .navbar-nav>.open>a:hover,
  1245. .navbar-light .navbar-nav>.open>a:visited {
  1246. color: {{ .Get "menu_text" }} !important;
  1247. background-color: {{ .Get "menu_primary" }} !important;
  1248. }
  1249. .navbar-light .navbar-brand {
  1250. font-weight: bold;
  1251. font-size: 1.2em;
  1252. color: {{ .Get "menu_title" }};
  1253. }
  1254. .navbar-light .navbar-brand:focus,
  1255. .navbar-light .navbar-brand:hover {
  1256. color: {{ .Get "menu_title" }};
  1257. background-color: transparent;
  1258. }
  1259. @media screen and (max-width: 1200px) {
  1260. .navbar {
  1261. min-height: 50px !important;
  1262. }
  1263. .navbar-brand,
  1264. .navbar-nav li.nav-item a.nav-link {
  1265. height: inherit;
  1266. line-height: 40px;
  1267. padding-top: 5px;
  1268. padding-bottom: 5px;
  1269. }
  1270. .navbar-brand img {
  1271. max-height: 40px;
  1272. }
  1273. .navbar-toggler {
  1274. display: block;
  1275. }
  1276. .fixed-top {
  1277. top: 0;
  1278. border-width: 0 0 1px;
  1279. }
  1280. .navbar-nav > li.nav-item > a.nav-link {
  1281. padding-top: 10px;
  1282. padding-bottom: 10px;
  1283. line-height: normal;
  1284. }
  1285. .dropdown-menu > li > a {
  1286. display: block;
  1287. padding: 3px 20px;
  1288. clear: both;
  1289. font-weight: 400;
  1290. line-height: 1.42857143;
  1291. color: {{ .Get "menu_text" }};
  1292. white-space: nowrap;
  1293. }
  1294. .navbar-light .navbar-nav .open .dropdown-menu {
  1295. position: static;
  1296. width: auto;
  1297. margin-top: 0;
  1298. background-color: transparent;
  1299. border: 0;
  1300. box-shadow: none;
  1301. }
  1302. .navbar-light .navbar-nav .open .dropdown-menu > li > a {
  1303. padding: 5px 15px 5px 25px;
  1304. line-height: 20px;
  1305. color: {{ .Get "menu_text" }};
  1306. }
  1307. .navbar-light .navbar-nav .open .dropdown-menu > li > a:focus,
  1308. .navbar-light .navbar-nav .open .dropdown-menu > li > a:hover {
  1309. color: inherit;
  1310. background-color: transparent;
  1311. }
  1312. .navbar-light .navbar-nav .open .dropdown-menu >.nav-item> .active,
  1313. .navbar-light .navbar-nav .open .dropdown-menu >.nav-item> .active:focus,
  1314. .navbar-light .navbar-nav .open .dropdown-menu >.nav-item> .active:hover {
  1315. color: {{ .Get "menu_text_active" }};
  1316. background-color: transparent;
  1317. }
  1318. .collapse.in {
  1319. display: block !important;
  1320. }
  1321. }
  1322. /*************************************************
  1323. * Tables
  1324. **************************************************/
  1325. table {
  1326. width: 100%;
  1327. max-width: 100%;
  1328. margin-bottom: 1rem;
  1329. font-size: 0.93rem;
  1330. }
  1331. table > thead > tr > th,
  1332. table > tbody > tr > th,
  1333. table > tfoot > tr > th,
  1334. table > thead > tr > td,
  1335. table > tbody > tr > td,
  1336. table > tfoot > tr > td {
  1337. padding: 8px;
  1338. line-height: 1.43;
  1339. vertical-align: top;
  1340. border-top: 1px solid #ddd;
  1341. }
  1342. table > thead > tr > th {
  1343. vertical-align: bottom;
  1344. border-bottom: 2px solid #ddd;
  1345. }
  1346. table > caption + thead > tr:first-child > th,
  1347. table > colgroup + thead > tr:first-child > th,
  1348. table > thead:first-child > tr:first-child > th,
  1349. table > caption + thead > tr:first-child > td,
  1350. table > colgroup + thead > tr:first-child > td,
  1351. table > thead:first-child > tr:first-child > td {
  1352. border-top: 0;
  1353. }
  1354. table > tbody + tbody {
  1355. border-top: 2px solid #ddd;
  1356. }
  1357. table table {
  1358. background-color: #fff;
  1359. }
  1360. /* Table Striped */
  1361. table > tbody > tr:nth-child(odd) > td,
  1362. table > tbody > tr:nth-child(odd) > th {
  1363. background-color: #f9f9f9;
  1364. }
  1365. /* Table Hover */
  1366. table > tbody > tr:hover > td,
  1367. table > tbody > tr:hover > th {
  1368. background-color: #e5e5e5;
  1369. }
  1370. /*************************************************
  1371. * Alerts
  1372. **************************************************/
  1373. div.alert p {
  1374. position: relative;
  1375. display: block;
  1376. font-size: 1rem;
  1377. margin-left: 2rem;
  1378. margin-top: 0;
  1379. margin-bottom: 0;
  1380. }
  1381. div.alert p:first-child::before {
  1382. position: absolute;
  1383. top: -0.5rem;
  1384. left: -2rem;
  1385. font-size: 1.5rem;
  1386. color: #209cee;
  1387. font-family: 'Font Awesome 5 Free';
  1388. font-weight: 900;
  1389. content: '\f05a';
  1390. width: 1.5rem;
  1391. text-align: center;
  1392. }
  1393. div.alert-warning p:first-child::before {
  1394. font-family: 'Font Awesome 5 Free';
  1395. font-weight: 900;
  1396. color: #ff3860;
  1397. content: '\f071';
  1398. }
  1399. div.alert a {
  1400. color: currentColor;
  1401. text-decoration: none;
  1402. border-bottom: solid 1px currentColor;
  1403. }
  1404. .alert-note {
  1405. color: #12537e;
  1406. background-color: #f6fbfe;
  1407. border-color: #209cee;
  1408. }
  1409. .alert-warning {
  1410. color: #cd0930;
  1411. background-color: #fff5f7;
  1412. border-color: #ff3860;
  1413. }
  1414. /*************************************************
  1415. * Documentation layout
  1416. **************************************************/
  1417. .docs-article-container {
  1418. max-width: 760px;
  1419. }
  1420. /* Documentation: article footer. */
  1421. .docs .body-footer {
  1422. border-top: 1px solid #e8e8e8;
  1423. margin-top: 30px;
  1424. padding-top: 10px;
  1425. font-size: 14px;
  1426. color: #707070;
  1427. }
  1428. /* Docs content. */
  1429. .docs-content {
  1430. order: 1;
  1431. position: relative;
  1432. }
  1433. .docs-content>h2[id],
  1434. .docs-content>h3[id],
  1435. .docs-content>h4[id] {
  1436. pointer-events: none;
  1437. }
  1438. .docs-content>ol li,
  1439. .docs-content>ul li {
  1440. margin-bottom: .25rem;
  1441. }
  1442. /* Docs search. */
  1443. .docs-search {
  1444. position: relative;
  1445. padding: 1rem 15px;
  1446. margin-right: -15px;
  1447. margin-left: -15px;
  1448. border-bottom: 1px solid rgba(0, 0, 0, .05);
  1449. }
  1450. .docs-search .form-control:focus {
  1451. border-color: {{ .Get "primary" }};
  1452. box-shadow: 0 0 0 3px {{ .Get "primary_light" }};
  1453. }
  1454. /* Docs sidebar. */
  1455. .docs-sidebar {
  1456. order: 0;
  1457. border-bottom: 1px solid rgba(0, 0, 0, .1)
  1458. }
  1459. @media (min-width:768px) {
  1460. .docs-sidebar {
  1461. border-right: 1px solid rgba(0, 0, 0, .1)
  1462. }
  1463. @supports ((position:-webkit-sticky) or (position:sticky)) {
  1464. .docs-sidebar {
  1465. position: -webkit-sticky;
  1466. position: sticky;
  1467. top: 51px;
  1468. z-index: 1000;
  1469. height: calc(100vh - 51px)
  1470. }
  1471. }
  1472. }
  1473. @media (min-width:1200px) {
  1474. .docs-sidebar {
  1475. border-right: 1px solid rgba(0, 0, 0, .1)
  1476. }
  1477. @supports ((position:-webkit-sticky) or (position:sticky)) {
  1478. .docs-sidebar {
  1479. position: -webkit-sticky;
  1480. position: sticky;
  1481. top: 71px;
  1482. z-index: 1000;
  1483. height: calc(100vh - 71px)
  1484. }
  1485. }
  1486. }
  1487. @media (min-width:1200px) {
  1488. .docs-sidebar {
  1489. flex: 0 1 320px
  1490. }
  1491. }
  1492. /* Docs sidebar li>a. */
  1493. .docs-sidebar .nav>li>a {
  1494. display: block;
  1495. padding: .25rem 1.5rem;
  1496. font-size: 0.8rem;
  1497. color: rgba(0, 0, 0, .65);
  1498. }
  1499. .docs-sidebar .nav>li>a:hover {
  1500. color: rgba(0, 0, 0, .85);
  1501. text-decoration: none;
  1502. background-color: transparent;
  1503. }
  1504. .docs-sidebar .docs-toc-item.active a,
  1505. .docs-sidebar .nav>.active:hover>a,
  1506. .docs-sidebar .nav>.active>a {
  1507. font-weight: bold;
  1508. color: {{ .Get "primary" }};
  1509. background-color: transparent;
  1510. }
  1511. /* Docs links. */
  1512. .docs-toggle {
  1513. line-height: 1;
  1514. font-size: 1.2rem;
  1515. color: {{ .Get "primary" }};
  1516. background-color: transparent;
  1517. }
  1518. .docs-links {
  1519. padding-top: 1rem;
  1520. padding-bottom: 1rem;
  1521. margin-right: -15px;
  1522. margin-left: -15px;
  1523. }
  1524. @media (min-width:768px) {
  1525. @supports ((position:-webkit-sticky) or (position:sticky)) {
  1526. .docs-links {
  1527. max-height: calc(100vh - 5rem - 71px);
  1528. overflow-y: auto;
  1529. }
  1530. }
  1531. }
  1532. @media (min-width:768px) {
  1533. .docs-links {
  1534. display: block!important;
  1535. }
  1536. }
  1537. /* Docs TOC. */
  1538. .docs-toc {
  1539. order: 2;
  1540. padding-top: 1.5rem;
  1541. padding-bottom: 1.5rem;
  1542. font-size: .875rem
  1543. }
  1544. @supports ((position:-webkit-sticky) or (position:sticky)) {
  1545. .docs-toc {
  1546. position: -webkit-sticky;
  1547. position: sticky;
  1548. top: 71px;
  1549. height: calc(100vh - 71px);
  1550. overflow-y: auto
  1551. }
  1552. }
  1553. /* Docs TOC item links. */
  1554. .docs-toc-link {
  1555. display: block;
  1556. padding: .25rem 1.5rem;
  1557. font-weight: bold;
  1558. color: rgba(0, 0, 0, .65);
  1559. }
  1560. .docs-toc-link:hover {
  1561. color: rgba(0, 0, 0, .85);
  1562. text-decoration: none;
  1563. }
  1564. .docs-toc-item.active {
  1565. margin-bottom: 1rem;
  1566. }
  1567. .docs-toc-item.active:not(:first-child) {
  1568. margin-top: 1rem;
  1569. }
  1570. .docs-toc-item.active>.docs-toc-link {
  1571. color: rgba(0, 0, 0, .85);
  1572. }
  1573. .docs-toc-item.active>.docs-toc-link:hover {
  1574. background-color: transparent;
  1575. }
  1576. .docs-sidenav {
  1577. display: block;
  1578. }
  1579. /* Docs TOC nav. */
  1580. .docs-toc-title {
  1581. color: #b5b5b5;
  1582. font-size: .875rem;
  1583. font-weight: 600;
  1584. padding-left: calc(1.5rem + 1px);
  1585. margin-bottom: .5rem;
  1586. }
  1587. #TableOfContents {
  1588. padding-left: 0;
  1589. border-left: 1px solid #eee;
  1590. }
  1591. #TableOfContents ul,
  1592. ul.toc-top {
  1593. padding-left: 0;
  1594. }
  1595. #TableOfContents ul ul {
  1596. display: none;
  1597. }
  1598. #TableOfContents li {
  1599. display: block;
  1600. }
  1601. #TableOfContents li a,
  1602. .toc-top li a {
  1603. display: block;
  1604. padding: .125rem 1.5rem;
  1605. color: #99979c;
  1606. font-size: 0.7rem;
  1607. }
  1608. #TableOfContents li a:hover,
  1609. .toc-top li a:hover {
  1610. color: {{ .Get "primary" }};
  1611. text-decoration: none;
  1612. }
  1613. /* Docs achnorjs links. */
  1614. .anchorjs-link {
  1615. font-weight: 400;
  1616. color: {{ .Get "primary_dark" }};
  1617. transition: color .16s linear;
  1618. }
  1619. .anchorjs-link:hover {
  1620. color: {{ .Get "primary" }};
  1621. text-decoration: none;
  1622. }
  1623. /*************************************************
  1624. * Dark themed components
  1625. **************************************************/
  1626. body.dark,
  1627. .dark .docs-toc-link,
  1628. .dark .docs-sidebar .nav > li:not(.active) > a,
  1629. .dark .modal button.close,
  1630. .dark input,
  1631. .dark .form-control,
  1632. .dark .form-control:focus {
  1633. color: rgb(248, 248, 242);
  1634. }
  1635. .dark .form-control {
  1636. background-color: rgb(68, 71, 90);
  1637. }
  1638. .dark .form-control:focus {
  1639. background-color: rgb(68, 71, 90);
  1640. border-color: {{ .Get "primary" }};
  1641. box-shadow: 0 0 0 .2rem {{ .Get "primary_dark" }};
  1642. }
  1643. .dark h1,
  1644. .dark h2,
  1645. .dark h3,
  1646. .dark h4,
  1647. .dark h5,
  1648. .dark h6 {
  1649. color: rgb(152, 166, 173);
  1650. }
  1651. .dark pre,
  1652. .dark code {
  1653. color: rgb(139, 233, 253);
  1654. background-color: rgb(68, 71, 90);
  1655. }
  1656. .dark pre {
  1657. background-color: rgb(68, 71, 90);
  1658. border-color: rgb(68, 71, 90);
  1659. }
  1660. .dark .markup-quote {
  1661. background-image: linear-gradient(to bottom, rgba(233, 231, 245, 0.2), rgba(233, 231, 245, 0.2));
  1662. }
  1663. .dark #MathJax_Zoom {
  1664. background-color: rgb(68, 71, 90) !important;
  1665. }
  1666. .dark ul.share li a {
  1667. background-color: {{ .Get "primary" }};
  1668. }
  1669. .dark table table {
  1670. background-color: rgb(40, 42, 54);
  1671. }
  1672. /* Table Striped */
  1673. .dark table > tbody > tr:nth-child(odd) > td,
  1674. .dark table > tbody > tr:nth-child(odd) > th {
  1675. background-color: rgb(50, 52, 64);
  1676. }
  1677. /* Table Hover */
  1678. .dark table > tbody > tr:hover > td,
  1679. .dark table > tbody > tr:hover > th {
  1680. background-color: rgb(60, 62, 74);
  1681. }
  1682. .dark .article-title a {
  1683. color: #fff;
  1684. }
  1685. .dark #profile .portrait-title h2 {
  1686. color: #fff;
  1687. }
  1688. .dark #profile .portrait-title h3 {
  1689. color: rgba(255, 255, 255, 0.54);
  1690. }
  1691. .dark ul.ul-edu li .description p.institution {
  1692. color: rgba(255, 255, 255, 0.6);
  1693. }
  1694. .dark .pub-icon {
  1695. color: rgba(255, 255, 255, 0.54);
  1696. }
  1697. .dark .talk-metadata {
  1698. color: rgba(255, 255, 255, 0.54);
  1699. }
  1700. .dark .pagination li > a, .pagination li > span {
  1701. background-color: rgb(40, 42, 54);
  1702. border: 1px solid #ddd;
  1703. }
  1704. .dark .card {
  1705. background: #343a40;
  1706. }
  1707. .dark .card h4 a {
  1708. color: {{ .Get "primary" }};
  1709. border-bottom: solid 1px transparent;
  1710. }
  1711. .dark .card .card-image.hover-overlay::before {
  1712. background: #666;
  1713. }
  1714. .dark .card .card-image.hover-overlay::after {
  1715. color: #fff;
  1716. }
  1717. .dark .navbar-light {
  1718. box-shadow: 0 0.125rem 0.25rem 0 rgba(255, 255, 255, .11);
  1719. border-color: #070707;
  1720. }
  1721. .dark select {
  1722. background: rgb(40, 42, 54);
  1723. color: rgb(248, 248, 242);
  1724. }
  1725. /* Algolia search input */
  1726. .dark .ais-search-box--input {
  1727. background-color: rgb(68, 71, 90);
  1728. }
  1729. .dark #search-query {
  1730. background-color: rgb(68, 71, 90);
  1731. }
  1732. .dark .badge-light {
  1733. color: rgba(255, 255, 255, .68);
  1734. background: rgba(255, 255, 255, .2);
  1735. }
  1736. .dark .badge-light[href]:focus,
  1737. .dark .badge-light[href]:hover {
  1738. background: rgba(255, 255, 255, .3);
  1739. }
  1740. .dark a.badge:focus,
  1741. .dark a.badge:hover {
  1742. color: rgba(255, 255, 255, .68);
  1743. }
  1744. .dark .btn-primary,
  1745. .dark .btn.btn-primary.active {
  1746. color: initial;
  1747. }