academic.css 41 KB

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