Advertisement
RyanJEarnshaw

Untitled

Oct 13th, 2016
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 8.28 KB | None | 0 0
  1. @import 'https://fonts.googleapis.com/css?family=Raleway:100,200,300,400';
  2. @import url(http://fonts.googleapis.com/css?family=Roboto);
  3.  
  4. * {
  5. margin:0;
  6. padding:0;
  7. }
  8.  
  9. html, body {
  10. font-family: 'Raleway', sans-serif;
  11. margin:0;
  12. padding:0;
  13. height:auto;
  14. background-color: rgba(255,255,255,1);
  15. }
  16.  
  17. .container {
  18. min-height:100%;
  19. position:relative;
  20. background-color: rgba(255,255,255,0);
  21. }
  22.  
  23. .title {
  24. font-family: 'roboto', sans-serif;
  25. text-align: center;
  26. color: rgba(1,1,1,0.2);
  27. margin: 4% 0;
  28. font-size: 5vmax;
  29. }
  30. .greeting {
  31. font-family: 'roboto', sans-serif;
  32. text-align: center;
  33. color: rgba(1,1,1,0.6);
  34. margin: 4% 0;
  35. font-size: 2vmax;
  36. }
  37.  
  38. input[type=date]::-webkit-inner-spin-button {
  39. display: none;
  40. }
  41. .basetext {
  42. display: inline-block;
  43. font-family: 'roboto', sans-serif;
  44. text-align: center;
  45. color: rgba(1,1,1,0.2);
  46. margin: 4% 0;
  47. font-size: 1.5vmax;
  48. }
  49. .manageremail{
  50. display: initial;
  51. color: rgba(1,1,1,0.4);
  52. }
  53. .formrow {
  54. width: 100%;
  55. margin: auto;
  56. text-align: center;
  57. margin-bottom: 10%;
  58. }
  59.  
  60.  
  61.  
  62. a {
  63. font-family: 'Roboto';
  64. text-decoration: none;
  65. margin: 1%;
  66. padding: 1%;
  67. width: 15%;
  68. cursor: pointer;
  69. background: white;
  70. text-decoration: none;
  71. color: SALMON;
  72. border: 3px solid SALMON;
  73.  
  74. }
  75. .content {
  76. text-align: center;
  77. }
  78.  
  79. .formrow input {
  80. display: inline-block;
  81. font-size: 1.5vmax;
  82. margin: 0px 10%;
  83. width: 20%;
  84. border: none;
  85. border-bottom: solid 2px #1abc9c;
  86. -webkit-transition: all 0.3s cubic-bezier(0.64, 0.09, 0.08, 1);
  87. transition: all 0.3s cubic-bezier(0.64, 0.09, 0.08, 1);
  88. background: none;
  89. color: SALMON;
  90. vertical-align: center;
  91. margin-left: auto;
  92. margin-right: auto;
  93. }
  94. .formrow input:focus, .formrow input:valid {
  95. box-shadow: none;
  96. outline: none;
  97. background-position: 0 0;
  98. }
  99. .formrow input::-webkit-input-placeholder {
  100. font-family: 'roboto', sans-serif;
  101. -webkit-transition: all 0.3s ease-in-out;
  102. transition: all 0.3s ease-in-out;
  103. }
  104. .formrow input:focus::-webkit-input-placeholder, .formrow input:valid::-webkit-input-placeholder {
  105. color: #1abc9c;
  106. font-size: 1.5vmax;
  107. -webkit-transform: translateY(-20px);
  108. transform: translateY(-20px);
  109. visibility: visible !important;
  110. }
  111. .hiddenpassw-o-r-d { height: 1.1px; }
  112. .hiddenpassw-o-r-d input{
  113. cursor: default;
  114. border: none;
  115. color: white;
  116. width: 1.1%;
  117. }
  118. .submitbutton {
  119. top: 0;
  120. left: 0;
  121. position: absolute;
  122. cursor: default;
  123. border: none;
  124. width: 100%;
  125. height: 100%;
  126. background-color: rgba(1,1,1,0);
  127. color: rgba(1,1,1,0);
  128. }
  129. .button {
  130. display: inline-block;
  131. vertical-align: middle;
  132. -webkit-transform: translateZ(0);
  133. transform: translateZ(0);
  134. box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  135. -webkit-backface-visibility: hidden;
  136. backface-visibility: hidden;
  137. -moz-osx-font-smoothing: grayscale;
  138. position: relative;
  139. -webkit-transition-property: color;
  140. transition-property: color;
  141. -webkit-transition-duration: 0.5s;
  142. transition-duration: 0.5s;
  143. }
  144. .button:before {
  145. content: "";
  146. position: absolute;
  147. z-index: -1;
  148. top: 0;
  149. left: 0;
  150. right: 0;
  151. bottom: 0;
  152. background: SALMON;
  153. -webkit-transform: scaleY(0);
  154. transform: scaleY(0);
  155. -webkit-transform-origin: 50% 0;
  156. transform-origin: 50% 0;
  157. -webkit-transition-property: transform;
  158. transition-property: transform;
  159. -webkit-transition-duration: 0.5s;
  160. transition-duration: 0.5s;
  161. -webkit-transition-timing-function: ease-out;
  162. transition-timing-function: ease-out;
  163. }
  164. .button:hover, .button:focus, .button:active {
  165. color: WHITE;
  166. }
  167. .button:hover:before, .button:focus:before, .button:active:before {
  168. -webkit-transform: scaleY(1);
  169. transform: scaleY(1);
  170. -webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
  171. transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
  172. }
  173.  
  174. /* The side navigation menu */
  175. #menubutton {
  176. position: fixed;
  177. margin: 1%;
  178. margin-top: -10%;
  179. font-size: 2vmax;
  180. color: SALMON;
  181. border: 3px solid SALMON;
  182. padding: 2px 12px;
  183. background-color: white;
  184. width: 8%;
  185. transition: 0.5s;
  186. z-index: 1;
  187. }
  188. .sidenav {
  189. height: 100%;
  190. width: 17vmax;
  191. position: fixed;
  192. z-index: 2; /* Stay on top */
  193. top: 0;
  194. left: 0;
  195. background-color: #111;
  196. overflow-x: hidden;
  197. padding-top: 60px;
  198. transition: 0.5s;
  199. }
  200. .sidenav a {
  201. margin: 0;
  202. width: 17vmax;
  203. padding: 0.5vmax 0.5vmax 0.5vmax 1vmax;
  204. text-decoration: none;
  205. font-size: 1.8vmax;
  206. color: SALMON;
  207. background-color: rgba(1,1,1,0);
  208. border: none;
  209. display: block;
  210. transition: 0.3s
  211. }
  212. .sidenav a:nth-child(1) {
  213. padding: 0;
  214. float: right;
  215. width: auto;
  216. font-size: 3vmax;
  217. }
  218. .sidenav a:hover, .offcanvas a:focus{
  219. color: #f1f1f1;
  220. }
  221. .sidenav .closebtn {
  222. position: absolute;
  223. top: 0;
  224. right: 25px;
  225. font-size: 36px;
  226. margin-left: 50px;
  227. }
  228. #main {
  229. transition: margin-left .5s;
  230. padding: 20px;
  231. }
  232. /* End The side navigation menu */
  233.  
  234.  
  235.  
  236.  
  237. #alertBox {
  238. visibility: hidden; /* Hidden by default. Visible on click */
  239. min-width: 20%;
  240. background-color: LIGHTGREEN;
  241. color: #fff;
  242. text-align: center;
  243. border-radius: 2px;
  244. padding: 16px 5%;
  245. position: fixed;
  246. z-index: 1;
  247. left: 35%;
  248. top: 30px;
  249. }
  250.  
  251. #alertBox.show {
  252. visibility: visible; /* Show */
  253. -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
  254. animation: fadein 0.5s, fadeout 0.5s 2.5s;
  255. }
  256. @-webkit-keyframes fadein {
  257. from {top: 0; opacity: 0;}
  258. to {top: 30px; opacity: 1;}
  259. }
  260.  
  261. @keyframes fadein {
  262. from {top: 0; opacity: 0;}
  263. to {top: 30px; opacity: 1;}
  264. }
  265.  
  266. @-webkit-keyframes fadeout {
  267. from {top: 30px; opacity: 1;}
  268. to {top: 0; opacity: 0;}
  269. }
  270.  
  271. @keyframes fadeout {
  272. from {top: 30px; opacity: 1;}
  273. to {top: 0; opacity: 0;}
  274. }
  275.  
  276. .checkmark-circle {
  277. width: 150px;
  278. height: 150px;
  279. position: relative;
  280. display: inline-block;
  281. vertical-align: top;
  282. }
  283. .checkmark-circle .background {
  284. width: 50px;
  285. height: 50px;
  286. border-radius: 50%;
  287. background: #2EB150;
  288. position: absolute;
  289. }
  290. .checkmark-circle .checkmark {
  291. /* border-radius: 2px; */
  292. }
  293. .checkmark-circle .checkmark.draw:after {
  294. -webkit-animation-delay: 100ms;
  295. -moz-animation-delay: 100ms;
  296. animation-delay: 100ms;
  297. -webkit-animation-duration: 1s;
  298. -moz-animation-duration: 1s;
  299. animation-duration: 1s;
  300. -webkit-animation-timing-function: ease;
  301. -moz-animation-timing-function: ease;
  302. animation-timing-function: ease;
  303. -webkit-animation-name: checkmark;
  304. -moz-animation-name: checkmark;
  305. animation-name: checkmark;
  306. -webkit-transform: scaleX(-1) rotate(135deg);
  307. -moz-transform: scaleX(-1) rotate(135deg);
  308. -ms-transform: scaleX(-1) rotate(135deg);
  309. -o-transform: scaleX(-1) rotate(135deg);
  310. transform: scaleX(-1) rotate(135deg);
  311. -webkit-animation-fill-mode: forwards;
  312. -moz-animation-fill-mode: forwards;
  313. animation-fill-mode: forwards;
  314. }
  315. .checkmark-circle .checkmark:after {
  316. opacity: 1;
  317. /* height: 35px; */
  318. /* width: 27.5px; */
  319. -webkit-transform-origin: left top;
  320. -moz-transform-origin: left top;
  321. -ms-transform-origin: left top;
  322. -o-transform-origin: left top;
  323. transform-origin: left top;
  324. border-right: 9px solid white;
  325. border-top: 9px solid white;
  326. border-radius: -1.5px !important;
  327. content: '';
  328. left: 25px;
  329. top: 75px;
  330. position: absolute;
  331. }
  332.  
  333. @-webkit-keyframes checkmark {
  334. 0% {
  335. height: 0;
  336. width: 0;
  337. opacity: 1;
  338. }
  339. 20% {
  340. height: 0;
  341. width: 37.5px;
  342. opacity: 1;
  343. }
  344. 40% {
  345. height: 75px;
  346. width: 37.5px;
  347. opacity: 1;
  348. }
  349. 100% {
  350. height: 75px;
  351. width: 37.5px;
  352. opacity: 1;
  353. }
  354. }
  355. @-moz-keyframes checkmark {
  356. 0% {
  357. height: 0;
  358. width: 0;
  359. opacity: 1;
  360. }
  361. 20% {
  362. height: 0;
  363. width: 37.5px;
  364. opacity: 1;
  365. }
  366. 40% {
  367. height: 75px;
  368. width: 37.5px;
  369. opacity: 1;
  370. }
  371. 100% {
  372. height: 75px;
  373. width: 37.5px;
  374. opacity: 1;
  375. }
  376. }
  377. @keyframes checkmark {
  378. 0% {
  379. height: 0;
  380. width: 0;
  381. opacity: 1;
  382. }
  383. 20% {
  384. height: 0;
  385. width: 37.5px;
  386. opacity: 1;
  387. }
  388. 40% {
  389. height: 75px;
  390. width: 37.5px;
  391. opacity: 1;
  392. }
  393. 100% {
  394. height: 75px;
  395. width: 37.5px;
  396. opacity: 1;
  397. }
  398. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement