Advertisement
Guest User

Untitled

a guest
Nov 20th, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 7.36 KB | None | 0 0
  1. @import url("https://fonts.googleapis.com/css?family=Roboto:300,400,600,700");
  2. @import url('https://fonts.googleapis.com/css?family=Open+Sans:400,400i');
  3. @import url('https://fonts.googleapis.com/css?family=Oswald:400,700');
  4.  
  5. html {
  6. font-family: sans-serif;
  7. -ms-text-size-adjust: 100%;
  8. -webkit-text-size-adjust: 100%
  9. }
  10.  
  11. html,
  12. body {
  13. height: 100%;
  14. }
  15.  
  16. body {
  17. font-size: 14px;
  18. color: #3E3F3A;
  19. background-color: #E3E4E6 !important;
  20. display: flex;
  21. flex-direction: column;
  22. height: 100%;
  23. overflow-y: scroll;
  24. }
  25.  
  26. /* Application Globals */
  27.  
  28. .uppercase {
  29. text-transform: uppercase;
  30. }
  31.  
  32. .heading {
  33. padding-top: 8px;
  34. padding-bottom: 8px;
  35. font-family: 'Roboto', sans-serif;
  36. font-size: 20px;
  37. font-weight: 400;
  38. text-align: left;
  39. text-transform: uppercase;
  40. color: #636363;
  41. margin: 0;
  42. }
  43.  
  44. .label:last-child {
  45. margin-bottom: 0;
  46. }
  47.  
  48. .label,
  49. .badge {
  50. display: inline;
  51. margin-bottom: 5px;
  52. padding: 2px 4px;
  53. vertical-align: baseline;
  54. white-space: nowrap;
  55. line-height: 14px;
  56. color: #ffffff !important;
  57. font-size: 14px;
  58. font-weight: bold;
  59. text-align: center;
  60. }
  61.  
  62. /* Application Base */
  63.  
  64. .page_module {
  65. width: 100%;
  66. min-height: 100%;
  67. padding: 20px;
  68. background-color: #fff;
  69. border: 1px solid #ccc;
  70. }
  71.  
  72. .page_module.margin {
  73. margin-top: 20px;
  74. margin-bottom: 20px;
  75. }
  76.  
  77. .page_module.no_style {
  78. padding: 0;
  79. border: none;
  80. background: none;
  81. }
  82.  
  83. #navbar,
  84. #bottom_bar {
  85. flex: none;
  86. }
  87.  
  88. .app#page_wrapper {
  89. flex: 1 0 auto;
  90. padding: 0;
  91. width: 100%;
  92. margin-top: 40px;
  93. margin-bottom: 40px;
  94. }
  95.  
  96. .app.no_page_top_margin {
  97. margin-top: 0 !important;
  98. }
  99.  
  100. .app.no_page_bottom_margin {
  101. margin-bottom: 0 !important;
  102. }
  103.  
  104. .app.avatar {
  105. width: 24px !important;
  106. height: 24px !important;
  107. border-radius: 3px;
  108. }
  109.  
  110. .app.avatar.small {
  111. width: 18px !important;
  112. height: 18px !important;
  113. }
  114.  
  115. .app.avatar.margin,
  116. .app.avatar.small.margin img {
  117. margin-right: 8px;
  118. }
  119.  
  120. .app.vertical {
  121. display: inline-flex !important;
  122. align-items: center !important;
  123. }
  124.  
  125. #navbar {
  126. background: #fbad45;
  127. z-index: 999;
  128. border-radius: 0;
  129. margin: 0;
  130. font-family: 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  131. }
  132.  
  133. #navbar .menu .item {
  134. font-size: 13px;
  135. font-weight: 700;
  136. text-transform: uppercase;
  137. }
  138.  
  139. #navbar .results {
  140. text-transform: none;
  141. }
  142.  
  143. #navbar .top_bar_profile {
  144. background-color: rgba(0, 0, 0, 0.1);
  145. }
  146.  
  147. #navbar .top_bar_profile a {
  148. display: block;
  149. }
  150.  
  151. #navbar .top_bar_profile > span,
  152. #navbar .top_bar_profile > a {
  153. text-transform: uppercase;
  154. }
  155.  
  156. #navbar .top_bar_header .header {
  157. font-size: 24px;
  158. color: #ffffff;
  159. }
  160.  
  161. #navbar .top_bar_header .top_bar_header_extra {
  162. font-weight: 300;
  163. text-transform: uppercase;
  164. }
  165.  
  166. #navbar .top_bar_header .top_bar_header_extra strong {
  167. font-weight: 700;
  168. }
  169.  
  170. #bottom_bar {
  171. background-color: #030303;
  172. }
  173.  
  174. #bottom_bar h4.header {
  175. text-transform: uppercase;
  176. }
  177.  
  178. #bottom_bar_right_content {
  179. margin-top: 0;
  180. }
  181.  
  182. #staff_bar {
  183. display: block;
  184. width: 100%;
  185. margin: 0;
  186. background-color: #212121;
  187. border-radius: 0;
  188. }
  189.  
  190. a:hover{
  191. text-decoration: none;
  192. }
  193.  
  194. .ui.search .results {
  195. border-radius: 0;
  196. }
  197.  
  198. .ui.search .results .result {
  199. width: 100%;
  200. display: block;
  201. }
  202.  
  203. .ui.table .neutral {
  204. background: #DFF2FF !important;
  205. color: #40A2FF !important;
  206. }
  207.  
  208. .table td.fit,
  209. .table th.fit {
  210. white-space: nowrap;
  211. width: 1%;
  212. }
  213.  
  214. .table td.fit-min,
  215. .table th.fit-min {
  216. min-width: 225px;
  217. }
  218.  
  219. #hero {
  220. display: flex;
  221. align-items: center;
  222. width: 100%;
  223. height: 700px;
  224. background: url('../img/background.png') center;
  225. background-size: cover;
  226. }
  227.  
  228. #hero h1 {
  229. margin: 0;
  230. color: white;
  231. font-size: 62px;
  232. font-weight: 700;
  233. }
  234.  
  235. #hero p {
  236. margin-bottom: 0;
  237. color: white;
  238. font-size: 20px;
  239. }
  240.  
  241. #hero .button-group {
  242. margin-top: 15px;
  243. }
  244.  
  245. #hero_alt {
  246. display: flex;
  247. align-items: center;
  248. width: 100%;
  249. padding: 60px;
  250. background: url('../img/background.png') center;
  251. background-size: cover;
  252. }
  253.  
  254. #hero_alt h1 {
  255. margin: 0;
  256. color: white;
  257. font-family: 'Roboto', sans-serif;
  258. font-size: 62px;
  259. font-weight: 700;
  260. text-transform: uppercase;
  261. text-align: center;
  262. }
  263.  
  264. #hero_alt .ui.button {
  265. display: block;
  266. max-width: 180px;
  267. margin: 0 auto;
  268. }
  269.  
  270. .rank-color-owner {
  271. background-color: #AA0000;
  272. border: 1px solid #52100B;
  273. color: #AA0000;
  274. }
  275.  
  276. .rank-color-developer {
  277. background-color: #00CCFF;
  278. border: 1px solid #2191AD;
  279. color: #00CCFF;
  280. }
  281.  
  282. .rank-color-manager {
  283. background-color: #82048C;
  284. border: 1px solid #63036B;
  285. color: #82048C;
  286. }
  287.  
  288. .rank-color-admin {
  289. background-color: #991F15;
  290. border: 1px solid #52100B;
  291. color: #991F15;
  292. }
  293.  
  294. .rank-color-senior-admin {
  295. background-color: #991F15;
  296. border: 1px solid #52100B;
  297. color: #991F15;
  298. }
  299.  
  300. .rank-color-senior-mod {
  301. background-color: #82048C;
  302. border: 1px solid #63036B;
  303. color: #82048C;
  304. }
  305.  
  306. .rank-color-moderator {
  307. background-color: #1373A3;
  308. border: 1px solid #0C4A69;
  309. color: #02AABA;
  310. }
  311.  
  312. .rank-color-trial-mod {
  313. background-color: #C4BC39;
  314. border: 1px solid #B0992A;
  315. color: #BDA700;
  316. }
  317.  
  318. .rank-color-builder,
  319. .rank-color-host {
  320. background-color: #0c8b08;
  321. border: 1px solid #064204;
  322. color: #0C8B08;
  323. }
  324.  
  325. .rank-color-partner {
  326. background-color: #D4AB63;
  327. border: 1px solid #7a623c;
  328. color: #D4AB63;
  329. }
  330.  
  331. .rank-color-vip,
  332. .rank-color-youtuber {
  333. background-color: #C506D4;
  334. color: #C506D4;
  335. }
  336.  
  337. .rank-color-bouncer,
  338. .rank-color-bartender {
  339. background-color: #004ed1;
  340. border: 1px solid #004dcc;
  341. color: #4482ea;
  342. }
  343.  
  344. .rank-color-premium,
  345. .rank-color-partyman {
  346. background-color: #D48A00;
  347. border: 1px solid #A16900;
  348. color: #EBB745;
  349. }
  350.  
  351. .rank-color-clubber {
  352. background-color: #EB2BD4;
  353. border: 1px solid #AE0BDE;
  354. color: #CF28E8;
  355. }
  356.  
  357. .rank-color-normal,
  358. .rank-color-other {
  359. background-color: #242424;
  360. color: #242424;
  361. }
  362.  
  363. .caret {
  364. display: inline-block;
  365. width: 0;
  366. height: 0;
  367. margin-left: 4px;
  368. vertical-align: middle;
  369. border-top: 4px dashed;
  370. border-top: 4px solid;
  371. border-right: 4px solid transparent;
  372. border-left: 4px solid transparent;
  373. }
  374.  
  375. /* BxSlider */
  376.  
  377. .bx-wrapper {
  378. background: transparent !important;
  379. border: none !important;
  380. box-shadow: none !important;
  381. margin-bottom: 30px !important;
  382. }
  383.  
  384. .bx-pager-item {
  385. opacity: 0.5 !important;
  386. }
  387.  
  388. .bx-pager-link {
  389. background: #DEDEDE !important;
  390. }
  391.  
  392. .bx-pager-link.active {
  393. background: #FFFFFF !important;
  394. }
  395.  
  396. /* Server */
  397.  
  398. #server-info {
  399. width: 100%;
  400. height: 250px;
  401. background-color: #FAFAFA;
  402. }
  403.  
  404. #server-info h1 {
  405. margin: 0;
  406. color: #333;
  407. font-size: 40px;
  408. font-weight: 700;
  409. }
  410.  
  411. .server_module {
  412. width: 100%;
  413. padding: 20px;
  414. background-color: #fff;
  415. border: 1px solid #ddd;
  416. }
  417.  
  418. .server_module > .progress > .bar {
  419. border-radius: 0 !important;
  420. }
  421.  
  422. .server_module > .progress {
  423. border-radius: 0 !important;
  424. border: 1px solid #999999 !important;
  425. }
  426.  
  427. #not_found_page {
  428. width: 100%;
  429. height: auto;
  430. background-color: #ffffff;
  431. border: 1px solid #cccccc;
  432. padding: 40px;
  433. text-align: center;
  434. }
  435.  
  436. #not_found_page h2 {
  437. margin-bottom: 0;
  438. }
  439.  
  440. #not_found_page img {
  441. display: block;
  442. width: 144px;
  443. height: 144px;
  444. margin: 0 auto;
  445. }
  446.  
  447. .ui.stacked.segment:after,
  448. .ui.stacked.segments:after {
  449. visibility: hidden !important;
  450. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement