Advertisement
Guest User

Untitled

a guest
Apr 21st, 2018
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.14 KB | None | 0 0
  1. .truncated {
  2. text-overflow: ellipsis;
  3. overflow: hidden
  4. }
  5.  
  6. .uppercase {
  7. text-transform: uppercase;
  8. }
  9.  
  10. .table-layout-fixed {
  11. table-layout: fixed;
  12. }
  13.  
  14. .module-icon {
  15. display: inline;
  16. height: 24px;
  17. width: 24px;
  18. }
  19.  
  20. .fixed-addon-width {
  21. min-width: 70px;
  22. text-align: left;
  23. }
  24.  
  25. .fixed-addon-width-2 {
  26. min-width: 90px;
  27. text-align: left;
  28. }
  29.  
  30. .fixed-addon-width-3 {
  31. min-width: 110px;
  32. text-align: left;
  33. }
  34.  
  35. .fixed-width-200 {
  36. min-width: 200px;
  37. }
  38.  
  39. .caret-reversed {
  40. border-top-width: 0;
  41. border-bottom: 4px solid #000;
  42. }
  43.  
  44. .image-small-18 {
  45. height: 18px;
  46. }
  47.  
  48. .center-text {
  49. text-align: center;
  50. }
  51.  
  52. .scrollable-pre {
  53. overflow: auto;
  54. word-wrap: normal;
  55. white-space: pre;
  56. }
  57.  
  58. .log-pre {
  59. max-height: 300px;
  60. }
  61.  
  62. .btn-fixed-length {
  63. width: 70px;
  64. }
  65.  
  66. .title-message {
  67. margin-left: 10px;
  68. padding-left: 5px;
  69. padding-right: 5px;
  70. height: 9px;
  71. border-radius: 3px;
  72. }
  73.  
  74. .padding-left {
  75. margin-left: 10px;
  76. }
  77.  
  78. .select-inline {
  79. font-weight: normal;
  80. }
  81.  
  82. body {
  83. background-color: #f8f8f8;
  84. }
  85.  
  86. .logout {
  87. cursor: pointer;
  88. }
  89.  
  90. .module-nav li a {
  91. margin-left: 30px;
  92. }
  93.  
  94. .module-nav li:hover {
  95. background-color: #eee;
  96. }
  97.  
  98. .sidebar .sidebar-nav.navbar-collapse {
  99. padding-right: 0;
  100. padding-left: 0;
  101. }
  102.  
  103. .sidebar ul li {
  104. cursor: pointer;
  105. border-bottom: 1px solid #e7e7e7;
  106. }
  107.  
  108. .sidebar .active {
  109. background-color: #eee;
  110. }
  111.  
  112. @media(min-width:768px) {
  113. .sidebar {
  114. z-index: 1;
  115. position: absolute;
  116. width: 250px;
  117. margin-top: 51px;
  118. }
  119.  
  120. .module-content {
  121. position: inherit;
  122. margin: 0 0 0 250px;
  123. padding: 15px 30px;
  124. border-left: 1px solid #e7e7e7;
  125. }
  126.  
  127. .navbar-top-links {
  128. margin-left: 10px;
  129. }
  130. }
  131.  
  132. .navbar-top-links {
  133. margin-right: 5px;
  134. margin-left: 10px;
  135. }
  136.  
  137. .navbar-top-links li {
  138. display: inline-block;
  139. }
  140.  
  141. .navbar {
  142. margin-bottom: 0;
  143. }
  144.  
  145. .navbar-top-links .dropdown-menu li {
  146. display: block;
  147. }
  148.  
  149. .module-content {
  150. padding: 15px 15px;
  151. background-color: #fff;
  152. }
  153.  
  154. .pointer {
  155. cursor: pointer;
  156. }
  157.  
  158. .dropdown-menu {
  159. cursor: pointer;
  160. }
  161.  
  162. .dropdown-menu-top {
  163. max-height: 300px !important;
  164. overflow-y: auto !important;
  165. }
  166.  
  167. @media(max-width:768px) {
  168. .dropdown-menu-top {
  169. margin: auto !important;
  170. position: absolute !important;
  171. background-color: #fff !important;
  172. word-wrap: break-word !important;
  173. border: 1px solid #ccc !important;
  174. width: 300px !important;
  175. max-width: 300px !important;
  176. }
  177. .dropdown-menu-top li a {
  178. white-space: normal !important;
  179. }
  180.  
  181. .dropdown-menu-logout {
  182. max-width: 50px !important;
  183. }
  184. }
  185.  
  186. .login-logo {
  187. margin: 0 auto;
  188. padding-bottom: 10px;
  189. max-width: 150px;
  190. }
  191.  
  192. .brand-logo {
  193. content: url('/img/logo.png');
  194. max-height: 30px;
  195. padding-bottom: 5px;
  196. }
  197.  
  198. .brand-text::after {
  199. content: "WiFi Pineapple";
  200. padding-top: 3px;
  201. padding-left: 5px;
  202. float: right;
  203. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement