/mizuxe2017/scss/_base.scss

https://bitbucket.org/Trulsh/personal-bootstrap-projects · Sass · 55 lines · 45 code · 9 blank · 1 comment · 0 complexity · 164e92fc9b13093baa9e05b06d213994 MD5 · raw file

  1. //main: style.scss
  2. body{
  3. margin-top: 105px;
  4. }
  5. .navbar{
  6. box-shadow: 2px 2px 5px $primary;
  7. opacity: 0.9;
  8. background: #fff;
  9. .nav-item{
  10. font-size: 1.4re;
  11. padding-right: 20px;
  12. }
  13. }
  14. #showcase{
  15. position: relative;
  16. background: url("../images/mountains.jpg") no-repeat;
  17. min-height: 600px;
  18. .primary-overlay{
  19. background: $primary-overlay;
  20. position: absolute;
  21. top: 0;
  22. left: 0;
  23. width: 100%;
  24. height: 100%;
  25. }
  26. }
  27. .info-header{
  28. width: 50%;
  29. margin: auto;
  30. border-bottom: 1px #ddd solid;
  31. }
  32. #authors{
  33. img{
  34. margin-top: -50px;
  35. }
  36. .fa{
  37. font-size: 25px;
  38. }
  39. .card:hover{
  40. background: $primary;
  41. color: #fff;
  42. .fa{
  43. color: #fff;
  44. }
  45. }
  46. }