style.css 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. /*
  2. Stylesheet by Akshit Tripathi
  3. Fonts by Google Fonts
  4. Thanks Bootstrap for some code.
  5. */
  6. @import url(http://fonts.googleapis.com/css?family=Source+Code+Pro:400|Alegreya+Sans+SC:800);
  7. body {
  8. background-color: #FFFAFA;
  9. margin: 0;
  10. font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  11. }
  12. textarea {
  13. font-family: "Source Code Pro", sans-serif;
  14. color: #272822;
  15. background-color: #FFFFFF;
  16. resize: none;
  17. border: solid;
  18. border-width: 1px;
  19. }
  20. p {
  21. color: rgba(0, 0, 0, 0.5);
  22. font-family: "Helvetica Neue";
  23. font-weight: 400;
  24. margin: 20px 0;
  25. line-height: 1.6;
  26. }
  27. button {
  28. padding: 12px 48px;
  29. font-family: "Alegreya Sans SC", sans-serif;
  30. background: linear-gradient (to bottom, #616159 30%, #DEDEDE 70%);
  31. color: rgba(0, 0, 0, 0.7);
  32. font-size: 12pt;
  33. }
  34. input {
  35. height: 24px;
  36. border-radius: 5px;
  37. border: solid;
  38. border-width: 1px;
  39. width: 300px;
  40. font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  41. }
  42. input:hover {
  43. border-color: #6496FF;
  44. }
  45. input[type=text], textarea {
  46. -webkit-transition: all 0.30s ease-in-out;
  47. -moz-transition: all 0.30s ease-in-out;
  48. -ms-transition: all 0.30s ease-in-out;
  49. -o-transition: all 0.30s ease-in-out;
  50. outline: none;
  51. padding: 3px 0px 3px 3px;
  52. margin: 5px 1px 3px 0px;
  53. border: 1px solid #DDDDDD;
  54. }
  55. input[type=text]:focus, textarea:focus {
  56. box-shadow: 0 0 5px rgba(81, 203, 238, 1);
  57. padding: 3px 0px 3px 3px;
  58. margin: 5px 1px 3px 0px;
  59. border: 1px solid rgba(81, 203, 238, 1);
  60. }
  61. button:hover {
  62. padding: 13px 72px;
  63. font-family: "Alegreya Sans SC", sans-serif;
  64. background: linear-gradient (to bottom, #EDEDED 70%, #DEDEDE 30%);
  65. color: rgb(0, 0, 0);
  66. }