Advertisement
Prycklie

Moriae

Feb 23rd, 2018
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. /* UNIVERSAL TRANSITIONS */
  2. a .fa {
  3.     transition: none;
  4. }
  5. * {
  6.     transition: 1s;
  7. }
  8.  
  9. /*  SEMIOPAQUE BACKGROUND */
  10. .report a,
  11. .widget-content,
  12. .user-comments .user-comment,
  13. .content .textarea + .btn,
  14. .content .textarea,
  15. .gallery-header .btn-link,
  16. .panel,
  17. .villagers-list,
  18. .user-data,
  19. .alert.success,
  20. .alert.alert,
  21. .alert,
  22. .notifications .btn,
  23. .recent-posts .forum-posts li:nth-child(odd),
  24. .user-panel.clearfix {
  25.     background: rgba(78,20,45,0.7);
  26. }
  27.  
  28. /* OPAQUE BACKGROUND */
  29. .report a:hover,
  30. .content .textarea + .btn:hover,
  31. .gallery-header .btn-link:hover,
  32. .notifications .btn,
  33. .search-form .input,
  34. .widget-header h3,
  35. .dropdown-menu,
  36. #logo+:nth-child(2) {
  37.     background: rgb(78,20,45);
  38. }
  39. .content .active span,
  40. .table tr:hover td,
  41. .dropdown-menu .multi-column-dropdown li .fa p,
  42. .dropdown-menu .multi-column-dropdown li a {
  43.     background: rgb(78,20,45) !important;
  44. }
  45.  
  46. /* WHITE TEXT */
  47. div.bottom,
  48. .widget-content,
  49. .user-info h4,
  50. .content .pagination > .disabled > span,
  51. .content .pagination > .disabled > span:hover,
  52. .content .pagination > .disabled > span:focus,
  53. .content .pagination > .disabled > a,
  54. .content .pagination > .disabled > a:hover,
  55. .content .pagination > .disabled > a:focus,
  56. .content .textarea,
  57. .content,
  58. .search-form .input,
  59. .dropdown-menu .multi-column-dropdown li a,
  60. .content h1.clearfix, //added
  61. .user-comments .user-comment .footer,
  62. .widget .forum-posts p {
  63.     color: #fff;
  64. }
  65. .content .pagination a,
  66. .gallery-header .btn-link,
  67. .alert.success,
  68. .alert.alert,
  69. .alert,
  70. .dropdown-menu .multi-column-dropdown li a {
  71.     color: #fff !important;
  72. }
  73.  
  74. /* WEBPAGE BACKGROUND */
  75. .content:after {
  76.     background: url('https://i.imgur.com/YmkwS9E.jpg');
  77.     height: 100%;
  78.     background-size: cover;
  79.     position: fixed;
  80.     top: 0;
  81.     z-index: -1;
  82. }
  83.  
  84. /* UNIVERSAL LINK */
  85. a,
  86. .user-comments .user-comment .footer a,
  87. .widget .forum-posts p a {
  88.     color: rgb(254,210,183);
  89. }
  90. a:hover, a:focus, a:active,
  91. .user-comments .user-comment .footer a:hover,
  92. .widget .forum-posts p a:hover {
  93.     color: rgb(254,231,217);
  94.     text-decoration: none;
  95. }
  96.  
  97. /* LOGO IMAGE (BIG) */
  98. /* you can remove this section if you don't
  99. want to change the big logo on top */
  100. #logo a {
  101.     background: url('https://i.imgur.com/L6t6o7z.png') no-repeat;
  102. }
  103.  
  104. /* SEARCH FORM */
  105. .search-form .input {
  106.     border: none;
  107. }
  108.  
  109. /* DROPDOWN MENU */
  110. .dropdown-menu .multi-column-dropdown li a:hover {
  111.    transition: 0.5s all !important;
  112.    background: #fff !important;
  113.    color: rgb(78,20,45) !important;
  114. }
  115. .dropdown-menu .multi-column-dropdown li a {
  116.    transition: 0.5s all !important;
  117.    color: #fff !important;
  118. }
  119.  
  120. /* USER PANEL NAV */
  121. .user-panel.clearfix {
  122.     border-radius: 0 0 10px 10px;
  123. }
  124. header .user-panel,
  125. header .user-panel a {
  126. color: rgb(254,210,183) !important;
  127. }
  128. header .user-panel a:hover {
  129. color: rgb(254,231,217) !important;
  130. }
  131.  
  132. /* USER DATA HEADER TEXT, PROFILE DESCRIPTION HEADER TEXT
  133. (VIEWING ...'S PROFILE) */
  134. .content h1, .user-header {
  135.     display: none;
  136. }
  137.  
  138. /* WEBPAGE GENERAL CSS */
  139. .content {
  140.     background: none;
  141.     margin-bottom: 100px;
  142.     padding: 20px;
  143. }
  144.  
  145. /* NOTIFICATIONS TABLE */
  146. .table tr:nth-child(even) td,
  147. .table tr:nth-child(odd) td {
  148.     background: none;
  149.     border: none;
  150.     padding: 10px 13px;
  151. }
  152.  
  153. /* NOTIFICATIONS BUTTONS*/
  154. .notifications .btn {
  155.     text-transform: uppercase;
  156.     font-size: 11px;
  157. }
  158.  
  159. /* NOTIFICATIONS TEXT (NON LINKS) */
  160. tbody b {
  161.     font-weight: normal;
  162. }
  163.  
  164. /* TOP BANNER AD */
  165. .left-column .text-center.margin-10px {
  166.     display: none;
  167. }
  168.  
  169. /* HEADERS */
  170. .content h2 {
  171.     font-size: 16px;
  172.     text-transform: uppercase;
  173.     color:  #fff;
  174.     text-align: center;
  175. }
  176.  
  177. /* VILLAGE SHIELD ANIMATION (it bobs up and down slowly)
  178. you may remove this section if you like */
  179. .village-shield {
  180.     animation: bob 1.0s ease-out infinite;
  181.     position: relative;
  182.     padding: 20px;
  183. }
  184. @keyframes bob {
  185.     0% {
  186.         top: 5px;
  187.     }
  188.     50% {
  189.         top: 8px;
  190.     }
  191.     100% {
  192.         top: 5px;
  193.     }
  194. }
  195.  
  196. /* USER DATA */
  197. .user-data {
  198.     border-radius: 20px;
  199. }
  200.  
  201. /* QUICK LINKS */
  202. .user-links {
  203.     margin: 0;
  204.     padding: 0;
  205. }
  206.  
  207. /* USER INFO, TROPHIES */
  208. .col-xs-7, .col-xs-5 {
  209.     padding: 20px;
  210. }
  211.  
  212. /* TROPHIES TEXT */
  213. .trophies-header {
  214.     text-transform: uppercase;
  215.     font-size: 14px;
  216. }
  217.  
  218. /* TROPHIES IMAGES */
  219. .trophies .row img {
  220.     max-width: 50px;
  221.     padding-left: 0;
  222.     padding-right: 0;
  223. }
  224.  
  225. /* DOORSTEP (DMM EVENT EXCLUSIVE) */
  226. .col-md-4 {
  227.     width: 30%;
  228.     text-align: center;
  229. }
  230.  
  231. .col-md-8 {
  232.     width: 70%;
  233. }
  234.  
  235. .col-md-8 .btn {
  236.    margin: 5px;
  237.    transition: 1s all;
  238.    background-image: none;
  239.    text-shadow: none;
  240.    background: rgba(254,210,183,0.7);
  241.    font-weight: normal !important;
  242. }
  243.  
  244. .col-md-8 .btn:hover {
  245.    margin: 5px;
  246.    transition: 1s all;
  247.    background-image: none;
  248.    text-shadow: none;
  249.    background: rgba(254,210,183,1);
  250. }
  251.  
  252. /* PROFILE DESCRIPTION BODY TEXT */
  253. .user-data .user-desc {
  254.     padding: 30px;
  255.     margin: 0;
  256. }
  257.  
  258. /* VILLAGERS */
  259. .content .villagers-list {
  260.     padding: 20px;
  261.     border-radius: 20px;
  262.     max-height: 190px;
  263.     transition: 3s;
  264.     overflow: hidden;
  265. }
  266. .villagers-list:hover {
  267. /* adjust this accordingly
  268. more villagers, bigger pixel height
  269. this default height is meant for 6 rows of villagers
  270. with two rows of info (name + career) */
  271.     max-height: 1350px;
  272. }
  273.  
  274. /* GALLERY */
  275. .gallery {
  276.     max-height: 160px;
  277.     overflow: hidden;
  278. }
  279. .panel {
  280.     border-radius: 20px;
  281.     border: none;
  282. }
  283.  
  284. /* GALLERY ITEM TEXT */
  285. .name {
  286.     display: none;
  287. }
  288.  
  289. /* GALLERY BUTTON */
  290. .gallery-header .btn-link {
  291.     font-weight: normal;
  292. }
  293.  
  294. /* COMMENT FORM */
  295. .content .textarea {
  296.     border: none;
  297. }
  298.  
  299. /* POST BUTTON */
  300. .content .textarea + .btn {
  301.     text-transform: uppercase;
  302. }
  303.  
  304. /* USER COMMENTS */
  305. .user-comments {
  306.     height: 300px;
  307.     overflow: auto;
  308. }
  309.  
  310. /* USER COMMENTS BODY */
  311. .user-comments .user-comment {
  312.     width: 550px;
  313.     border: none;
  314. }
  315. .user-comments .user-comment .footer {
  316.     width: 515px;
  317.    color: #fff !important;
  318. }
  319. .user-comments .user-comment:after,
  320. .user-comments .user-comment:before {
  321.     border-right-color: rgba(78,20,45, 0.5);
  322. }
  323. .user-comments .user-comment .footer a {
  324.    color: rgb(254,210,183) !important;
  325. }
  326. .user-comments .user-comment .footer a:hover {
  327.    color: rgb(254,231,217) !important;
  328. }
  329.  
  330. /* USER COMMENTS AVATARS */
  331. .user-avatar-wrapper img {
  332.     margin: 10px;
  333.     border-radius: 47px;
  334.     width: 60px;
  335. }
  336.  
  337. /* PAGINATION */
  338. .content .pagination a {
  339.     background: rgba(78,20,45,0.5) !important;
  340.     border: 0 !important;
  341. }
  342. .content .pagination a:hover {
  343.     background: rgba(78,20,45,0.7) !important;
  344. }
  345. .content .active span {
  346.     z-index: 3;
  347.     border: 0 !important;
  348. }
  349. .content .pagination > .disabled > span,
  350. .content .pagination > .disabled > span:hover,
  351. .content .pagination > .disabled > span:focus,
  352. .content .pagination > .disabled > a,
  353. .content .pagination > .disabled > a:hover,
  354. .content .pagination > .disabled > a:focus {
  355.     background-color: rgba(78,20,45,0.2) !important;
  356.     border: 0 !important;
  357. }
  358.  
  359. /* "HI, USERNAME" */
  360. .user-info h4 {
  361.     text-transform: uppercase;
  362. /* you may choose a different font family for this */
  363.     font: 13px 'Helvetica';
  364.     padding-top: 5px;
  365.     padding-bottom: 5px;
  366. }
  367.  
  368. /* USER PANEL BODY TEXT */
  369. .right-column .widget .user-info p {
  370.     text-transform: uppercase;
  371. /* you may choose a different font family for this */
  372.     font: 11px 'Helvetica';
  373. }
  374.  
  375. /* WIDGET BODY */
  376. .widget-content {
  377.     border-radius: 0 0 20px 20px;
  378. }
  379.  
  380. /* WIDGET HEADER (blue border) */
  381. .content .widget-header {
  382.     border-bottom: none;
  383. }
  384.  
  385. /* WIDGET HEADER */
  386. .widget-header h3 {
  387.     border-radius: 20px 20px 0 0;
  388.     margin: 0;
  389.     padding: 10px 0 5px;
  390.     text-align: center;
  391.     text-shadow: none;
  392.     font-weight: normal;
  393.     color: rgb(254,210,183);
  394.     padding: 10px 0px;
  395.     text-transform: uppercase;
  396. /* you may choose a different font family for this */
  397.     font: 12px 'Helvetica';
  398.     border-bottom: 1px dotted #fff;
  399. }
  400.  
  401. /* VIEW MORE BUTTONS */
  402. .right-column .btn-link {
  403.     color: rgb(254,210,183) !important;
  404. }
  405. .right-column .btn-link:hover {
  406.     color: rgb(254,231,217) !important;
  407. }
  408.  
  409. /* RECENT ACTIVITY */
  410. .recent-posts .widget-content {
  411.     padding-bottom: 5px;
  412. }
  413. .recent-posts .forum-posts li:nth-child(even) {
  414.     background: none;
  415. }
  416. .widget .forum-posts p {
  417. color: #fff !important;
  418. }
  419. .widget .forum-posts p a {
  420. color: rgb(254,210,183) !important;
  421. }
  422. .widget .forum-posts p a:hover {
  423. color: rgb(254,231,217) !important;
  424. }
  425. .widget .forum-posts li {
  426.    border-bottom: 1px solid #fff;
  427. }
  428.  
  429. /* USER PANEL ICON */
  430. .right-column .text-center img {
  431.     border-radius: 20px;
  432. }
  433.  
  434. /* LOGO IMAGE (SMALL, BOTTOM) */
  435. /* you may comment/delete this section if you like */
  436. .logo-small {
  437.     width: 110px;
  438.     overflow: hidden;
  439.     padding-left: 110px;
  440.     background: url('https://i.imgur.com/4wIFmlu.png') center no-repeat !important;
  441. }
  442.  
  443.  
  444. /* BOTTOM LINKS FOOTER */
  445. footer .bottom {
  446.     background-color: rgba(78,20,45,0.8);
  447.     border-radius: 20px;
  448.     padding: 5px;
  449. }
  450.  
  451. p.copyright.align-center {
  452.     background: url('https://i.imgur.com/BH7KpoR.png') no-repeat;
  453. }
  454.  
  455. /* FLOATING REPORT USER PROFILE */
  456. .report a {
  457.     position: fixed;
  458.     bottom: 30px;
  459.     left: 30px;
  460.     color: rgb(169, 68, 66);
  461.     border-radius: 5px;
  462.     padding: 5px;
  463. }
  464. .report a:hover {
  465.     color: #ed1c24;
  466. }
  467.  
  468. /* TOOLTIPSTER (dotted border under timestamp) */
  469. span.tooltipster {
  470.    border-bottom: 1px dashed rgb(254,210,183);
  471. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement