page-conference.php 25 KB

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