Advertisement
Guest User

Untitled

a guest
Jun 16th, 2019
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.14 KB | None | 0 0
  1. body {
  2. margin: 0;
  3. background: #F2F2F2;
  4. font-family: 'Montserrat', sans-serif;
  5. height: 100vh;
  6. }
  7.  
  8. #container { display: grid;
  9. grid-template-columns: 70px auto;
  10. height: 100%;
  11.  
  12. #content {
  13. padding: 30px 50px;
  14.  
  15. ul {//error highlight saying: colon expected css(css-colonexpected)
  16.  
  17. list-style-type: none;
  18. margin:0;padding:0;
  19.  
  20. li {
  21. background: #fff;
  22. border-radius: 8px;
  23. padding: 20px;
  24. margin-bottom: 8px;
  25.  
  26. a {
  27. font-size: 1.5em;
  28. text-decoration: none;
  29. font-weight: bold;
  30. color:#00A8FF;
  31. }
  32.  
  33. ul {
  34. margin-top: 20px;
  35.  
  36. li {
  37. padding:0;
  38.  
  39. a {
  40. font-size: 1em;
  41. font-weight: 300;
  42. }//Error highlight saying: at-rule or selector expected css(css-ruleselectorexpected)
  43. }
  44. }
  45. }
  46. }
  47. }
  48. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement