page-conference.php 24 KB

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