style.css 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247
  1. @import 'main.css';
  2. @import url("http://fonts.googleapis.com/css?family=Source+Sans+Pro:400,600,700");
  3. @import url("http://fonts.googleapis.com/css?family=Abril+Fatface");
  4. .navbar .navbar-brand,
  5. .navbar .navbar-nav > li > a,
  6. .filterable-portfolio .nav-pills a,
  7. .portfolio-item img,
  8. .posts .post img,
  9. .posts .post-excerpt .post-meta a,
  10. .recent-projects img {
  11. -webkit-transition: all 200ms ease;
  12. transition: all 200ms ease;
  13. }
  14. .recent-projects ul {
  15. list-style: none;
  16. }
  17. html {
  18. padding: 2rem;
  19. background: currentcolor url("../img/abstract-bg.svg") right bottom no-repeat;
  20. height: 100%;
  21. background-attachment: fixed;
  22. overflow-y: scroll;
  23. }
  24. body {
  25. background: none;
  26. font-family: 'Source Sans Pro', sans-serif;
  27. line-height: 1.5;
  28. color: #f5f5f5;
  29. }
  30. h1,
  31. h2,
  32. h3 {
  33. font-family: 'Abril Fatface', cursive;
  34. color: #fff;
  35. }
  36. h1,
  37. h2,
  38. h3,
  39. h4,
  40. h5,
  41. h6 {
  42. margin-top: 0;
  43. }
  44. p {
  45. margin-bottom: 1rem;
  46. }
  47. .navbar .navbar-brand,
  48. .navbar .navbar-nav > li > a {
  49. color: #f5f5f5;
  50. font-weight: bold;
  51. }
  52. .navbar .navbar-brand:hover,
  53. .navbar .navbar-nav > li > a:hover {
  54. color: #4e9af3;
  55. background: none;
  56. }
  57. .navbar-nav > li > a:after {
  58. content: '/';
  59. margin-left: 30px;
  60. color: #f5f5f5;
  61. }
  62. .navbar-nav > li:last-child > a:after {
  63. content: '';
  64. }
  65. .navbar-toggle {
  66. background: #111;
  67. }
  68. .navbar-toggle .icon-bar {
  69. background: #f5f5f5;
  70. }
  71. @media (max-width: 768px) {
  72. .navbar-nav > li > a {
  73. background: #111;
  74. border-radius: 4px;
  75. margin-bottom: 3px;
  76. }
  77. }
  78. @media (max-width: 768px) {
  79. .navbar-nav > li > a:after {
  80. content: '';
  81. }
  82. }
  83. .container-fluid .jumbotron {
  84. padding-left: 0;
  85. padding-right: 0;
  86. }
  87. .jumbotron {
  88. background: none;
  89. margin-top: 75px;
  90. margin-bottom: 75px;
  91. }
  92. .jumbotron h1 {
  93. font-size: 120px;
  94. }
  95. .jumbotron .lead {
  96. font-size: 32px;
  97. }
  98. @media (max-width: 992px) {
  99. .jumbotron h1 {
  100. font-size: 72px;
  101. }
  102. }
  103. @media (max-width: 768px) {
  104. .jumbotron h1 {
  105. font-size: 40px;
  106. }
  107. .jumbotron .lead {
  108. font-size: 20px;
  109. }
  110. }
  111. .portfolio-title {
  112. padding: 10px 15px;
  113. padding-left: 0;
  114. font-weight: bold;
  115. }
  116. .nav-pills>li.active>a,
  117. .nav-pills>li.active>a:hover,
  118. .nav-pills>li.active>a:focus {
  119. background: #111;
  120. color: #f5f5f5;
  121. }
  122. .nav-pills a {
  123. color: #f5f5f5;
  124. }
  125. .nav>li>a:hover, .nav>li>a:focus {
  126. background: none;
  127. color: #4e9af3;
  128. }
  129. .filterable-portfolio .nav-pills {
  130. margin-bottom: 1rem;
  131. }
  132. .portfolio-item {
  133. margin-bottom: 1rem;
  134. }
  135. .portfolio-item img {
  136. border-radius: 4px;
  137. -webkit-filter: grayscale(100%);
  138. filter: grayscale(100%);
  139. }
  140. .portfolio-item:hover img {
  141. box-shadow: 0 0 0 5px rgba(0,0,0,0.05);
  142. -webkit-filter: grayscale(50%);
  143. filter: grayscale(50%);
  144. }
  145. .filterable-portfolio,
  146. .single-post {
  147. margin-bottom: 3rem;
  148. }
  149. .posts {
  150. margin-bottom: 3rem;
  151. }
  152. .post {
  153. margin-bottom: 1rem;
  154. }
  155. .post img {
  156. border-radius: 4px;
  157. -webkit-filter: grayscale(100%);
  158. filter: grayscale(100%);
  159. margin-bottom: 1rem;
  160. }
  161. .post:hover img {
  162. -webkit-filter: grayscale(50%);
  163. filter: grayscale(50%);
  164. }
  165. .post-excerpt header h3 {
  166. margin-bottom: 0.25rem;
  167. }
  168. .post-excerpt header a {
  169. color: #f5f5f5;
  170. }
  171. .post-excerpt header a:hover {
  172. text-decoration: none;
  173. }
  174. .post-excerpt .post-meta {
  175. color: #838383;
  176. }
  177. .post-excerpt .post-meta a,
  178. .post-excerpt a {
  179. color: #838383;
  180. border-bottom: 1px dotted #111;
  181. }
  182. .post-excerpt .post-meta a:hover,
  183. .post-excerpt a:hover {
  184. color: #c1c1c1;
  185. border-bottom: 0;
  186. }
  187. .sidebar {
  188. margin-bottom: 1rem;
  189. }
  190. .sidebar .widget {
  191. margin-bottom: 3rem;
  192. }
  193. .sidebar ul {
  194. padding: 0;
  195. list-style: none;
  196. }
  197. .sidebar li {
  198. margin-bottom: 0.5rem;
  199. }
  200. .sidebar li a {
  201. color: #696969;
  202. }
  203. .sidebar li a:hover {
  204. text-decoration: none;
  205. border-bottom: 1px dotted #838383;
  206. }
  207. .recent-projects li {
  208. margin-bottom: 1rem;
  209. }
  210. .recent-projects img {
  211. border-radius: 4px;
  212. -webkit-filter: grayscale(100%);
  213. filter: grayscale(100%);
  214. }
  215. .recent-projects img:hover {
  216. -webkit-filter: grayscale(50%);
  217. filter: grayscale(50%);
  218. }
  219. .contact-form {
  220. background: #111;
  221. padding-top: 1em;
  222. padding-bottom: 1em;
  223. border-radius: 4px;
  224. margin-bottom: 3rem;
  225. }
  226. a {
  227. color: #4e9af3;
  228. }
  229. .site-footer {
  230. margin-bottom: 3rem;
  231. }
  232. .site-footer span {
  233. margin-right: 0.5em;
  234. }