Advertisement
Guest User

Untitled

a guest
May 23rd, 2018
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.13 KB | None | 0 0
  1. /* You can add global styles to this file, and also import other style files */
  2. .selected {
  3.     background-color: #CFD8DC !important;
  4.     color: 'white';
  5. }
  6.  
  7. .courses {
  8.     margin: 0 0 2em 0;
  9.     list-style-type: none;
  10.     padding: 0;
  11.     width: 15em;
  12. }
  13.  
  14. .courses li {
  15.     cursor: pointer;
  16.     position: relative;
  17.     left: 0;
  18.     background-color: #EEE;
  19.     margin: .5em;
  20.     padding: .3em 0;
  21.     height: 1.6em;
  22.     border-radius: 4px;
  23. }
  24.  
  25. .courses li.selected:hover {
  26.     background-color: #BBD8DC !important;
  27.     color: white;
  28. }
  29.  
  30. .courses li:hover {
  31.     color: #607D8B;
  32.     background-color: #DDD;
  33.     left: .1em;
  34. }
  35.  
  36. .courses .text {
  37.     position: relative;
  38.     top: -3px;
  39. }
  40.  
  41. .courses .badge {
  42.     display: inline-block;
  43.     font-size: small;
  44.     color: white;
  45.     padding: 0.8em 0.7em 0 0.7em;
  46.     background-color: #607D8B;
  47. line-height: 1em;
  48.     position: relative;
  49.     left: -1px;
  50.     top: -4px;
  51.     height: 1.8em;
  52.     margin-right: .8em;
  53.     border-radius: 4px 0 0 4px;
  54. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement