Advertisement
Mokiienko

Untitled

Feb 4th, 2020
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.70 KB | None | 0 0
  1. html, body {
  2. margin: 0;
  3. padding: 0;
  4. min-height: 100%;
  5. height: 100%;
  6. font-size: 12px;
  7. font-family: Arial;
  8. }
  9.  
  10. body > div {
  11. border: 1px solid grey;
  12. width: 80%;
  13. margin: 20px auto;
  14. padding: 10px;
  15. border-radius: 5px;
  16. }
  17.  
  18. body > div:after {
  19. content: " ";
  20. display: block;
  21. clear: both;
  22. }
  23.  
  24. a {
  25. color: blue;
  26. }
  27.  
  28. a:hover {
  29. color: red;
  30. }
  31.  
  32. ul {
  33. padding-left: 10px;
  34. margin: 0;
  35. list-style-type: circle;
  36. }
  37.  
  38. h1 {
  39. text-align: center;
  40. }
  41.  
  42. .left {
  43. float: left;
  44. width: 300px;
  45. height: 150px;
  46. border-right: 1px solid silver;
  47. }
  48.  
  49. .right {
  50. padding: 10px 10px 10px 310px;
  51. font-size: 0.9em;
  52. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement