style.css 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  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. margin-left: 3px;
  20. }
  21. p {
  22. color: rgba(0, 0, 0, 0.5);
  23. font-family: "Helvetica Neue";
  24. font-weight: 400;
  25. margin: 20px 0;
  26. line-height: 1.6;
  27. }
  28. button {
  29. padding: 12px 48px;
  30. font-family: "Alegreya Sans SC", sans-serif;
  31. background: linear-gradient (to bottom, #616159 30%, #DEDEDE 70%);
  32. color: rgba(0, 0, 0, 0.7);
  33. font-size: 12pt;
  34. }
  35. input {
  36. height: 24px;
  37. border-radius: 5px;
  38. border: solid;
  39. border-width: 1px;
  40. width: 300px;
  41. font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  42. }
  43. input:hover {
  44. border-color: #6496FF;
  45. }
  46. input[type=text], textarea {
  47. -webkit-transition: all 0.30s ease-in-out;
  48. -moz-transition: all 0.30s ease-in-out;
  49. -ms-transition: all 0.30s ease-in-out;
  50. -o-transition: all 0.30s ease-in-out;
  51. outline: none;
  52. padding: 3px 0px 3px 3px;
  53. margin: 5px 1px 3px 0px;
  54. border: 1px solid #DDDDDD;
  55. }
  56. input[type=text]:focus, textarea:focus {
  57. box-shadow: 0 0 5px rgba(81, 203, 238, 1);
  58. padding: 3px 0px 3px 3px;
  59. margin: 5px 1px 3px 0px;
  60. border: 1px solid rgba(81, 203, 238, 1);
  61. }
  62. button:hover {
  63. padding: 12px 48px;
  64. font-family: "Alegreya Sans SC", sans-serif;
  65. background: linear-gradient (to bottom, #EDEDED 70%, #DEDEDE 30%);
  66. color: rgb(0, 0, 0);
  67. }