Advertisement
ryfan

custom.css

Aug 31st, 2016
128
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.63 KB | None | 0 0
  1. body {
  2. background-color:white;
  3. }
  4.  
  5. .chip {
  6. background-color:white !important;
  7. color:#1e88e5 !important;
  8. }
  9.  
  10. .input-field label {
  11. color: #1e88e5 !important;
  12. }
  13.  
  14. .input-field input[type=text]:focus + label {
  15. color: #1e88e5 !important;
  16. }
  17.  
  18. .input-field input[type=text]:focus {
  19. border-bottom: 1px solid #1e88e5 !important;
  20. box-shadow: 0 1px 0 0 #1e88e5 !important;
  21. }
  22.  
  23. .input-field input[type=text].valid {
  24. border-bottom: 1px solid #1e88e5 !important;
  25. box-shadow: 0 1px 0 0 #1e88e5 !important;
  26. }
  27.  
  28. .input-field input[type=text].invalid {
  29. border-bottom: 1px solid #1e88e5 !important;
  30. box-shadow: 0 1px 0 0 #1e88e5 !important;
  31. }
  32.  
  33. .input-field .prefix.active {
  34. color: #1e88e5 !important;
  35. }
  36.  
  37. .textarea {
  38. color: #1e88e5 !important;
  39. }
  40.  
  41. .materialize-textarea:focus:not([readonly]) {
  42. border-bottom: 1px solid #1e88e5 !important;
  43. box-shadow: 0 1px 0 0 #1e88e5 !important;
  44. }
  45.  
  46. .breadcrumb {
  47. color: #1e88e5 !important;
  48. }
  49.  
  50. .breadcrumb:before {
  51. content: '\E5CC';
  52. color: #1e88e5;
  53. vertical-align: top;
  54. display: inline-block;
  55. font-family: 'Material Icons';
  56. font-weight: normal;
  57. font-style: normal;
  58. font-size: 18px;
  59. margin: 0 5px 0 8px;
  60. -webkit-font-smoothing: antialiased;
  61. }
  62.  
  63. .google-maps {
  64. position: relative;
  65. padding-bottom: 20%; // This is the aspect ratio
  66. height: 0;
  67. overflow: hidden;
  68. }
  69. .google-maps iframe {
  70. position: absolute;
  71. top: 0;
  72. left: 0;
  73. width: 100% !important;
  74. }
  75.  
  76. .footer-copyright {
  77. overflow: hidden;
  78. height: 50px;
  79. line-height: 50px;
  80. color: rgba(255, 255, 255, 0.8);
  81. background-color:#1e88e5 !important;
  82. }
  83.  
  84. .homeslider {
  85. margin-top:0px;
  86. }
  87.  
  88. .slider {
  89. position: relative;
  90. height: 320px !important;
  91. width: 100%;
  92. }
  93.  
  94. .slider .slides {
  95. background-color: #9e9e9e;
  96. margin: 0;
  97. height: 295px !important;
  98. }
  99.  
  100. .cd-top.cd-is-visible {
  101. /* the button becomes visible */
  102. visibility: visible;
  103. opacity: 1;
  104. }
  105. .cd-top.cd-fade-out {
  106. /* if the user keeps scrolling down, the button is out of focus and becomes less visible */
  107. opacity: .5;
  108. }
  109.  
  110. .h5custom {
  111. font-size:20px;
  112. }
  113.  
  114. .tabs .tab a {
  115. color: #e3e6f7 !important;
  116. display: block;
  117. width: 100%;
  118. height: 100%;
  119. text-overflow: ellipsis;
  120. overflow: hidden;
  121. transition: color .28s ease;
  122. }
  123.  
  124. .tabs .tab a:hover {
  125. color: #2ecc71 !important;
  126. }
  127.  
  128. .tabs .indicator {
  129. position: absolute;
  130. bottom: 0;
  131. height: 2px;
  132. background-color: #f1c40f !important;
  133. will-change: left, right;
  134. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement