Advertisement
Guest User

Untitled

a guest
May 22nd, 2019
123
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 7.24 KB | None | 0 0
  1. @font-face {
  2.     font-family: 'HankenSans';
  3.     src: url('fonts/HankenSans-Regular.woff2') format('woff2'), url('fonts/HankenSans-Regular.woff') format('woff');
  4. }
  5.  
  6.  
  7. @font-face {
  8.     font-family: 'HankenSans-black';
  9.     src: url('fonts/HankenSans-Black.eot') format('embedded-opentype'), url('fonts/HankenSans-Black.woff2') format('woff2'), url('fonts/HankenSans-Black.woff') format('woff');
  10. }
  11.  
  12. @font-face {
  13.     font-family: 'HankenSans-Medium';
  14.     src: url('fonts/HankenSans-Medium.eot') format('embedded-opentype'), url('fonts/HankenSans-Medium.woff2') format('woff2'), url('fonts/HankenSans-Medium.woff') format('woff');
  15. }
  16.  
  17. @font-face {
  18.     font-family: 'Okomito-Black';
  19.     src: url('fonts/Okomito-Black.eot') format('embedded-opentype'), url('fonts/Okomito-Black.woff2') format('woff2'),url('fonts/Okomito-Black.woff') format('woff');
  20. }
  21.  
  22. @font-face {
  23.     font-family: 'HankenSans-Bold';
  24.     src: url('fonts/HankenSans-Bold.eot') format('embedded-opentype'), url('fonts/HankenSans-Bold.woff2') format('woff2'),url('fonts/HankenSans-Bold.woff') format('woff');
  25. }
  26.  
  27.  
  28. /*Boot strap media queries*/
  29. @media (min-width: 576px) {
  30. }
  31.  
  32. /* Medium devices (tablets, 768px and up)*/
  33. @media (min-width: 768px) {
  34. }
  35.  
  36. /* Large devices (desktops, 992px and up)*/
  37. @media (min-width: 992px) {
  38. }
  39.  
  40. /* Extra large devices (large desktops, 1200px and up)*/
  41. @media (min-width: 1200px) {
  42. }
  43.  
  44. /*vars don't work in IE 11*/
  45. :root {
  46.     --black: #232930;
  47.     --hoverover-green: #0bb375;
  48.     --accent-green: #009a62;
  49.     --black-72: rgba(35,41,48, 0.72);
  50. }
  51.  
  52. * {
  53.     box-sizing: border-box;
  54.     font-family: HankenSans;
  55.     font-style: normal;
  56.     font-stretch: normal;
  57.     line-height: normal;
  58.     letter-spacing: normal;
  59. }
  60.  
  61. body {
  62.     background-color: #f5f6f5;
  63.     font-family: HankenSans;
  64. }
  65.  
  66. .navbar-brand {
  67.     font-size: 36px;
  68.     font-family: HankenSans-Medium;
  69.     color: #232930;
  70. }
  71.  
  72. .navbar-light .navbar-nav .active > .nav-link {
  73.     color: #039a62 !important;
  74. }
  75.  
  76. .navbar {
  77.     margin: 12px 0 24px 0;
  78. }
  79.  
  80. .navbar-nav {
  81.     font-size: 24px;
  82. }
  83.  
  84. li.nav-item > a.nav-link {
  85.     font-family: HankenSans-Medium;
  86.     font-size: 24px;
  87.     color: #232930 !important;
  88. }
  89.  
  90.     li.nav-item > a.nav-link:hover {
  91.         color: #009a62 !important;
  92.     }
  93.  
  94. .navbar {
  95.     padding: 0px;
  96. }
  97.  
  98. nav.navbar ul.navbar-nav > li.active {
  99.     color: #009a62;
  100. }
  101.  
  102. .nav-tabs {
  103.     border-bottom: solid 0.5px rgba(0, 148, 98, 0.22)
  104. }
  105.  
  106.     .nav-tabs .nav-link {
  107.         font-size: 20px;
  108.         color: rgba(35,41,48, 0.72);
  109.     }
  110.  
  111.         .nav-tabs .nav-link.active, .nav-tabs .nav-link:hover {
  112.             color: #009a62;
  113.             border-color: white white #009a62;
  114.             border-bottom-width: 2px;
  115.         }
  116.         .nav-tabs .nav-link.active {
  117.             font-weight: 500;
  118.         }
  119.  
  120. .section {
  121.     background-color: white;
  122.     margin-bottom: 24px;
  123.     padding-top: 20px;
  124.     padding-left: 12px;
  125.     padding-right: 12px;
  126.     padding-bottom: 12px;
  127. }
  128.  
  129. .gain-green {
  130.     color: #039a62;
  131. }
  132.  
  133. .accent-green {
  134.     color: #009a62;
  135.     font-size: 16px;
  136.     font-weight: 500
  137. }
  138.  
  139.  
  140. .loss-red {
  141.     color: #fe4645;
  142. }
  143.  
  144.  
  145. overflow {
  146.     flex-wrap: nowrap;
  147.     overflow: scroll;
  148. }
  149.  
  150. .polka-dots {
  151.     background-image: url('/Content/images/dots.svg');
  152.     background-repeat: no-repeat;
  153.     height: 123px;
  154.     font-family: Okomito-Black;
  155.     font-size: 30px;
  156. }
  157.  
  158.     .polka-dots > div {
  159.         width: 297px;
  160.         line-height: .93;
  161.     }
  162.  
  163. /*Sticky*/
  164. .sticky-bottom {
  165.     position: -webkit-sticky;
  166.     position: sticky;
  167.     bottom: 0rem;
  168.     z-index: 1;
  169. }
  170.  
  171. .sticky-top {
  172.     position: -webkit-sticky;
  173.     position: sticky;
  174.     top: -1rem;
  175. }
  176.  
  177. /*JQuery css, monor fixes*/
  178. .ui-widget-overlay {
  179.     background: #000000;
  180.     opacity: .75;
  181. }
  182.  
  183. .table-hover {
  184.     cursor: pointer;
  185. }
  186.  
  187. .table th {
  188.     border-top: 0px solid #e0e0e0;
  189.     font-size: 14px;
  190.     color: rgba(35,41,48, 0.72);
  191.     font-weight: normal;
  192.     padding-bottom: 10px !important;
  193.     position: relative;
  194. }
  195.  
  196. .table th:focus {
  197.     outline:none !important;
  198. }
  199.  
  200.  
  201. /*make datatables sort icons match padding-bottom*/
  202. table.dataTable thead .sorting:before, table.dataTable thead .sorting:after,
  203. table.dataTable thead .sorting_asc:before,
  204. table.dataTable thead .sorting_asc:after,
  205. table.dataTable thead .sorting_desc:before,
  206. table.dataTable thead .sorting_desc:after,
  207. table.dataTable thead .sorting_asc_disabled:before,
  208. table.dataTable thead .sorting_asc_disabled:after,
  209. table.dataTable thead .sorting_desc_disabled:before,
  210. table.dataTable thead .sorting_desc_disabled:after {
  211.     bottom: 8px !important;
  212.     position: absolute !important;
  213. }
  214.  
  215. .btn.btn-primary {
  216.     background-color: #009a62;
  217.     font-size: 16px;
  218.     font-weight: 600;
  219.     color: white;
  220. }
  221.  
  222.  
  223. .btn-primary-solid {
  224.     width: 500px;
  225.     color: #009a62;
  226.     font-size: 16px;
  227.     font-weight: 600;
  228.     font-family: HankenSans-Medium;
  229. }
  230.  
  231.  
  232. .btn-primary-outline {
  233.     font-size: 16px;
  234.     font-family: HankenSans-Medium;
  235.     border-color: #009a62;
  236.     background-color: transparent;
  237.     border-width: 1px;
  238.     border-radius: 4px;
  239.     color: #009a62;
  240. }
  241.  
  242.     .btn-primary-outline:hover {
  243.         background-color: #E9f6f2;
  244.         color: #009a62;
  245.     }
  246.  
  247. .btn-faux-delete {
  248.     max-width: 75px;
  249.     color: red;
  250.     background-color: white;
  251.     font-size: 16px;
  252. }
  253.  
  254.  
  255.  
  256. .btn-faux:hover {
  257.     cursor: pointer;
  258.     color: #009a62;
  259.     font-weight: 600;
  260. }
  261.  
  262. .no-wrap {
  263.     white-space: nowrap;
  264. }
  265.  
  266. .nav-arrow:hover {
  267.     cursor: pointer;
  268. }
  269.  
  270. nav .nav-item:hover {
  271.     cursor: pointer;
  272. }
  273.  
  274.  
  275.  
  276. [type='search'].form-control.form-control-sm {
  277.     background-color: transparent;
  278. }
  279.  
  280.  
  281. /*Hide modal dialog*/
  282.  
  283. .no-show > .ui-dialog-titlebar {
  284.     display: none;
  285. }
  286.  
  287. .input-group-prepend > .input-group-text {
  288.     min-width: 43px;
  289. }
  290.  
  291. .spacer5 {
  292.     height: 10px;
  293. }
  294. /*jquery Styling*/
  295.  
  296. span.ui-slider-handle.ui-corner-all.ui-state-default {
  297.     background-color: #67ddb5;
  298.     border-radius: 50%;
  299. }
  300.  
  301. .asofdate {
  302.     font-size: 12px;
  303.     color: rgba(35, 41, 48, 0.72);
  304.     height: 14px;
  305. }
  306.  
  307. .c_tooltip {
  308.     position: relative;
  309.     display: inline-block;
  310. }
  311.  
  312.     .c_tooltip:hover {
  313.         cursor: pointer;
  314.     }
  315.  
  316. .c_tooltiptext {
  317.     visibility: hidden;
  318.     padding: 5px;
  319.     position: relative;
  320. }
  321.  
  322. .c_tooltip:hover .c_tooltiptext {
  323.     visibility: visible;
  324.     cursor: pointer;
  325.     z-index: 1;
  326.     background-color: #73777B;
  327.     position: relative;
  328.     background-color: rgb(220,220,220);
  329.     border-radius: 5px;
  330.     font-size: 12px;
  331. }
  332.  
  333. .caption-3 {
  334.     font-size: 12px;
  335.     color: rgba(35,41,48, 0.72);
  336. }
  337.  
  338. .caption-2 {
  339.     font-size: 14px;
  340.     color: rgba(35,41,48, 0.72);
  341. }
  342.  
  343. .caption-1 {
  344.     font-size: 16px;
  345.     color: rgba(35,41,48, 0.72);
  346. }
  347.  
  348. h2 {
  349.     font-family: HankenSans-Medium;
  350.     font-size: 36px;
  351.     font-weight: 500;
  352.     color: #232930;
  353. }
  354.  
  355. h3 {
  356.     font-family: HankenSans-Medium;
  357.     font-size: 30px;
  358.     font-weight: 500;
  359.     color: #232930;
  360. }
  361.  
  362. h4 {
  363.     font-family: HankenSans-Medium;
  364.     font-size: 24px;
  365.     font-weight: 500;
  366.     color: #232930;
  367. }
  368.  
  369. h6 {
  370.     font-family: HankenSans-Medium;
  371.     font-size: 16px;
  372.     font-weight: 500;
  373.     color: #232930;
  374. }
  375.  
  376. p1 {
  377.     font-family: HankenSans;
  378.     font-size: 16px;
  379.     color: #232930;
  380. }
  381.  
  382. .btn-text {
  383.     color: #009a62;
  384.     background: transparent;
  385.     font-family: HankenSans-Medium;
  386. }
  387.  
  388.     .btn-text:hover {
  389.         color: #0bb375;
  390.     }
  391.  
  392.  
  393. ul.pagination > li.page-item.active > a {
  394.     background-color: #009a62;
  395. }
  396.  
  397. /*table.dataTable thead .sorting_asc::after,
  398. table.dataTable thead .sorting_desc::after,
  399. table.dataTable thead .sorting::after {
  400.    position:absolute;
  401.    bottom: 8px !important;
  402. }*/
  403. .replacement-opt {
  404. line-height: 40px;
  405.    
  406. }
  407.  
  408. .btn:hover {
  409.     background: #f5f5f5 !important;
  410. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement