page-conference.php 24 KB

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