page-journal.php 24 KB

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