style.css 1020 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. html {
  2. height: 100%;
  3. }
  4. body {
  5. height: 100%;
  6. font-family: "Myriad Pro", "Myriad", Helvetica, Arial, sans-serif;
  7. font-size: 12pt;
  8. margin: 0px;
  9. }
  10. h1 {
  11. font-size: 20pt;
  12. }
  13. a:link { color: #666; }
  14. a:visited { color: #666; }
  15. a:hover { color: #000; }
  16. a:active { color: #000; }
  17. input {
  18. width: 100%
  19. }
  20. textarea, input {
  21. font-family: inherit;
  22. font-size: inherit;
  23. }
  24. .smallPrint {
  25. color: #888;
  26. font-size: 9pt ! important;
  27. font-style: italic ! important;
  28. }
  29. #recaptcha_area {
  30. margin: auto
  31. }
  32. .g-recaptcha div {
  33. margin: auto;
  34. }
  35. #registrationForm {
  36. text-align: left;
  37. padding: 5px;
  38. margin-bottom: 40px;
  39. display: inline-block;
  40. -webkit-border-radius: 10px;
  41. -moz-border-radius: 10px;
  42. border-radius: 10px;
  43. -webkit-box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.15);
  44. -moz-box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.15);
  45. box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.15);
  46. background-color: #f8f8f8;
  47. border: 1px #ccc solid;
  48. }