Advertisement
Guest User

Untitled

a guest
Sep 21st, 2019
122
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 9.32 KB | None | 0 0
  1. @font-face {
  2. font-family: "beaufort-bold";
  3. src: url("assets/fonts/Beaufort-Bold.ttf");
  4. }
  5.  
  6. @font-face {
  7. font-family: "beaufort-regular";
  8. src: url("assets/fonts/Beaufort-Regular.ttf");
  9. }
  10.  
  11. body {
  12. background: linear-gradient(to bottom, rgba(125, 185, 232, 0) -1%, rgba(50, 96, 122, 0) 65%, rgba(10, 49, 64, 0.8) 100%), url(https://images7.alphacoders.com/495/thumb-1920-495671.jpg);
  13. background-position: center;
  14. background-size: cover;
  15. background-attachment: fixed;
  16. /* font-family: 'Patua One', cursive; */
  17. font-family: "beaufort-bold";
  18. text-transform: uppercase;
  19. margin: 0 auto;
  20. /* text-align: center; */
  21. position: fixed;
  22. width: 100%;
  23. user-select: none;
  24. }
  25.  
  26. .option-name {
  27. font-size: 25px;
  28. color: #f0e6d2;
  29. margin-bottom: 10px;
  30. }
  31.  
  32. .suboption-name {
  33. font-size: 16px;
  34. color: #cdbe91;
  35. margin-bottom: 5px;
  36. }
  37.  
  38. .title {
  39. text-align: center;
  40.  
  41. margin-bottom: 25px;
  42. }
  43.  
  44.  
  45.  
  46.  
  47. h1 {
  48. color: #fff;
  49. font-weight: 100;
  50. font-size: 59px;
  51. margin-top: 0px;
  52. margin-bottom: 5px;
  53. }
  54.  
  55. hr {
  56. width: 350px;
  57. margin-top: 40px;
  58. margin-bottom: 40px;
  59. border: 1px solid #cdbe91;
  60. }
  61.  
  62. .tier {
  63. width: 150px !important;
  64. }
  65.  
  66. .division {
  67. width: 125px !important;
  68. margin-top: 3px;
  69. }
  70.  
  71. .left {
  72. float: left;
  73. margin: 2px;
  74. }
  75.  
  76. .center {
  77. text-align: center;
  78. }
  79.  
  80. .center-area {
  81. display: block;
  82. margin-left: auto;
  83. margin-right: auto;
  84. margin-top: 3px;
  85. }
  86.  
  87. .end {
  88. margin-bottom: 50px;
  89. }
  90.  
  91. .controls {
  92. color: #fff;
  93. float: right;
  94. margin-right: 5px;
  95. margin-top: -70px;
  96. -webkit-app-region: no-drag;
  97. }
  98.  
  99. .version {
  100. position: fixed;
  101. bottom: 15px;
  102. left: 15px;
  103. cursor: default;
  104. }
  105.  
  106. .version-tag {
  107. margin: 0px;
  108. color: #a09b8c;
  109. opacity: 0.5;
  110. transition: opacity .1s ease-in-out;
  111. }
  112.  
  113. .version-tag:hover {
  114. opacity: 1;
  115. }
  116.  
  117. .icon {
  118. font-size: 20px !important;
  119. }
  120.  
  121. /* Style the buttons that are used to open the tab content */
  122.  
  123. .controls button {
  124. background-color: transparent;
  125. float: left;
  126. border: none;
  127. outline: none;
  128. cursor: pointer;
  129. padding: 4px 4px;
  130. transition: 0.3s;
  131. -webkit-box-shadow: none;
  132. -moz-box-shadow: none;
  133. box-shadow: none;
  134. font-size: 8px;
  135. margin-left: 10px;
  136. }
  137.  
  138. /* Change background color of buttons on hover */
  139.  
  140. .controls button:hover {
  141. color: #f0e6d2;
  142. border: none;
  143. outline: none;
  144. cursor: pointer;
  145. -webkit-box-shadow: none;
  146. -moz-box-shadow: none;
  147. box-shadow: none;
  148. }
  149.  
  150. /* Create an active/current tablink class */
  151.  
  152. .controls button.active {
  153. color: #f0e6d2;
  154. }
  155.  
  156. .getstarted {
  157. margin-top: -10px;
  158. }
  159.  
  160. /*
  161. SCROLL BAR
  162. */
  163.  
  164. ::-webkit-scrollbar {
  165. width: 7px;
  166. border-radius: 5px;
  167. }
  168.  
  169. ::-webkit-scrollbar * {
  170. background: transparent;
  171. }
  172.  
  173. ::-webkit-scrollbar-track-piece:start {
  174. background: transparent;
  175. }
  176.  
  177. ::-webkit-scrollbar-track-piece:end {
  178. background: transparent;
  179. }
  180.  
  181. ::-webkit-scrollbar-thumb {
  182. background: #9b722c;
  183. border-radius: 10px;
  184. }
  185.  
  186. ::-webkit-scrollbar-thumb:hover {
  187. background: #d4b373;
  188. }
  189.  
  190. /*
  191. BUTTONS
  192. */
  193.  
  194. button {
  195. display: inline-block;
  196. position: relative;
  197. font-family: 'beaufort-bold', cursive;
  198. /* font-family: 'Beaufort', 'Times New Roman', serif; */
  199. text-transform: uppercase;
  200. color: #CDBE91;
  201. font-weight: 100;
  202. letter-spacing: 1px;
  203. white-space: nowrap;
  204. padding: 9px 21px;
  205. cursor: pointer;
  206. box-shadow: 0 0 1px 1px #010A13, inset 0 0 1px 1px #010A13;
  207. background: #1E2328;
  208. border: 2px solid transparent;
  209. border-image: linear-gradient(to top, #785B28 0%, #C89C3C 55%, #C8A355 71%, #C8AA6E 100%);
  210. border-image-slice: 1;
  211. transition: opacity 300ms linear;
  212. margin-top: 5px;
  213. transition: color 100ms linear;
  214. }
  215.  
  216. button:hover {
  217. color: #F0E6D2;
  218. border: 2px solid transparent;
  219. border-image: linear-gradient(to top, rgb(78.4%, 61.2%, 23.5%) 0%, rgb(86.3%, 75.7%, 53.3%) 50%, rgb(88.2%, 78.8%, 59.6%) 71%, rgb(94.1%, 90.2%, 84.7%) 100%);
  220. border-image-slice: 1;
  221. box-shadow: 0px 0px 13px 0px rgba(205, 190, 145, 0.39);
  222. transition: color 100ms linear;
  223. /* filter: blur(4px); */
  224. }
  225.  
  226. button:active {
  227. color: #E4E1D8;
  228. border-image: linear-gradient(to top, #FFFFFF 0%, #FFFFFF 33%, #FFFFFF 66%, #FFFFFF 100%);
  229. border-image-slice: 1;
  230. color: #5C5B57;
  231. transition: color 100ms linear;
  232. animation: none;
  233. }
  234.  
  235. button:focus {
  236. outline: 0;
  237. }
  238.  
  239. button:after {
  240. transition: all 0.8s
  241. }
  242.  
  243. /*
  244. TEXT FIELDS
  245. */
  246.  
  247. textarea {
  248. overflow: hidden;
  249. white-space: nowrap;
  250. resize: none;
  251. font-family: 'Open Sans', sans-serif;
  252. padding: 10px 10px;
  253. color: rgb(62.7%, 60.8%, 54.9%);
  254. display: block;
  255. box-sizing: border-box;
  256. border: 1px solid #785A28;
  257. background-color: rgba(0, 0, 0, 0.7);
  258. appearance: none;
  259. outline: none;
  260. box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.25) inset, 0 0 0 1px rgba(0, 0, 0, 0.25);
  261. }
  262.  
  263. textarea:focus {
  264. background: linear-gradient(to bottom, rgba(7, 16, 25, 0.7), rgba(32, 39, 44, 0.7));
  265. border-image: linear-gradient(to bottom, #785a28, #c8aa6e) 1 stretch;
  266. }
  267.  
  268. textarea:disabled {
  269. color: rgba(230, 33, 66, 0.7) !important;
  270. border: 1px solid rgba(230, 33, 66, 0.7);
  271. }
  272.  
  273. /*
  274. DROPDOWNS
  275. */
  276.  
  277. .dropdown {
  278. display: inline-block;
  279. position: relative;
  280. cursor: pointer;
  281. width: 200px;
  282. font-family: 'beaufort-bold', sans-serif;
  283. color: rgb(62.7%, 60.8%, 54.9%);
  284. ;
  285. letter-spacing: 0.025rem;
  286. outline: none;
  287. padding: 10px 14px;
  288. background-color: rgba(30, 35, 40, 0.5);
  289. border: 1px solid transparent;
  290. border-image: linear-gradient(to top, #695625 0%, #A9852D 23%, #B88D35 93%, #C8AA6E 100%) 1;
  291. overflow: hidden;
  292. text-overflow: ellipsis;
  293. white-space: nowrap;
  294. -webkit-box-sizing: border-box;
  295. -moz-box-sizing: border-box;
  296. box-sizing: border-box;
  297. -webkit-appearance: none;
  298. -moz-appearance: none;
  299. }
  300.  
  301. .dropdown:active {
  302. background: rgba(30, 35, 40, 0.5);
  303. color: #463714;
  304. border: 1px solid #463714;
  305. }
  306.  
  307. .dropdown:focus {
  308. background: linear-gradient(to top, rgba(88, 83, 66, 0.5), rgba(30, 35, 40, 0.5));
  309. border: 1px solid transparent;
  310. border-image: linear-gradient(to top, #c89b3c, #f0e6d2) 1;
  311. }
  312.  
  313. .dropdown option {
  314. position: relative;
  315. color: #cdbe91;
  316. cursor: pointer;
  317. padding: 9px;
  318. border-top: 1px solid #1f2123;
  319. text-overflow: ellipsis;
  320. white-space: nowrap;
  321. background: #010a13;
  322. -o-border-image: linear-gradient(0deg, #695625, #463714) 1;
  323. border-image: -webkit-linear-gradient(bottom, #695625, #463714) 1;
  324. border-image: linear-gradient(0deg, #695625, #463714) 1;
  325. font-size: 13px;
  326. height: 20px;
  327. }
  328.  
  329. .dropdown option:hover {
  330. background-color: #fff;
  331. }
  332.  
  333. .dropdown option:disabled {
  334. color: #756c53;
  335. }
  336.  
  337. /*
  338. SECTIONS
  339. */
  340.  
  341. .sections {
  342. margin-bottom: 100px;
  343. }
  344.  
  345. /* Style the tab */
  346.  
  347. .tab-container {
  348. position: fixed;
  349. top: 0px;
  350. margin: 0px auto;
  351. width: 100%;
  352. border-top: 2px solid #735828;
  353. border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  354. height: 100px;
  355. background: linear-gradient(to bottom, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0) 80%);
  356. /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  357. -webkit-app-region: drag;
  358. }
  359.  
  360. .tab {
  361. margin: 0px auto;
  362. margin-top: 20px;
  363. margin-left: 15px;
  364. overflow: hidden;
  365. }
  366.  
  367. .selected {
  368. position: absolute;
  369. left: -10px;
  370. }
  371.  
  372. /* Style the buttons that are used to open the tab content */
  373.  
  374. .tab button {
  375. background-color: transparent;
  376. float: left;
  377. border: none;
  378. outline: none;
  379. cursor: pointer;
  380. padding: 14px 16px;
  381. transition: 0.3s;
  382. -webkit-box-shadow: none;
  383. -moz-box-shadow: none;
  384. box-shadow: none;
  385. font-size: 16px;
  386. margin-left: 28px;
  387. -webkit-app-region: no-drag;
  388. }
  389.  
  390. /* Change background color of buttons on hover */
  391.  
  392. .tab button:hover {
  393. color: #f0e6d2;
  394. }
  395.  
  396. /* Create an active/current tablink class */
  397.  
  398. .tab button.active {
  399. color: #f0e6d2;
  400. }
  401.  
  402. /* Style the tab content */
  403.  
  404. .tabcontent {
  405. display: none;
  406. border-top: none;
  407. margin-top: 75px;
  408. }
  409.  
  410. .box {
  411. float: right;
  412. width: 950px;
  413. height: 593px;
  414. overflow-y: scroll;
  415. margin-right: 10px;
  416. }
  417. .box1 {
  418. float: right;
  419. width: 950px;
  420. height: 593px;
  421. overflow-y: scroll;
  422. margin-right: 10px;
  423. }
  424.  
  425. .info {
  426. position: absolute;
  427. margin-left: 35px;
  428. margin-top: 25px;
  429. }
  430.  
  431. .float-left {
  432. float: left;
  433. margin-right: 5px;
  434. }
  435.  
  436. .option {
  437. margin-bottom: 25px;
  438. }
  439.  
  440. .summonericon {
  441. border-radius: 50%;
  442. width: 140px;
  443. height: 140px;
  444. display: block;
  445. margin-left: auto;
  446. margin-right: auto;
  447. }
  448.  
  449. .icon-box {
  450. position: absolute;
  451. top: 23px;
  452. width: 248px;
  453. height: 140px;
  454. }
  455.  
  456. .offset {
  457. margin-top: 25px !important;
  458. }
  459.  
  460. .info-bp {
  461. text-align: center;
  462. margin-top: -10px;
  463. font-size: 15px;
  464. color: #f0e6d2;
  465. margin-bottom: 10px;
  466. }
  467.  
  468. .info-status {
  469. display: block;
  470. margin-left: auto;
  471. margin-right: auto;
  472. }
  473.  
  474. .info-name {
  475. text-align: center;
  476. margin-top: -165px;
  477. font-size: 25px;
  478. color: #f0e6d2;
  479. margin-bottom: 0px;
  480. }
  481.  
  482. .level-badge {
  483. /* top: 155px; */
  484. /* left: 88px; */
  485. display: block;
  486. margin-left: auto;
  487. margin-right: auto
  488. }
  489.  
  490. .level-level {
  491. margin: 0px;
  492. margin-top: -27px;
  493. text-align: center;
  494. font-size: 15px;
  495. color: #f0e6d2;
  496. /* margin-top: -204px; */
  497. }
  498.  
  499. .level-box {
  500. position: absolute;
  501. top: 155px;
  502. width: 246px;
  503. height: 25px;
  504. }
  505.  
  506. /*
  507. CHECKBOXES
  508. */
  509.  
  510. .options {
  511. font-family: 'beaufort-bold';
  512. text-transform: none;
  513. margin: 10px;
  514. margin-left: 0px;
  515. color: #a09b8c;
  516. }
  517.  
  518. .options:hover {
  519. color: #ceccc4;
  520. }
  521.  
  522. .warning {
  523. /* box-shadow: 0px 0px 13px -1px rgba(230,33,66,0.7); */
  524. color: rgba(230, 33, 66, 0.7) !important;
  525. border: 1px solid rgba(230, 33, 66, 0.7);
  526. }
  527.  
  528. .warning:hover {
  529. /* box-shadow: 0px 0px 13px -1px rgba(230,33,66,0.7); */
  530. color: rgba(230, 33, 66, 0.7) !important;
  531. border: 1px solid rgba(230, 33, 66, 0.7);
  532. }
  533.  
  534. .warning-sign {
  535. position: fixed;
  536. margin-top: 7px;
  537. margin-left: 5px;
  538. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement