page-journal.php 23 KB

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