Advertisement
Kyleighmcc

current

Aug 22nd, 2017
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.49 KB | None | 0 0
  1. body {
  2.    background-image: url("https://cdn.pixabay.com/photo/2017/08/21/07/23/roses-2664338_960_720.jpg");
  3.    background-repeat: no-repeat;
  4.    background-size: cover;
  5.    color: white;
  6.         }
  7.        
  8. #mainHeader {
  9.     color: white;
  10.     font-family: 'Dancing Script', cursive;
  11.     letter-spacing: 0.3 em;
  12.     text-align: center;
  13.     font-size: 70px;
  14.     border: solid;
  15.     width: 500px;
  16.     margin-left: auto;
  17.     margin-right: auto;
  18. }
  19. #mainHeader:hover {
  20.     color: rgba(249, 109, 151, 0.8);
  21. }
  22.    
  23.        
  24. ul {
  25.     margin: 0px;
  26.     padding: 0px;
  27.     list-style: none;
  28.     margin: auto;
  29.     width: 100%;
  30. }
  31. li {
  32.     width: 120px;
  33.     height: 40px;
  34.     margin: 0px 20px;
  35. }
  36.    
  37.  
  38. ul li a {
  39.     width: 100px;
  40.     height: 40px;
  41.     font-family: 'Amatic SC', cursive;
  42.     opacity: 0.8;
  43.     line-height: 40px;
  44.     text-align: center;
  45.     font-size: 20px;
  46.     font-weight: bold;
  47.     text-decoration: none;
  48.     color: white;
  49.     display: block;
  50. }
  51.    
  52.  
  53. ul li a:hover {
  54.     background-color: rgb(249, 109, 151);
  55.     color: black;  
  56.     font-weight: bold;
  57. }
  58.  
  59.  
  60. #aboutMe {
  61.     text-align: center;
  62.     color: rgba(249, 109, 151, 0.8);
  63.     font-family: 'Amatic SC', cursive;
  64.     font-size: 25px;
  65.     font-weight: bold;
  66.     letter-spacing: 0.5em;
  67.    
  68. }
  69. .accountantVids {
  70.     margin: 10px auto;
  71. }
  72.  
  73.  
  74. .nav {
  75.     position: relative;
  76.     right: 2px;
  77.     border: solid;
  78.     float: right!important;
  79.     width: 100%;
  80.  
  81. }
  82.    
  83. .aboutMeSection {
  84.     background-color: white;
  85.     width: 500px;
  86.     height: 600px;
  87.     overflow: scroll;
  88.     margin-left: 430px;
  89.     margin-right: 430px;
  90.    
  91. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement