page-journal.php 25 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032
  1. <?php
  2. /**
  3. * Template Name: Journal
  4. *
  5. * @package UIU_CSE
  6. */
  7. get_header(); ?>
  8. <?php while (have_posts()) : the_post();
  9. $auth_token = get_field('auth_token', 'option');
  10. $client_id = get_field('client_id', 'option');
  11. $journal_api = get_field('journal_api', 'option');
  12. $curl = curl_init();
  13. curl_setopt_array($curl, array(
  14. CURLOPT_URL => $journal_api,
  15. CURLOPT_RETURNTRANSFER => true,
  16. CURLOPT_ENCODING => '',
  17. CURLOPT_MAXREDIRS => 10,
  18. CURLOPT_TIMEOUT => 0,
  19. CURLOPT_FOLLOWLOCATION => true,
  20. CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
  21. CURLOPT_CUSTOMREQUEST => 'POST',
  22. CURLOPT_POSTFIELDS => '{
  23. "employee_id" : " ",
  24. "year" : "2022",
  25. "auth_token" : "' . $auth_token . '",
  26. "user_login_id" : "' . $client_id . '",
  27. "page" : 1,
  28. "limit" : 3
  29. }',
  30. CURLOPT_HTTPHEADER => array(
  31. 'Content-Type: application/json'
  32. ),
  33. ));
  34. $response = curl_exec($curl);
  35. curl_close($curl);
  36. $response = json_decode($response, true);
  37. ?>
  38. <main id="main" class="site-main" role="main">
  39. <div class="">
  40. <section class="container-fluid">
  41. <div class="banner-img-holder">
  42. <div class="banner-overlay">
  43. </div>
  44. <img class="banner-img" src="<?php echo get_the_post_thumbnail_url(); ?>" alt="">
  45. <div class="banner-title">
  46. <h1>
  47. Research at <br> Department of <br>
  48. Computer Science &amp; Engineering
  49. </h1>
  50. </div>
  51. </div>
  52. </section>
  53. <section id="breadcrumb" class="container">
  54. <div>
  55. <span class="crumbs">Department of CSE > Research > Journals</span>
  56. </div>
  57. </section>
  58. </div>
  59. <div class="row container">
  60. <div class="col-md-3 col-sidebar">
  61. <div class="generic-para sidebar-links">
  62. <h3>Research</h3>
  63. <ul>
  64. <li><a href="#">Conference Papers</a></li>
  65. <li class="active"><a href="#">Journals</a></li>
  66. <li><a href="#">Journals</a></li>
  67. <li><a href="#">Journals</a></li>
  68. <li><a href="#">Journals</a></li>
  69. </ul>
  70. </div>
  71. </div>
  72. <div class="col-md-9 col-content">
  73. <div class="sections">
  74. <section id="conference-papers-section" class="container generic-content" data-theme="light">
  75. <div class="generic-para shadowed">
  76. <h3>Journal Papers</h3>
  77. <div class="paper-details">
  78. <span class="paper-year">2015</span>
  79. <h2 class="paper-title">Target Coverage Through Distributed Clustering in Directional Sensor Networks</h2>
  80. <p class="paper-tags">
  81. <span class="tag">Wireless Communications</span>
  82. </p>
  83. <p class="paper-event">
  84. <i>Publication: </i> Eurasip Journal on Wireless Communications and Networking, April 2015 (in Press). SCIE,
  85. </p>
  86. <p class="paper-contributors">
  87. <i>Authors: </i> Md. Mofijul Islam, Md. Ahasanuzzaman, Md. Abdur Razzaque, M. M. Hassan, Abdulhameed Alelaiwi, Yang Xiang
  88. </p>
  89. </div>
  90. <?php
  91. foreach ($response as $item) {
  92. // Access individual elements of each item in the array
  93. $year = $item['Year'];
  94. $journalList = $item['JournalList'];
  95. // Process or output the values as needed
  96. echo "Year: $year\n";
  97. echo '<br>';
  98. // Iterate over the JournalList array within each item
  99. foreach ($journalList as $journal) {
  100. // Access individual elements of each journal
  101. $paperTitle = $journal['PaperTitle'];
  102. $JournalLink = $journal['JournalLink'];
  103. $Keyword = $journal['Keyword'];
  104. $journalTitle = $journal['JournalTitle'];
  105. // Process or output the values as needed
  106. echo "Paper Title: $paperTitle\n";
  107. echo "Journal Link: $JournalLink\n";
  108. echo "Keywords: $Keyword\n";
  109. echo "Journal Title: $journalTitle\n";
  110. echo '<br>';
  111. // Iterate over the Author array within each journal
  112. foreach ($journal['Author'] as $author) {
  113. // Access individual elements of each author
  114. $authorName = $author['AuthorName'];
  115. // Process or output the values as needed
  116. echo "Author Name: $authorName\n";
  117. echo '<br>';
  118. }
  119. }
  120. }
  121. ?>
  122. <?php
  123. echo '<pre>';
  124. print_r($response[0]["Year"]);
  125. echo '<br>';
  126. print_r($response[0]["JournalList"][0]["PaperTitle"]);
  127. echo '<br>';
  128. print_r($response[0]["JournalList"][0]["JournalLink"]);
  129. echo '<br>';
  130. print_r($response[0]["JournalList"][0]["Keyword"]);
  131. echo '<br>';
  132. print_r($response[0]["JournalList"][0]["JournalTitle"]);
  133. echo '<br>';
  134. print_r($response[0]["JournalList"][0]["Author"][0]["AuthorName"]);
  135. ?>
  136. </div>
  137. </section>
  138. </div>
  139. </div>
  140. </div>
  141. </main>
  142. <!-- #main -->
  143. <script>
  144. // var myHeaders = new Headers();
  145. // myHeaders.append("Content-Type", "application/json");
  146. // var raw = JSON.stringify({
  147. // "employee_id": "",
  148. // "year": "",
  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("http://103.109.52.3/webapi/api/EmployeeJournal", 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(); ?>