page-journal.php 23 KB

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