Guest User

Untitled

a guest
Nov 24th, 2017
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.26 KB | None | 0 0
  1. <main>
  2. <section id="results">
  3. <ul>
  4. <li class="term-list">
  5. <dl>
  6. <dt class="term">hello</dt>
  7. <dd class="pronounce">[ <strong>he</strong>-lo ]</dd>
  8. </dl>
  9. </li>
  10. <li class="term-list">
  11. <dl>
  12. <dt class="term">word</dt>
  13. <dd class="pronounce">[ <strong>wurd</strong> ]</dd>
  14. </dl>
  15. </li>
  16. <li class="term-list">
  17. <dl>
  18. <dt class="term">another</dt>
  19. <dd class="pronounce">[ uh-<strong>nuth</strong>-er ]</dd>
  20. </dl>
  21. </li>
  22. <li class="term-list">
  23. <dl>
  24. <dt class="term">aviation</dt>
  25. <dd class="pronounce">[ ay-vee-<strong>ay</strong>-shun ]</dd>
  26. </dl>
  27. </li>
  28. <li class="term-list">
  29. <dl>
  30. <dt class="term">hello</dt>
  31. <dd class="pronounce">[ <strong>he</strong>-lo ]</dd>
  32. </dl>
  33. </li>
  34. </ul>
  35. </section>
  36. </main>
  37.  
  38. .term-list {
  39. border-top: 1px solid gray;
  40. color: gray;
  41. padding: 15px 10px;
  42. }
  43.  
  44. .term-list:last-child {
  45. border-bottom: 1px solid gray;
  46. }
  47.  
  48. .term-list:hover,
  49. .term-list:hover + .term-list {
  50. border-top: 1px solid white;
  51. -webkit-transition: border-top .2s ease-in-out;
  52. -moz-transition: border-top .2s ease-in-out;
  53. -ms-transition: border-top .2s ease-in-out;
  54. -o-transition: border-top .2s ease-in-out;
  55. transition: border-top .2s ease-in-out;
  56. }
  57.  
  58. .term-list:hover {
  59. color: white;
  60. -webkit-transition: color .2s ease-in-out;
  61. -moz-transition: color .2s ease-in-out;
  62. -ms-transition: color .2s ease-in-out;
  63. -o-transition: color .2s ease-in-out;
  64. transition: color .2s ease-in-out;
  65. cursor: pointer;
  66. }
  67.  
  68. .term-list:hover::last-child {
  69. border-bottom: 1px solid white;
  70. -webkit-transition: border-bottom .2s ease-in-out;
  71. -moz-transition: border-bottom .2s ease-in-out;
  72. -ms-transition: border-bottom .2s ease-in-out;
  73. -o-transition: border-bottom .2s ease-in-out;
  74. transition: border-bottom .2s ease-in-out;
  75. }
  76.  
  77. .term-list:hover dl::after {
  78. content: "";
  79. display: inline-block;
  80. position: absolute;
  81. right: 5px;
  82. top: 50%;
  83. margin-top: -20px;
  84. width: 40px;
  85. height: 40px;
  86. background-size: 40px 40px;
  87. background: url("https://preview.c9users.io/patbrennan/demo-project/launchschool/249/dictionary/images/arrow-right.png") 0 0 no-repeat;
  88. }
Add Comment
Please, Sign In to add comment