Advertisement
Guest User

Untitled

a guest
Jul 17th, 2019
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.68 KB | None | 0 0
  1. :root {
  2.     --void: #0e0b16;
  3.     --fuschia: #a239ca;
  4.     --jewel: #4717f6;
  5.     --stark: #e7dfdd;
  6. }
  7.  
  8. body {
  9.     margin: 0px;
  10. }
  11. h1  {
  12.     color: aqua;
  13. }
  14.  
  15. img {
  16.     width: 100%;
  17. }
  18.  
  19. /* Style for navbar */
  20. nav { width: 100%; height: 55px; background-color: var(--void);}
  21. nav a { display: block; float: left; font-family: Alegreya; font-weight: bold; text-decoration: none; color: var(--stark); padding: 20px 10px 10px 10px; background-color: blue}
  22. /* Style for all font awesome icons */
  23. .fa {
  24.     padding: 20px;
  25.     font-size: 30px;
  26.     width: 20px;
  27.     text-align: center;
  28.     text-decoration: none;
  29. }
  30. .fa:hover {
  31.     opacity: 0.7;
  32. }
  33. .icons {
  34.     line-height: 50px;
  35. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement