Personal portfolio website created with bootstrap.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

44 lines
740 B

  1. // Styling for the masthead
  2. header.masthead {
  3. padding-top: 100px;
  4. padding-bottom: 50px;
  5. text-align: center;
  6. color: white;
  7. background: $theme-success;
  8. img {
  9. display: block;
  10. margin: 0 auto 20px;
  11. }
  12. .intro-text {
  13. .name {
  14. font-family: 'Montserrat', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  15. font-size: 2em;
  16. font-weight: 700;
  17. display: block;
  18. text-transform: uppercase;
  19. }
  20. .skills {
  21. font-size: 1.25em;
  22. font-weight: 300;
  23. }
  24. }
  25. }
  26. @media(min-width:768px) {
  27. header.masthead {
  28. padding-top: 200px;
  29. padding-bottom: 100px;
  30. .intro-text {
  31. .name {
  32. font-size: 4.75em;
  33. }
  34. .skills {
  35. font-size: 1.75em;
  36. }
  37. }
  38. }
  39. }