Guest User

Untitled

a guest
Jan 21st, 2018
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.03 KB | None | 0 0
  1. * {
  2. margin: 0px;
  3. padding: 0px;
  4. border: 0px;
  5. line-height: 1;
  6. }
  7.  
  8. body {
  9. font-size: 12px;
  10. font-family: Arial;
  11. background: #fff;
  12. color: #444;
  13. }
  14.  
  15. section {
  16. display: block;
  17. position: absolute;
  18. z-index: 100;
  19. top: 100px;
  20. left: 100px;
  21. width: 400px;
  22. border: 1px solid #bbb;
  23. border-radius: 6px;
  24. box-shadow: 0px 0px 10px #ccc;
  25. background: #f3f3f3;
  26. }
  27.  
  28. section aside {
  29. display: block;
  30. overflow: auto;
  31. border-bottom: 1px solid #ccc;
  32. color: #999;
  33. }
  34.  
  35. section aside span {
  36. display: block;
  37. float: left;
  38. border-right: 1px solid #ddd;
  39. padding: 5px 7px;
  40. cursor: move;
  41. }
  42.  
  43. section aside a {
  44. display: block;
  45. float: right;
  46. border-left: 1px solid #ddd;
  47. padding: 5px 7px;
  48. cursor: pointer;
  49. }
  50.  
  51. section article {
  52. padding: 18px 20px 10px;
  53. display: block;
  54. }
  55.  
  56. section article h1 {
  57. margin-bottom: 30px;
  58. font-weight: normal;
  59. font-size: 20px;
  60. text-align: center;
  61. }
  62.  
  63. section article p {
  64. line-height: 1.5;
  65. padding-bottom: 12px;
  66. }
Add Comment
Please, Sign In to add comment