page-journal.php 23 KB

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