Advertisement
Guest User

Untitled

a guest
Dec 8th, 2016
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.90 KB | None | 0 0
  1. /**
  2. * Transit Popups
  3. */
  4.  
  5.  
  6. html, body {
  7. margin: 0;
  8. height: 100%;
  9. font-family: Verdana
  10. }
  11.  
  12. .popup {
  13. height: calc(100% - 42px);
  14. position: absolute;
  15. top: 42px;
  16. right: 0;
  17. width: 300px;
  18. margin: auto;
  19.  
  20. background-color: #15343D;
  21. color: #fff;
  22. }
  23.  
  24. .transit {
  25. background-color: #2D4951;
  26. }
  27.  
  28. .transit-listing {
  29. display: flex;
  30. flex-direction: row;
  31. justify-content: space-between;
  32. width: 100%;
  33. box-sizing: border-box;
  34. padding: 5px;
  35. }
  36.  
  37.  
  38. .transit-listing-icon-container {
  39. width: 42px;
  40. height: 42px;
  41. display: flex;
  42. align-items: center;
  43. justify-content: center;
  44. }
  45. .transit-listing-icon {
  46. width: 42px;
  47. height: 26px;
  48. }
  49.  
  50. .transit-listing-details {
  51. flex-grow:1;
  52. overflow: hidden;
  53. white-space: nowrap;
  54.  
  55. }
  56.  
  57. .transit-listing-details h3 { margin: 0;}
  58. .transit-listing-details p { margin: 0;}
  59.  
  60. .transit-listing-times {
  61. flex-grow:0;
  62. height: 100%;
  63. padding-left:4px;
  64. width: 195px;
  65. box-shadow: -4px 0 5px -2px #2D4951;
  66. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement