Advertisement
Guest User

Untitled

a guest
Mar 21st, 2018
182
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 2.09 KB | None | 0 0
  1. /*HeadLess overwrites*/
  2. body{
  3.     background-color:#424242;
  4.     color:#9E9E9E!important;
  5. }
  6. header .brand,a{
  7.     color:#FF9100;
  8. }
  9. header .brand:hover,a:hover{
  10.     color:#FFD180;
  11. }
  12. /* táblázat páros sorai*/
  13. .cbi-section-table tbody tr:nth-child(odd) td, .cbi-section-table tbody tr:nth-child(odd) th{
  14.     background-color:#616161;
  15. }
  16. /* táblázat hover szín*/
  17. .cbi-section-table tbody tr:hover td, .cbi-section-table tbody tr:hover th{
  18.     background-color:#212121;
  19. }
  20.  
  21. .ifacebadge{
  22.     text-shadow:none;
  23.     color:rgb(255, 109, 0);
  24.     background-image:none;
  25.     background-color:rgba(255, 209, 128, 1);
  26.     border:2px solid rgba(255, 109, 0, 1);
  27. }
  28.    
  29. /* aktív fül*/
  30. .tabs .active > a, .tabs .active > a:hover, .cbi-tabmenu .active > a, .cbi-tabmenu .active > a:hover, .cbi-tab > a:link, .cbi-tab > a:hover{
  31.     background-color:#E0E0E0;
  32.     color:#9E9E9E;
  33.     border:1px solid #212121;
  34. }
  35. /* tab menü elválasztó*/
  36. .tabs, .cbi-tabmenu{
  37.     border-color:#212121;
  38. }
  39. /* gomb */
  40. .btn.primary, .cbi-page-actions .cbi-button-apply, .cbi-page-actions .cbi-button-save, .cbi-page-actions .cbi-button-reset, .btn, .cbi-button{
  41.     text-shadow:none;
  42.     padding-left:15px;
  43.     padding-right:15px;
  44.     color:rgb(255, 209, 128);
  45.     background-image:none;
  46.     background-color:rgba(255, 109, 0, .4);
  47.     border:2px solid rgba(255, 109, 0, 1);
  48. }
  49. /* gomb hover */
  50. .btn:hover, .cbi-button:hover{
  51.     color:rgb(178, 235, 242);
  52.     background-color:rgba(82, 168, 236, 0.3);
  53.     border:2px solid rgba(82, 168, 236, 0.8);
  54.     box-shadow:inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 8px rgba(82, 168, 236, 0.6);
  55. }
  56. /* input title */
  57. form .cbi-value label.cbi-value-title{
  58.     color:#E0E0E0;
  59. }
  60. /* Save/save Apply div*/
  61. .actions, .cbi-page-actions{
  62.     background:#212121;
  63. }
  64. /* input*/
  65. input, textarea, select, .uneditable-input{
  66.         background-color: transparent;
  67.     border: 0px;
  68.     outline: none;
  69.     -webkit-box-shadow: none;
  70.     -moz-box-shadow: none;
  71.     box-shadow: none;
  72. border-bottom:2px solid  #FF9100;
  73. }
  74. /* Terület név*/
  75. h1, h2, h3, h4, h5, h6,fieldset legend{
  76.     color:#FFD180;
  77. }
  78. .ifacebox,.ifacebox-body{
  79.     color:#212121;
  80.     background-color:#E0E0E0;
  81. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement