page-conferences.php 24 KB

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