page-journal.php 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946
  1. <?php
  2. /**
  3. * Template Name: Journal
  4. *
  5. * @package UIU_CSE
  6. */
  7. get_header(); ?>
  8. <?php while (have_posts()) : the_post();
  9. $auth_token = get_field('auth_token', 'option');
  10. $client_id = get_field('client_id', 'option');
  11. $journal_api = get_field('journal_api', 'option');
  12. $curl = curl_init();
  13. curl_setopt_array($curl, array(
  14. CURLOPT_URL => $journal_api,
  15. CURLOPT_RETURNTRANSFER => true,
  16. CURLOPT_ENCODING => '',
  17. CURLOPT_MAXREDIRS => 10,
  18. CURLOPT_TIMEOUT => 0,
  19. CURLOPT_FOLLOWLOCATION => true,
  20. CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
  21. CURLOPT_CUSTOMREQUEST => 'POST',
  22. CURLOPT_POSTFIELDS => '{
  23. "auth_token" : "' . $auth_token . '",
  24. "user_login_id" : "' . $client_id . '"
  25. }',
  26. CURLOPT_HTTPHEADER => array(
  27. 'Content-Type: application/json'
  28. ),
  29. ));
  30. $response = curl_exec($curl);
  31. curl_close($curl);
  32. $response = json_decode($response, true);
  33. ?>
  34. <main id="main" class="site-main" role="main">
  35. <div class="">
  36. <section class="container-fluid">
  37. <div class="banner-img-holder">
  38. <div class="banner-overlay">
  39. </div>
  40. <img class="banner-img" src="<?php echo get_the_post_thumbnail_url(); ?>" alt="">
  41. <div class="banner-title">
  42. <h1>
  43. Research at <br> Department of <br>
  44. Computer Science &amp; Engineering
  45. </h1>
  46. </div>
  47. </div>
  48. </section>
  49. <section id="breadcrumb" class="container">
  50. <div>
  51. <span class="crumbs">Department of CSE > Research > Journals</span>
  52. </div>
  53. </section>
  54. </div>
  55. <div class="row container">
  56. <div class="col-md-3 col-sidebar">
  57. <div class="generic-para sidebar-links">
  58. <h3>Research</h3>
  59. <ul>
  60. <li><a href="#">Conference Papers</a></li>
  61. <li class="active"><a href="#">Journals</a></li>
  62. <li><a href="#">Journals</a></li>
  63. <li><a href="#">Journals</a></li>
  64. <li><a href="#">Journals</a></li>
  65. </ul>
  66. </div>
  67. </div>
  68. <div class="col-md-9 col-content">
  69. <div class="sections">
  70. <section id="conference-papers-section" class="container generic-content" data-theme="light">
  71. <div class="generic-para shadowed">
  72. <h3>Journal Papers</h3>
  73. <?php
  74. foreach ($response as $item) {
  75. // Access individual elements of each response
  76. echo "<div class='paper-details'>";
  77. echo "<span class='paper-year'>{$item['Year']}</span>";
  78. // Iterate over the JournalList array within each item
  79. foreach ($item['JournalList'] as $journal) {
  80. // Access individual elements of each journal
  81. echo "<a href='{$journal['JournalLink']}'>";
  82. echo "<h2 class='paper-title'>{$journal['PaperTitle']}</h2>";
  83. echo "</a>";
  84. echo "<p class='paper-tags'>";
  85. // $journalKeyword = explode(',', $journal['Keyword']);
  86. foreach ($journal['KeyWords'] as $keyword) {
  87. if ($keyword) {
  88. echo "<span class='tag'>{$keyword}</span>";
  89. }
  90. }
  91. echo "</p>";
  92. echo "<p class='paper-event'><i>Publication: </i> {$journal['JournalTitle']}</p>";
  93. echo "<p class='paper-contributors'>";
  94. echo "<i>Authors: </i>";
  95. // Iterate over the Author array within each journal
  96. foreach ($journal['Author'] as $author) {
  97. // Access individual elements of each author
  98. $authorName = $author['AuthorName'];
  99. // Process or output the values as needed
  100. echo " $authorName,";
  101. }
  102. echo "</p>";
  103. }
  104. echo "</div>";
  105. }
  106. ?>
  107. </div>
  108. </section>
  109. </div>
  110. </div>
  111. </div>
  112. </main>
  113. <!-- #main -->
  114. <?php endwhile; // end of the loop.
  115. ?>
  116. <style>
  117. *,
  118. *::before,
  119. *::after {
  120. box-sizing: border-box;
  121. }
  122. * {
  123. font-family: "Open Sans", sans-serif;
  124. margin: 0px auto;
  125. padding: 0px;
  126. }
  127. p {
  128. font-size: 16px !important;
  129. line-height: 30px;
  130. color: #4e4e4e !important;
  131. margin: 0 auto;
  132. }
  133. .grid {
  134. gap: 30px;
  135. }
  136. body {
  137. overflow-y: scroll;
  138. overflow-x: hidden;
  139. }
  140. section {
  141. background: #fff;
  142. margin: 0 auto;
  143. }
  144. header {
  145. margin: 0px;
  146. padding: 0px !important;
  147. height: 50px;
  148. overflow: hidden;
  149. }
  150. main {
  151. position: relative;
  152. padding: 0px !important;
  153. background-color: #fff;
  154. }
  155. h1 {
  156. font-size: 40px !important;
  157. letter-spacing: 2px !important;
  158. line-height: 100%;
  159. }
  160. h1,
  161. h2,
  162. h3,
  163. h4 {
  164. font-weight: normal;
  165. margin-bottom: 0px !important;
  166. }
  167. button {
  168. margin: 40px auto;
  169. margin-bottom: 30px;
  170. max-width: 300px;
  171. font-size: 20px;
  172. border-radius: 0px;
  173. border: none;
  174. border-radius: 4px;
  175. background: #f68b1f;
  176. transition-duration: 0.3s;
  177. }
  178. button:hover {
  179. background: #117cf7;
  180. }
  181. .container {
  182. margin: 0px auto;
  183. padding: 10px 10px;
  184. max-width: 1200px !important;
  185. }
  186. .container-fluid {
  187. padding: 0px !important;
  188. }
  189. #search-close {
  190. width: 100px;
  191. border-radius: 40px;
  192. background-color: #F68B1F;
  193. margin-top: 30px;
  194. margin-right: 30px;
  195. }
  196. .overlay-content {
  197. overflow: hidden;
  198. }
  199. .overlay-content label {
  200. display: inline-block;
  201. }
  202. .overlay-content h4 {
  203. display: inline-block;
  204. margin: 0px 20px;
  205. }
  206. .overlay-content div a {
  207. display: inline-block;
  208. text-decoration: underline;
  209. }
  210. .overlay-content div h6 {
  211. display: inline-block;
  212. }
  213. #search-bar {
  214. width: 60%;
  215. display: inline-block;
  216. }
  217. #search-button {
  218. width: 300px;
  219. display: inline-block;
  220. border-radius: 30px;
  221. margin-left: 20px;
  222. background: #485680;
  223. }
  224. #search-modal {
  225. overflow: hidden;
  226. }
  227. #search-button:hover {
  228. background-color: #F68B1F;
  229. }
  230. #first-nav>ul>img {
  231. transition-duration: 0.5s;
  232. }
  233. section#first-nav-section nav {
  234. position: fixed;
  235. text-align: center;
  236. padding: 0px;
  237. justify-content: space-evenly;
  238. height: 70px;
  239. z-index: 10;
  240. transition: 0.5s ease-in-out;
  241. background-color: #160c0c;
  242. border-bottom: 4px solid #F68B1F;
  243. box-shadow: 0px 5px 12px -5px #2F4858;
  244. }
  245. section#first-nav-section nav ul {
  246. align-items: center;
  247. z-index: 3;
  248. }
  249. section#first-nav-section nav ul img {
  250. height: 50px;
  251. width: auto;
  252. margin-right: 30px;
  253. padding-left: 20px;
  254. }
  255. section#first-nav-section nav ul>li {
  256. margin-right: 50px;
  257. }
  258. section#first-nav-section nav ul>li:last-child {
  259. margin-right: 0px;
  260. }
  261. section#first-nav-section nav ul>li:last-child {
  262. margin-right: 0;
  263. }
  264. section#first-nav-section nav ul>li>a {
  265. color: #fff;
  266. transition-duration: 0.3s;
  267. font-size: 14px;
  268. letter-spacing: 2px;
  269. text-transform: uppercase;
  270. font-weight: bold;
  271. font-size: 12px;
  272. }
  273. section#first-nav-section nav ul>li:after {
  274. content: "";
  275. display: block;
  276. margin: auto;
  277. height: 1px;
  278. width: 0px;
  279. background: transparent;
  280. transition: width 0.3s ease, background-color 0.5s ease;
  281. }
  282. section#first-nav-section nav ul>li:hover:after {
  283. width: 100%;
  284. background: #fff;
  285. }
  286. section#first-nav-section .nav-resp {
  287. height: 50px;
  288. background-color: #160c0c;
  289. border-bottom: 4px solid #F68B1F;
  290. box-shadow: 0px 5px 12px -5px #2F4858;
  291. }
  292. section#first-nav-section .nav-resp ul img {
  293. height: 30px !important;
  294. padding-left: 20px;
  295. }
  296. section#first-nav-section .nav-resp #menu-bars {
  297. padding-top: 2px;
  298. }
  299. #menu-bars {
  300. display: none;
  301. padding-top: 2px;
  302. color: #fff;
  303. }
  304. section#second-nav-section nav {
  305. position: fixed;
  306. top: 70px;
  307. text-align: center;
  308. padding: 0px;
  309. justify-content: space-evenly;
  310. height: 50px;
  311. z-index: 10;
  312. transition: 0.5s ease-in-out;
  313. background: #117cf7;
  314. }
  315. section#second-nav-section nav ul {
  316. margin-top: 0px;
  317. width: 100vw;
  318. justify-content: space-evenly;
  319. display: inline-flex;
  320. }
  321. section#second-nav-section nav ul li>a {
  322. margin: 0px;
  323. color: #fff;
  324. transition-duration: 0.3s;
  325. font-size: 14px;
  326. letter-spacing: 2px;
  327. text-transform: uppercase;
  328. font-weight: normal;
  329. font-size: 12px;
  330. border-radius: 0px;
  331. }
  332. section#second-nav-section nav ul li>a:hover {
  333. border-radius: 0;
  334. font-weight: bolder;
  335. color: #eeffb0;
  336. text-decoration: none !important;
  337. }
  338. section#second-nav-section nav ul li:first-of-type>a:hover {
  339. background: none;
  340. }
  341. section#second-nav-section nav ul li>a>img {
  342. height: 40px !important;
  343. }
  344. section#second-nav-section nav ul li>a>img:hover {
  345. background-color: rgba(255, 255, 255, 0);
  346. }
  347. section#second-nav-section .second-nav-active {
  348. height: 40px;
  349. top: 50px;
  350. background-color: #117cf7;
  351. }
  352. section#second-nav-section .second-nav-active ul>li>a>img {
  353. height: 30px !important;
  354. }
  355. #top-search {
  356. width: 140px;
  357. border-radius: 0;
  358. height: 30px;
  359. }
  360. @media (max-width: 1100px) {
  361. #first-nav>ul {
  362. position: relative;
  363. width: 100%;
  364. left: 0px;
  365. }
  366. #first-nav>ul>img {
  367. width: 350px;
  368. -o-object-fit: contain;
  369. object-fit: contain;
  370. margin-right: auto;
  371. }
  372. #first-nav>ul>li {
  373. display: none;
  374. }
  375. #first-nav>ul>li:last-child {
  376. display: inline-block;
  377. margin-right: auto;
  378. width: 40px;
  379. }
  380. #top-search {
  381. display: none;
  382. }
  383. #menu-bars {
  384. display: inline-block;
  385. margin: 0px auto;
  386. padding-top: 13px;
  387. font-size: 45px;
  388. color: #fff;
  389. }
  390. #first-nav>ul>li:last-child {
  391. display: none;
  392. }
  393. }
  394. @media (max-width: 576px) {
  395. #menu-bars {
  396. margin: 0px auto;
  397. padding-top: 13px;
  398. font-size: 45px;
  399. color: #fff;
  400. }
  401. #first-nav>ul>img {
  402. width: 170px;
  403. margin-left: 10px !important;
  404. }
  405. #search>button.filled {
  406. display: none;
  407. }
  408. body>main>section:nth-child(2)>div>h1 {
  409. font-size: 60px;
  410. }
  411. #first-nav>ul>li:last-child {
  412. display: none;
  413. }
  414. #cta {
  415. display: flex;
  416. flex-direction: column;
  417. }
  418. #cta>button:nth-child(2) {
  419. display: none;
  420. }
  421. #second-nav-section {
  422. display: none !important;
  423. }
  424. }
  425. #slider-container {
  426. padding: 0px !important;
  427. }
  428. .yellow-line {
  429. display: block;
  430. width: 100px;
  431. height: 4px;
  432. background-color: #00ff00;
  433. margin-left: 10px;
  434. margin-top: 10px;
  435. margin-bottom: 0px;
  436. }
  437. @media screen and (max-width: 800px) {
  438. .yellow-line {
  439. margin-left: calc(50vw - 50%) !important;
  440. }
  441. }
  442. footer {
  443. position: relative;
  444. z-index: 30 !important;
  445. }
  446. #footer1 {
  447. z-index: 10;
  448. height: 400px;
  449. background: url("../img/footer2.png") no-repeat;
  450. background-size: cover;
  451. background-position: top;
  452. }
  453. footer.container-fluid {
  454. border-top: 10px solid #C85688;
  455. overflow: hidden;
  456. text-align: left;
  457. margin: 0px;
  458. padding: 0px !important;
  459. background: #160c0c;
  460. min-height: 350px;
  461. }
  462. footer.container-fluid h3 {
  463. margin: 10px auto;
  464. margin: 30px 0px;
  465. font-family: "Open Sans", sans-serif;
  466. font-size: 20px;
  467. color: #fff;
  468. font-weight: normal;
  469. text-decoration: underline;
  470. }
  471. footer.container-fluid ul {
  472. padding: 0px;
  473. }
  474. footer.container-fluid ul>li {
  475. list-style: none;
  476. margin: 0px;
  477. padding: 0px;
  478. line-height: 110%;
  479. }
  480. footer.container-fluid ul>li a {
  481. text-decoration: none;
  482. color: #fff;
  483. font-size: 12px;
  484. letter-spacing: 2px;
  485. font-weight: normal;
  486. font-family: "Open Sans", sans-serif;
  487. text-transform: uppercase;
  488. }
  489. footer.container-fluid ul>li a:hover {
  490. color: #F68B1F;
  491. text-decoration: underline;
  492. }
  493. #fine-print {
  494. text-align: center;
  495. margin: 10px auto;
  496. height: 50px;
  497. border-top: 1px solid #F68B1F;
  498. }
  499. #fine-print p {
  500. font-size: 12px;
  501. display: inline-flex;
  502. }
  503. #fine-print ul {
  504. display: inline;
  505. }
  506. #fine-print ul>li {
  507. display: inline;
  508. padding: 10px;
  509. font-size: 12px;
  510. letter-spacing: 1px;
  511. }
  512. .banner-img-holder {
  513. width: 100vw;
  514. height: 400px;
  515. margin-bottom: 60px !important;
  516. }
  517. .banner-overlay {
  518. position: relative;
  519. top: 0px;
  520. bottom: 0px;
  521. height: 400px;
  522. width: 100vw;
  523. background-color: rgba(50, 52, 63, 0.4588235294);
  524. z-index: 1;
  525. }
  526. .banner-img {
  527. position: relative;
  528. top: -400px;
  529. width: 100%;
  530. height: 100%;
  531. -o-object-fit: cover;
  532. object-fit: cover;
  533. -o-object-position: center;
  534. object-position: center;
  535. filter: greyscale(80%) !important;
  536. }
  537. .banner-title {
  538. position: relative;
  539. top: -800px;
  540. height: 400px;
  541. width: 100vw;
  542. z-index: 2;
  543. display: flex;
  544. flex-direction: column;
  545. justify-content: center;
  546. }
  547. .banner-title h1 {
  548. margin-top: 50px !important;
  549. font-family: "Open Sans", sans-serif;
  550. font-weight: 800;
  551. line-height: 140%;
  552. color: #fff;
  553. text-align: center;
  554. }
  555. #breadcrumb {
  556. padding-top: 20px;
  557. }
  558. #breadcrumb div {
  559. margin-left: 20px !important;
  560. }
  561. .crumbs {
  562. font-size: 14px;
  563. font-weight: 400;
  564. margin: 30px 0px;
  565. padding-bottom: 5px;
  566. letter-spacing: 2px;
  567. color: #333 !important;
  568. border-bottom: 1px solid #333;
  569. }
  570. .sidebar-links {
  571. margin: 10px 0px !important;
  572. border-radius: 4px;
  573. border: 1px solid rgba(51, 51, 51, 0.1921568627);
  574. }
  575. .sidebar-links h3 {
  576. font-size: 30px !important;
  577. font-family: "Open Sans", sans-serif !important;
  578. width: 100%;
  579. text-align: center !important;
  580. text-transform: uppercase;
  581. padding-bottom: 15px !important;
  582. border-bottom: 1px solid #117cf7 !important;
  583. }
  584. .sidebar-links ul li {
  585. height: 30px !important;
  586. padding: 5px 10px !important;
  587. font-size: 14px;
  588. list-style: none;
  589. border-bottom: 1px solid rgba(51, 51, 51, 0.231372549);
  590. }
  591. .sidebar-links ul li a:link,
  592. .sidebar-links ul li a:visited {
  593. color: #117cf7;
  594. }
  595. .sidebar-links ul li a:hover {
  596. text-decoration: none;
  597. color: #333;
  598. }
  599. .sidebar-links ul li.active a:link,
  600. .sidebar-links ul li.active a:visited {
  601. color: #865994;
  602. font-weight: 600;
  603. }
  604. .generic-content-block {
  605. padding: 40px 10px !important;
  606. }
  607. .generic-header {
  608. width: 100%;
  609. margin: 30px auto !important;
  610. }
  611. .generic-header h1 {
  612. font-weight: 600;
  613. text-align: center;
  614. text-transform: uppercase;
  615. }
  616. .personnel-img {
  617. width: 300px;
  618. height: 300px;
  619. margin: 30px auto;
  620. }
  621. .personnel-img img {
  622. border-radius: 4px;
  623. box-shadow: 4px 6px 18px 12px rgba(51, 51, 51, 0.1490196078);
  624. width: 100%;
  625. height: 100%;
  626. -o-object-fit: cover;
  627. object-fit: cover;
  628. -o-object-position: center;
  629. object-position: center;
  630. }
  631. .shadowed {
  632. border-radius: 4px;
  633. box-shadow: 4px 6px 18px 12px rgba(51, 51, 51, 0.1490196078);
  634. }
  635. .generic-para {
  636. text-align: left;
  637. padding: 20px !important;
  638. }
  639. .generic-para ol {
  640. margin: 10px 30px !important;
  641. }
  642. .generic-para img {
  643. border-radius: 4px;
  644. height: 240px;
  645. width: 100%;
  646. -o-object-fit: cover;
  647. object-fit: cover;
  648. -o-object-position: center;
  649. object-position: center;
  650. }
  651. .generic-para h2 {
  652. text-align: center;
  653. letter-spacing: 1px;
  654. }
  655. .generic-para h3 {
  656. font-family: "DM Serif Text", serif;
  657. margin: 20px 0px !important;
  658. text-align: left;
  659. border-bottom: 3px solid #117cf7;
  660. }
  661. .generic-para p {
  662. text-align: justify;
  663. margin: 30px 0px !important;
  664. font-size: 16px !important;
  665. line-height: 22px;
  666. }
  667. .prof-name {
  668. color: #485680;
  669. font-weight: 700;
  670. font-size: 18px;
  671. }
  672. .prof-deg {
  673. font-style: italic;
  674. font-weight: 400;
  675. }
  676. .prof-des {
  677. font-size: 18px;
  678. font-weight: 700;
  679. }
  680. .area {
  681. margin: 10px 0px;
  682. border: 1px solid rgba(51, 51, 51, 0.3803921569);
  683. border-radius: 8px;
  684. height: 120px;
  685. width: 100%;
  686. display: flex;
  687. justify-content: center;
  688. align-items: center;
  689. }
  690. .alignnone {
  691. width: 150px !important;
  692. height: auto !important;
  693. margin: 20px auto !important;
  694. }
  695. #all-faculties h2,
  696. #all-events h2,
  697. #all-news h2 {
  698. color: #000 !important;
  699. margin-top: 40px;
  700. margin-bottom: 20px;
  701. font-weight: 800;
  702. }
  703. #all-faculties hr,
  704. #all-events hr,
  705. #all-news hr {
  706. border: 1px solid rgba(51, 51, 51, 0.3882352941);
  707. }
  708. #all-faculties .faculty-stub,
  709. #all-events .faculty-stub,
  710. #all-news .faculty-stub {
  711. width: 100%;
  712. padding: 5px;
  713. box-shadow: 2px 2px 10px 6px rgba(0, 0, 0, 0.137254902);
  714. margin: 30px auto !important;
  715. }
  716. #all-faculties .stub-img-holder,
  717. #all-events .stub-img-holder,
  718. #all-news .stub-img-holder {
  719. border-radius: 4px !important;
  720. height: 160px;
  721. overflow: hidden;
  722. }
  723. #all-faculties .stub-img-holder img,
  724. #all-events .stub-img-holder img,
  725. #all-news .stub-img-holder img {
  726. border-radius: 0px !important;
  727. height: 100%;
  728. width: 100%;
  729. -o-object-fit: cover;
  730. object-fit: cover;
  731. -o-object-position: center;
  732. object-position: center;
  733. }
  734. #all-faculties .archive-faculty-details,
  735. #all-events .archive-faculty-details,
  736. #all-news .archive-faculty-details {
  737. height: 100px;
  738. padding: 0px 10px;
  739. }
  740. #all-faculties .archive-faculty-details .faculty-degree,
  741. #all-events .archive-faculty-details .faculty-degree,
  742. #all-news .archive-faculty-details .faculty-degree {
  743. display: inline-block;
  744. color: rgba(89, 107, 161, 0.5647058824);
  745. font-weight: 800;
  746. font-size: 14px;
  747. }
  748. #all-faculties .archive-faculty-details .faculty-designation,
  749. #all-events .archive-faculty-details .faculty-designation,
  750. #all-news .archive-faculty-details .faculty-designation {
  751. display: block;
  752. color: rgba(0, 0, 0, 0.5647058824);
  753. font-weight: 800;
  754. font-size: 14px;
  755. }
  756. #all-faculties .archive-faculty-details h3,
  757. #all-events .archive-faculty-details h3,
  758. #all-news .archive-faculty-details h3 {
  759. font-size: 18px;
  760. line-height: 22px;
  761. font-family: "Open Sans", sans-serif;
  762. color: #2F4858 !important;
  763. margin: 10px auto;
  764. }
  765. .faculty-grp-img {
  766. height: auto !important;
  767. width: 100% !important;
  768. margin: 0px auto !important;
  769. }
  770. .paper-details {
  771. padding: 30px 0px;
  772. border-bottom: 1px solid rgba(51, 51, 51, 0.1764705882);
  773. }
  774. .paper-details .paper-title {
  775. font-size: 18px !important;
  776. text-align: left !important;
  777. margin: 10px 0px !important;
  778. text-decoration: underline;
  779. }
  780. .paper-details .paper-year {
  781. font-size: 14px;
  782. display: block;
  783. color: rgba(51, 51, 51, 0.4509803922);
  784. }
  785. .paper-details p {
  786. margin: 5px !important;
  787. font-size: 14px !important;
  788. }
  789. .paper-details .paper-contributors {
  790. color: #222222 !important;
  791. }
  792. .paper-details .paper-tags {
  793. margin: 20px 0px !important;
  794. }
  795. .paper-details .paper-tags .tag {
  796. font-size: 14px;
  797. border: 1px solid rgba(17, 124, 247, 0.431372549);
  798. padding: 3px 8px !important;
  799. border-radius: 10px;
  800. }
  801. /*# sourceMappingURL=journal-cse.css.map */
  802. </style>
  803. <?php get_footer(); ?>