homepage.css 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122
  1. /* Hero unit on homepage */
  2. .hero-unit h1 {
  3. font-size: 49px;
  4. margin-bottom: 12px;
  5. }
  6. .hero-unit {
  7. padding: 40px;
  8. }
  9. .hero-unit p {
  10. font-size: 17px;
  11. }
  12. .masthead img {
  13. float: left;
  14. margin-right: 17px;
  15. }
  16. .hero-unit ul li {
  17. margin-left: 220px;
  18. }
  19. .hero-unit .buttons {
  20. text-align: center;
  21. }
  22. .jumbotron {
  23. position: relative;
  24. padding: 40px 0;
  25. color: #fff;
  26. text-shadow: 0 1px 3px rgba(0,0,0,.4), 0 0 30px rgba(0,0,0,.075);
  27. background: #00312F;
  28. background: -moz-linear-gradient(45deg, #002F31 0%, #335A6D 100%);
  29. background: -webkit-gradient(linear, left bottom, right top, color-stop(0%,#00312D), color-stop(100%,#33566D));
  30. background: -webkit-linear-gradient(45deg, #020031 0%,#334F6D 100%);
  31. background: -o-linear-gradient(45deg, #002D31 0%,#334D6D 100%);
  32. background: -ms-linear-gradient(45deg, #002F31 0%,#33516D 100%);
  33. background: linear-gradient(45deg, #020031 0%,#33516D 100%);
  34. filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#020031', endColorstr='#6d3353',GradientType=1 );
  35. -webkit-box-shadow: inset 0 3px 7px rgba(0, 0, 0, .2), inset 0 -3px 7px rgba(0, 0, 0, .2);
  36. -moz-box-shadow: inset 0 3px 7px rgba(0,0,0,.2), inset 0 -3px 7px rgba(0,0,0,.2);
  37. box-shadow: inset 0 3px 7px rgba(0, 0, 0, .2), inset 0 -3px 7px rgba(0, 0, 0, .2);
  38. }
  39. .jumbotron h1 {
  40. font-size: 80px;
  41. font-weight: bold;
  42. letter-spacing: -1px;
  43. line-height: 1;
  44. }
  45. .jumbotron p {
  46. font-size: 24px;
  47. font-weight: 300;
  48. line-height: 1.25;
  49. margin-bottom: 30px;
  50. }
  51. .masthead {
  52. padding: 40px 0 30px;
  53. margin-bottom: 0;
  54. color: #fff;
  55. margin-top: -19px;
  56. }
  57. .masthead h1 {
  58. display: none;
  59. }
  60. .masthead p {
  61. font-size: 40px;
  62. font-weight: 200;
  63. line-height: 1.25;
  64. margin: 12px 0 0 0;
  65. }
  66. .masthead .btn {
  67. padding: 19px 24px;
  68. font-size: 24px;
  69. font-weight: 200;
  70. border: 0;
  71. }
  72. /* Social bar on homepage */
  73. .social {
  74. padding: 2px 0;
  75. text-align: center;
  76. background-color: #f5f5f5;
  77. border-top: 1px solid #fff;
  78. border-bottom: 1px solid #ddd;
  79. margin: 0 0 20px 0;
  80. }
  81. .social ul {
  82. margin-top: 0;
  83. }
  84. .social-buttons {
  85. margin-left: 0;
  86. margin-bottom: 0;
  87. padding-left: 0;
  88. list-style: none;
  89. }
  90. .social-buttons li {
  91. display: inline-block;
  92. padding: 5px 8px;
  93. line-height: 1;
  94. *display: inline;
  95. *zoom: 1;
  96. }
  97. .center-announcement {
  98. padding: 10px;
  99. background-color: rgb(238, 243, 255);
  100. border-radius: 8px;
  101. text-align: center;
  102. margin: 24px 0;
  103. }