Advertisement
Guest User

Untitled

a guest
Apr 19th, 2018
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.25 KB | None | 0 0
  1. @import url('https://fonts.googleapis.com/css?family=Syncopate|Unica+One');
  2. @import url(http://fonts.googleapis.com/css?family=Roboto:400,400italic,500,500italic,700,700italic,900,900italic,300italic,300,100italic,100);
  3.  
  4. body {
  5. font-family: 'Roboto', sans-serif;
  6. display: none;
  7. align-items: center;
  8. justify-content: center;
  9. overflow: hidden;
  10. }
  11.  
  12.  
  13. #style-1::-webkit-scrollbar-track
  14. {
  15. -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
  16. border-radius: 10px;
  17. background-color: #F5F5F5;
  18. }
  19.  
  20. #style-1::-webkit-scrollbar
  21. {
  22. width: 15px;
  23. background-color: #F5F5F5;
  24. }
  25.  
  26. #style-1::-webkit-scrollbar-thumb
  27. {
  28. border-radius: 10px;
  29. -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
  30. background-color: #555;
  31. }
  32.  
  33. /*
  34. * STYLE 2
  35. */
  36.  
  37. #style-2::-webkit-scrollbar-track
  38. {
  39. -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
  40. border-radius: 10px;
  41. background-color: #F5F5F5;
  42. }
  43.  
  44. #style-2::-webkit-scrollbar
  45. {
  46. width: 12px;
  47. background-color: #F5F5F5;
  48. }
  49.  
  50. #style-2::-webkit-scrollbar-thumb
  51. {
  52. border-radius: 10px;
  53. -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
  54. background-color: #D62929;
  55. }
  56.  
  57. .container {
  58. position: absolute;
  59. background-color: rgba(23, 29, 38, 1);
  60. width: 50%;
  61. top: 25%;
  62. left: 25%;
  63. height: 360px;
  64.  
  65. }
  66.  
  67. .header {
  68. background-color: rgba(67, 137, 249, 1);
  69. font-family: 'Unica One', cursive;
  70. padding-top: 5px;
  71. height: 30px;
  72. width: 100%;
  73. position: relative;
  74. }
  75.  
  76. .header h1 {
  77. margin: 0;
  78. font-size: 1.25rem;
  79. color: #fff;
  80. text-align: center;
  81. font-weight: normal;
  82. }
  83.  
  84. .body {
  85. padding: 10px;
  86. color: #fff;
  87.  
  88. }
  89.  
  90.  
  91.  
  92. .section {
  93. display: flex;
  94. flex-wrap: wrap;
  95. }
  96.  
  97. .section.characters .character:first-child {
  98. margin-left: 18px;
  99. }
  100.  
  101. .section.characters .character {
  102. width: 30%;
  103. position: relative;
  104. height: 260px;
  105. border: 2px solid #2b2e39;
  106. border-radius: 5px;
  107. text-align: center;
  108. margin-left: 8px;
  109. }
  110.  
  111. .section.characters .character.selected {
  112. border-color: #308bcd;
  113. }
  114.  
  115. .section.characters .character span {
  116. color: #2f8135;
  117. }
  118.  
  119. .section.characters .character .new {
  120. font-size: 7rem;
  121. margin: 0;
  122. color: #2b2e39;
  123. }
  124.  
  125. .section.characters .character h3:first-child {
  126. padding-top: 8px;
  127. }
  128.  
  129. .section.characters .character h3 {
  130. margin: 0;
  131. color: #6b7186;
  132. font-size: 0.9rem;
  133. text-align: left;
  134. padding: 11px 20px;
  135. }
  136.  
  137. .section.characters .character h4 {
  138. margin: 0;
  139. color: #54596a
  140. }
  141.  
  142. .section.characters .character b {
  143. margin: 0;
  144. color: #36719c;
  145.  
  146. }
  147.  
  148. .create {
  149. display: none;
  150. }
  151.  
  152. .form-item {
  153. display: flex;
  154. flex-wrap: wrap;
  155. align-items: center;
  156. justify-content: center;
  157. padding: 5px;
  158. }
  159.  
  160. label {
  161. padding-left: 10px;
  162. min-width: 100px;
  163. }
  164.  
  165. input[type=text] {
  166. flex: 1;
  167. flex-grow: 1;
  168. color: #fff;
  169. background: #363a48;
  170. border: 1px solid #2b2e39;
  171. padding: 10px;
  172. outline: 0;
  173. width: auto;
  174. }
  175.  
  176. .option {
  177. flex: 1;
  178. flex-grow: 1;
  179. color: #fff;
  180. background: #363a48;
  181. border: 1px solid #2b2e39;
  182. outline: 0;
  183. width: auto;
  184. display: inline-block;
  185. white-space: nowrap;
  186. overflow: hidden;
  187. }
  188.  
  189. .option p {
  190. display: inline-block;
  191. width: 49.7%;
  192. text-align: center;
  193. margin: -1.5px 0;
  194. padding: 10px 0;
  195. border-bottom: 3px solid transparent;
  196. }
  197.  
  198. .option p.selected {
  199. border-color: #308bcd;
  200. }
  201.  
  202. .footer {
  203. background-color: rgba(40, 50, 66, 1);
  204. padding-top: 15px;
  205. text-align: right;
  206. position: absolute;
  207. height: 30px;
  208. width: 100%;
  209. bottom: 0%;
  210. }
  211.  
  212. .footer button {
  213. padding: 8px 15px;
  214. background: #308bcd;
  215. border: 0;
  216. color: #fff;
  217. border-radius: 0px;
  218. outline: 0;
  219. position: relative;
  220. bottom: 25%;
  221. right: 20px;
  222. }
  223.  
  224. .footer a[href="http://login/disconnect"] button {
  225. background-color: rgba(168, 52, 43, 1);
  226. padding: 8px 15px;
  227. color: white;
  228. float: left;
  229. border-width: 0px;
  230. float: left;
  231. left: 20px;
  232. }
  233.  
  234. .footer a[href="http://login/list"] button {
  235. background-color: #002e4d;
  236. color: #626777;
  237. float: left;
  238. left: 20px;
  239. }
  240.  
  241. .footer button.disabled {
  242. background-color: #002e4d;
  243. color: #626777;
  244. }
  245.  
  246. .footer button.back {
  247. background-color: #002e4d;
  248. float: left;
  249. }
  250.  
  251. h3{
  252. text-align: center;
  253. }
  254.  
  255. h5{
  256. position: relative;
  257. right: -40px;
  258. color: aqua;
  259. }
  260.  
  261. li{
  262. font-size: 12px;
  263. color: #6b7186;
  264. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement