style.css 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. *{
  2. margin: auto;
  3. }
  4. .top-menu{
  5. border-bottom: 2px solid;
  6. border-color: rgb(125, 125, 125);
  7. width: 100%;
  8. }
  9. .top-menu-button-div{
  10. background-color: rgb(89, 205, 18);
  11. margin: 0.2%;
  12. padding: 0.5%;
  13. border-radius: 5px;
  14. text-align: center;
  15. width: 10%;
  16. float: right;
  17. overflow: hidden;
  18. font-size: 1em;
  19. font-family: 'Helvetica Neue', Helvetica;
  20. white-space: nowrap;
  21. text-decoration: none;
  22. text-shadow: 1px 1px rgb(143, 143, 143);
  23. color: rgb(255, 255, 255);
  24. }
  25. .top-menu-button-div:hover{
  26. color: rgb(0, 0, 0);
  27. }
  28. #top-menu-div-buttons{
  29. width: 79%;
  30. display: inline-block;
  31. vertical-align: bottom;
  32. }
  33. #top-menu-h1-div{
  34. vertical-align: bottom;
  35. display: inline-block;
  36. width: 20%;
  37. margin-left: 0.5%;
  38. }
  39. #top-github-icon{
  40. width: 2em;
  41. float: right;
  42. margin-right: 0.5%;
  43. }
  44. #top-github-icon:hover{
  45. fill: red;
  46. }
  47. #middle-name-web-developer{
  48. font-family: Lucida Console;
  49. width: 100%;
  50. margin-top: 3%;
  51. text-align: center;
  52. }
  53. #img-onboard{
  54. width: 100%;
  55. height: 500px;
  56. background-image: url("../img/mac-on-a-table.jpg");
  57. background-repeat: no-repeat;
  58. background-attachment: fixed;
  59. background-size: cover;
  60. }