style.css 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132
  1. body {
  2. background: #f8f8f8;
  3. font-family: 'Roboto', sans-serif;
  4. font-size: 16px;
  5. font-weight: 300;
  6. color: #888;
  7. line-height: 30px;
  8. text-align: center;
  9. }
  10. strong { font-weight: 500; }
  11. a, a:hover, a:focus {
  12. color: #19b9e7;
  13. text-decoration: none;
  14. -o-transition: all .3s; -moz-transition: all .3s; -webkit-transition: all .3s; -ms-transition: all .3s; transition: all .3s;
  15. }
  16. h1, h2 {
  17. margin-top: 10px;
  18. font-size: 38px;
  19. font-weight: 100;
  20. color: #555;
  21. line-height: 50px;
  22. }
  23. h3 {
  24. font-size: 22px;
  25. font-weight: 300;
  26. color: #555;
  27. line-height: 30px;
  28. }
  29. .no-margin-top h3 { margin-top: 0; }
  30. img { max-width: 100%; }
  31. ::-moz-selection { background: #19b9e7; color: #fff; text-shadow: none; }
  32. ::selection { background: #19b9e7; color: #fff; text-shadow: none; }
  33. .container {
  34. padding-bottom: 60px;
  35. background: #f8f8f8;
  36. }
  37. .section-container {
  38. margin: 0 auto;
  39. }
  40. .section-description {
  41. margin-top: 60px;
  42. padding-bottom: 10px;
  43. }
  44. .section-description.no-margin-top { margin-top: 0; }
  45. .section-description p {
  46. margin-top: 20px;
  47. padding: 0 120px;
  48. }
  49. .top {
  50. margin: 0 auto;
  51. padding: 40px 0 50px 0;
  52. }
  53. .top .divider-1 span {
  54. background: rgba(255, 255, 255, 0.8);
  55. }
  56. .top h1 {
  57. margin-top: 40px;
  58. padding-left: 15px;
  59. padding-right: 15px;
  60. }
  61. .top p {
  62. margin-top: 20px;
  63. padding-left: 15px;
  64. padding-right: 15px;
  65. }
  66. .layouts {
  67. border-top: 1px solid #ddd;
  68. }
  69. .layout-box {
  70. padding: 30px 20px 20px 20px;
  71. }
  72. .layout-box h3 {
  73. padding: 10px 0;
  74. }
  75. .layout-box p {
  76. margin-top: 20px;
  77. margin-bottom: 0;
  78. }
  79. .layout-box img {
  80. border: 5px solid #eee;
  81. -o-transition: all .3s; -moz-transition: all .3s; -webkit-transition: all .3s; -ms-transition: all .3s; transition: all .3s;
  82. }
  83. .layout-box a:hover img { border-color: #ddd; }
  84. .footer {
  85. padding-top: 30px;
  86. padding-bottom: 30px;
  87. border-top: 1px solid #ddd;
  88. }
  89. @media (min-width: 768px) and (max-width: 991px) {
  90. .section-description p { padding: 0; }
  91. }
  92. @media (max-width: 767px) {
  93. .section-description p { padding: 0; }
  94. }
  95. @media (max-width: 415px) {
  96. h1, h2 { font-size: 32px; }
  97. }