Advertisement
Guest User

Untitled

a guest
Dec 8th, 2019
153
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.85 KB | None | 0 0
  1. .background-white {
  2.     background: white;
  3. }
  4.  
  5. .background-blue {
  6.    background: lightblue;
  7. }
  8.  
  9. * {
  10.     margin: 0;
  11.     padding: 0;
  12.     box-sizing: border-box;
  13. }
  14.  
  15.  
  16. html {
  17.     font-family: 'Roboto';
  18.     font-size: 10px;
  19. }
  20.  
  21. body {
  22.     font-size: 1.6rem;
  23. }
  24.  
  25. .profile-photo {
  26.     height: 100px;
  27. }
  28. .portfolio {
  29.     color: #646464;
  30. }
  31.  
  32. a {
  33.     text-decoration: none;
  34. }
  35.  
  36. ul li {
  37.     list-style: none;
  38. }
  39.  
  40. ul li a {
  41.     display: block;
  42.     width: 100%;
  43.     color: white;
  44.     padding: 1.5rem
  45. }
  46.  
  47. ul li a:hover {
  48.     background: #2e4774;
  49. }
  50.  
  51. main {
  52.     min-width: 110rem;
  53.     min-height: calc(100vh - 14.5rem);
  54.     padding-left: 1.5rem;
  55.     padding-right: 1.5rem;
  56.     padding: 0 1.5rem 0 1.5rem;
  57. }
  58.  
  59. .weather {
  60.     height: 15rem;
  61.     width: 30rem;
  62.     margin: 1rem auto;
  63.     padding: 1rem;
  64.     border: 0.5rem solid #4267b2;
  65. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement