Advertisement
Guest User

Untitled

a guest
Jun 26th, 2019
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.47 KB | None | 0 0
  1. body {
  2. background-color: lightblue;
  3. font-family: 'Raleway', sans-serif;
  4. }
  5. nav {
  6. background-color: grey;
  7. position: fixed;
  8. top: 0;
  9. left: 0;
  10. height: 50px;
  11. width: 100vw;
  12. z-index: 1;
  13. }
  14. nav ul li {
  15. float: right;
  16. margin-right: 50px;
  17. list-style-type: none;
  18. text-align: center;
  19. }
  20. #brand {
  21. float: left;
  22. }
  23. .nav-link {
  24. color: darkred;
  25. text-decoration: none;
  26. font-family: 'Acme', sans-serif;
  27. }
  28. .nav-link:hover {
  29. color: green;
  30. font-weight: bold;
  31. }
  32. #brand .nav-link {
  33. color: lightblue;
  34. font-size: 14pt;
  35. }
  36. #brand .nav-link:hover {
  37. color: darkgreen;
  38. }
  39. h1 {
  40. font-size: 40pt;
  41. }
  42. #home {
  43. margin-top: 50px;
  44. position: relative;
  45. left: -8px;
  46. width: 100vw;
  47. height: 30vh;
  48. padding-top: 3em;
  49. background: url('https://images.unsplash.com/photo-1485470733090-0aae1788d5af?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=1091&q=80') center 75% no-repeat fixed;
  50. background-size: cover;
  51. }
  52. .header-tag {
  53. text-align: center;
  54. color: darkred;
  55. text-shadow: 2px 2px 2px #FF9481;
  56. }
  57. h3.header-tag {
  58. margin-top: -30px;
  59. font-size: 18pt;
  60. }
  61. h2 {
  62. color: darkred;
  63. }
  64. .main {
  65. text-align: center;
  66. }
  67. #about {
  68. margin-top: 50px;
  69. display: inline-block;
  70. }
  71. #about-picture {
  72. width: 30vw;
  73. float: left;
  74. }
  75. #profile-pic {
  76. height: 300px;
  77. width: 300px;
  78. object-fit: cover;
  79. border-radius: 150px;
  80. box-shadow: 2px 2px 2px grey;
  81. }
  82. #about-content {
  83. width: 40vw;
  84. float: right;
  85. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement