style.css 8.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344
  1. body, html {
  2. padding: 0;
  3. margin: 0;
  4. }
  5. #particles-js {
  6. position: fixed;
  7. top: 0;
  8. right: 0;
  9. width: 66%;
  10. height: 100%;
  11. z-index: 1;
  12. }
  13. #report {
  14. display: inline-block;
  15. position: relative;
  16. z-index: 2;
  17. background-color: transparent
  18. }
  19. #meta {
  20. display: inline-block;
  21. position: relative;
  22. z-index: 2;
  23. background-color: transparent;
  24. width:48%
  25. }
  26. #buttons {
  27. display: inline-block;
  28. position: relative;
  29. z-index: 2;
  30. background-color: transparent
  31. }
  32. a.GL{
  33. display: block;
  34. font-size: 1.1em;
  35. width:150px;
  36. text-decoration:none;
  37. text-align:center;
  38. font: bold 19px arial;
  39. text-transform: uppercase;
  40. padding: 10px 15px;
  41. margin: 3px;
  42. color: #ccc;
  43. background-color: Honeydew;
  44. background-image: linear-gradient(top, #888 0%, #555 100%);
  45. background-image: -webkit-gradient(linear, left top, left GLom, color-stop(0, #888), color-stop(1, #555));
  46. background-image: -moz-linear-gradient(top, #888 0%, #555 100%);
  47. background-image: -o-linear-gradient(top, #888 0%, #555 100%);
  48. border: none;
  49. border-radius: 10px;
  50. text-shadow: 0px -1px 0px blue;
  51. box-shadow: 0px 1px 0px #666,0px 5px 0px #444,0px 6px 6px rgba(0, 0, 0, .6);
  52. -webkit-transition: ease .15s all;
  53. -moz-transition: ease .15s all;
  54. -o-transition: ease .15s all;
  55. transition: ease .15s all;
  56. }
  57. a.GL:hover, a.GL:focus{
  58. -webkit-animation: linear 2.7s light infinite;
  59. -moz-animation: linear 2.7s light infinite;
  60. -o-animation: linear 2.7s light infinite;
  61. animation: linear 2.7s light infinite;
  62. }
  63. @-webkit-keyframes light{
  64. 0% { color: blue; text-shadow: 0px -1px 0px #000; }
  65. 50% { color: blue; text-shadow: 0px -1px 0px #444, 0px 0px 5px #ffd, 0px 0px 8px #fff; }
  66. 100% { color: blue; text-shadow: 0px -1px 0px #000; }
  67. }
  68. @-moz-keyframes light{
  69. 0% { color: blue; text-shadow: 0px -1px 0px #000; }
  70. 50% { color: blue; text-shadow: 0px -1px 0px #444, 0px 0px 5px #ffd, 0px 0px 8px #fff; }
  71. 100% { color: blue; text-shadow: 0px -1px 0px #000; }
  72. }
  73. @-o-keyframes light{
  74. 0% { color: blue; text-shadow: 0px -1px 0px #000; }
  75. 50% { color: blue; text-shadow: 0px -1px 0px #444, 0px 0px 5px #ffd, 0px 0px 8px #fff; }
  76. 100% { color: blue; text-shadow: 0px -1px 0px #000; }
  77. }
  78. @keyframes light{
  79. 0% { color: blue; text-shadow: 0px -1px 0px #000; }
  80. 50% { color: LightGrey; text-shadow: 0px -1px 0px #444, 0px 0px 5px #ffd, 0px 0px 8px #fff; }
  81. 100% { color: blue; text-shadow: 0px -1px 0px #000; }
  82. }
  83. a.GL:active{
  84. color: #fff;
  85. text-shadow: 0px -1px 0px #444,0px 0px 5px #ffd,0px 0px 8px #fff;
  86. box-shadow: 0px 1px 0px #666,0px 2px 0px #444,0px 2px 2px rgba(0, 0, 0, .9);
  87. -webkit-transform: translateY(3px);
  88. -moz-transform: translateY(3px);
  89. -o-transform: translateY(3px);
  90. transform: translateY(3px);
  91. }
  92. a.SnA {
  93. float:left;
  94. margin-right:5px;
  95. margin-left:15px;
  96. font-family:arial;
  97. font-size: 20px;
  98. line-height: 20px;
  99. letter-spacing: -1px;
  100. text-decoration: none;
  101. text-align:center;
  102. display:block;
  103. width:140px;
  104. color: #888888;
  105. position: relative;
  106. -webkit-transition: color 0.2s;
  107. -moz-transition: color 0.2s;
  108. -o-transition: color 0.2s;
  109. transition: color 0.2s;
  110. }
  111. a.SnA:hover {
  112. color: black;
  113. background:rgba(0,0,0,0.1);
  114. }
  115. a.SnA:after {
  116. left: -20px;
  117. -webkit-transition-property: left, opacity, top;
  118. -moz-transition-property: left, opacity, top;
  119. -o-transition-property: left, opacity, top;
  120. transition-property: left, opacity, top;
  121. -webkit-transition-duration: .2s, .2s, .2s;
  122. -moz-transition-duration: .2s, .2s, .2s;
  123. -o-transition-duration: .2s, .2s, .2s;
  124. transition-duration: .2s, .2s, .2s;
  125. content: "";
  126. width: 12px;
  127. height: 12px;
  128. background: transparent;
  129. position: absolute;
  130. border-left: 5px solid red;
  131. border-top: 5px solid red;
  132. top: -22px;
  133. opacity: 0;
  134. }
  135. a.SnA:hover:after {
  136. left: -10px;
  137. top: -12px;
  138. opacity: 1;
  139. }
  140. a.SnA:before {
  141. right: -20px;
  142. -webkit-transition-property: right, opacity, top;
  143. -moz-transition-property: right, opacity, top;
  144. -o-transition-property: right, opacity, top;
  145. transition-property: right, opacity, top;
  146. -webkit-transition-duration: .2s, .2s, .2s;
  147. -moz-transition-duration: .2s, .2s, .2s;
  148. -o-transition-duration: .2s, .2s, .2s;
  149. transition-duration: .2s, .2s, .2s;
  150. content: "";
  151. width: 12px;
  152. height: 12px;
  153. background: transparent;
  154. position: absolute;
  155. border-right: 5px solid red;
  156. border-top: 5px solid red;
  157. top: -22px;
  158. opacity: 0;
  159. }
  160. a.SnA:hover:before {
  161. right: -10px;
  162. top: -12px;
  163. opacity: 1;
  164. }
  165. .SnSpan:after {
  166. left: -20px;
  167. -webkit-transition-property: left, opacity, bottom;
  168. -moz-transition-property: left, opacity, bottom;
  169. -o-transition-property: left, opacity, bottom;
  170. transition-property: left, opacity, bottom;
  171. -webkit-transition-duration: .2s, .2s, .2s;
  172. -moz-transition-duration: .2s, .2s, .2s;
  173. -o-transition-duration: .2s, .2s, .2s;
  174. transition-duration: .2s, .2s, .2s;
  175. content: "";
  176. width: 12px;
  177. height: 12px;
  178. background: transparent;
  179. position: absolute;
  180. border-left: 5px solid red;
  181. border-bottom: 5px solid red;
  182. bottom: -24px;
  183. opacity: 0;
  184. }
  185. .SnSpan:hover:after {
  186. left: -10px;
  187. bottom: -14px;
  188. opacity: 1;
  189. }
  190. .SnSpan:before {
  191. right: -20px;
  192. -webkit-transition-property: right, opacity, bottom;
  193. -moz-transition-property: right, opacity, bottom;
  194. -o-transition-property: right, opacity, bottom;
  195. transition-property: right, opacity, bottom;
  196. -webkit-transition-duration: .2s, .2s, .2s;
  197. -moz-transition-duration: .2s, .2s, .2s;
  198. -o-transition-duration: .2s, .2s, .2s;
  199. transition-duration: .2s, .2s, .2s;
  200. content: "";
  201. width: 12px;
  202. height: 12px;
  203. background: transparent;
  204. position: absolute;
  205. border-right: 5px solid red;
  206. border-bottom: 5px solid red;
  207. bottom: -24px;
  208. opacity: 0;
  209. }
  210. .SnSpan:hover:before {
  211. right: -10px;
  212. bottom: -14px;
  213. opacity: 1;
  214. }
  215. a.DnA {
  216. float:left;
  217. margin-right:5px;
  218. margin-left:15px;
  219. font-family:arial;
  220. font-size: 20px;
  221. line-height: 20px;
  222. letter-spacing: -1px;
  223. text-decoration: none;
  224. text-align:center;
  225. display:block;
  226. width:140px;
  227. color: #888888;
  228. position: relative;
  229. -webkit-transition: color 0.2s;
  230. -moz-transition: color 0.2s;
  231. -o-transition: color 0.2s;
  232. transition: color 0.2s;
  233. }
  234. a.DnA:hover {
  235. color: black;
  236. background:rgba(0,0,0,0.1);
  237. }
  238. a.DnA:after {
  239. left: -20px;
  240. -webkit-transition-property: left, opacity, top;
  241. -moz-transition-property: left, opacity, top;
  242. -o-transition-property: left, opacity, top;
  243. transition-property: left, opacity, top;
  244. -webkit-transition-duration: .2s, .2s, .2s;
  245. -moz-transition-duration: .2s, .2s, .2s;
  246. -o-transition-duration: .2s, .2s, .2s;
  247. transition-duration: .2s, .2s, .2s;
  248. content: "";
  249. width: 12px;
  250. height: 12px;
  251. background: transparent;
  252. position: absolute;
  253. border-left: 5px solid blue;
  254. border-top: 5px solid blue;
  255. top: -22px;
  256. opacity: 0;
  257. }
  258. a.DnA:hover:after {
  259. left: -10px;
  260. top: -12px;
  261. opacity: 1;
  262. }
  263. a.DnA:before {
  264. right: -20px;
  265. -webkit-transition-property: right, opacity, top;
  266. -moz-transition-property: right, opacity, top;
  267. -o-transition-property: right, opacity, top;
  268. transition-property: right, opacity, top;
  269. -webkit-transition-duration: .2s, .2s, .2s;
  270. -moz-transition-duration: .2s, .2s, .2s;
  271. -o-transition-duration: .2s, .2s, .2s;
  272. transition-duration: .2s, .2s, .2s;
  273. content: "";
  274. width: 12px;
  275. height: 12px;
  276. background: transparent;
  277. position: absolute;
  278. border-right: 5px solid blue;
  279. border-top: 5px solid blue;
  280. top: -22px;
  281. opacity: 0;
  282. }
  283. a.DnA:hover:before {
  284. right: -10px;
  285. top: -12px;
  286. opacity: 1;
  287. }
  288. .DnSpan:after {
  289. left: -20px;
  290. -webkit-transition-property: left, opacity, bottom;
  291. -moz-transition-property: left, opacity, bottom;
  292. -o-transition-property: left, opacity, bottom;
  293. transition-property: left, opacity, bottom;
  294. -webkit-transition-duration: .2s, .2s, .2s;
  295. -moz-transition-duration: .2s, .2s, .2s;
  296. -o-transition-duration: .2s, .2s, .2s;
  297. transition-duration: .2s, .2s, .2s;
  298. content: "";
  299. width: 12px;
  300. height: 12px;
  301. background: transparent;
  302. position: absolute;
  303. border-left: 5px solid blue;
  304. border-bottom: 5px solid blue;
  305. bottom: -24px;
  306. opacity: 0;
  307. }
  308. .DnSpan:hover:after {
  309. left: -10px;
  310. bottom: -14px;
  311. opacity: 1;
  312. }
  313. .DnSpan:before {
  314. right: -20px;
  315. -webkit-transition-property: right, opacity, bottom;
  316. -moz-transition-property: right, opacity, bottom;
  317. -o-transition-property: right, opacity, bottom;
  318. transition-property: right, opacity, bottom;
  319. -webkit-transition-duration: .2s, .2s, .2s;
  320. -moz-transition-duration: .2s, .2s, .2s;
  321. -o-transition-duration: .2s, .2s, .2s;
  322. transition-duration: .2s, .2s, .2s;
  323. content: "";
  324. width: 12px;
  325. height: 12px;
  326. background: transparent;
  327. position: absolute;
  328. border-right: 5px solid blue;
  329. border-bottom: 5px solid blue;
  330. bottom: -24px;
  331. opacity: 0;
  332. }
  333. .DnSpan:hover:before {
  334. right: -10px;
  335. bottom: -14px;
  336. opacity: 1;
  337. }