PaulCastellano

style

Sep 23rd, 2018
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.92 KB | None | 0 0
  1. #item-list ul {
  2.   padding: 0;
  3.   margin: 20px 0;
  4.   font-family: Arial, sans serif;
  5.   color: #555;
  6. }
  7.  
  8. #item-list ul > li {
  9.   list-style: none;
  10.   border-top: 1px solid #ddd;
  11.   display: block;
  12.   padding: 15px;
  13.   overflow: hidden;
  14. }
  15.  
  16. #item-list ul:last-child {
  17.   border-bottom: 1px solid #ddd;
  18. }
  19.  
  20. #item-list ul > li:hover {
  21.   background: #151821;
  22. }
  23.  
  24. .button {
  25.   padding: 8px 12px;
  26.   font-size: 14px;
  27.   background: #ccc;
  28.   display: block:
  29.   width: 200px;
  30.   border-radius: 3px;
  31.   cursor: pointer;
  32. }
  33.  
  34. .expand {
  35.   display: block;
  36.   text-decoration: none;
  37.   color: #555;
  38.   cursor: pointer;
  39. }
  40.  
  41. h2 {
  42.   padding: 0;
  43.   margin: 0 0 5px 0;
  44.   font-size: 18px;
  45. }
  46.  
  47. span {
  48.   font-size: 14px;
  49. }
  50.  
  51. .detail {
  52.   margin: 20px 0 0 0;
  53.   display: none;
  54.   line-height: 22px;
  55. }
  56.  
  57. .right-arrow {
  58.   width: 10px;
  59.   height: 10px;
  60.   float: left;
  61.   font-weight: bold;
  62.   font-size: 20px;
  63.   margin: 15px 15px 0 0;
  64. }
Add Comment
Please, Sign In to add comment