site.css 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. body {
  2. padding-top: 20px;
  3. padding-bottom: 60px;
  4. }
  5. /* Custom container */
  6. .container {
  7. margin: 0 auto;
  8. max-width: 1000px;
  9. }
  10. .container > hr {
  11. margin: 60px 0;
  12. }
  13. /* Main marketing message and sign up button */
  14. .jumbotron {
  15. margin: 80px 0;
  16. text-align: center;
  17. }
  18. .jumbotron h1 {
  19. font-size: 100px;
  20. line-height: 1;
  21. }
  22. .jumbotron .lead {
  23. font-size: 24px;
  24. line-height: 1.25;
  25. }
  26. .jumbotron .btn {
  27. font-size: 21px;
  28. padding: 14px 24px;
  29. }
  30. /* Supporting marketing content */
  31. .marketing {
  32. margin: 60px 0;
  33. }
  34. .marketing p + h4 {
  35. margin-top: 28px;
  36. }
  37. /* Customize the navbar links to be fill the entire space of the .navbar */
  38. .navbar .navbar-inner {
  39. padding: 0;
  40. }
  41. .navbar .nav {
  42. margin: 0;
  43. display: table;
  44. width: 100%;
  45. }
  46. .navbar .nav li {
  47. display: table-cell;
  48. width: 1%;
  49. float: none;
  50. }
  51. .navbar .nav li a {
  52. font-weight: bold;
  53. text-align: center;
  54. border-left: 1px solid rgba(255, 255, 255, .75);
  55. border-right: 1px solid rgba(0, 0, 0, .1);
  56. }
  57. .navbar .nav li:first-child a {
  58. border-left: 0;
  59. border-radius: 3px 0 0 3px;
  60. }
  61. .navbar .nav li:last-child a {
  62. border-right: 0;
  63. border-radius: 0 3px 3px 0;
  64. }