Advertisement
Guest User

Untitled

a guest
Apr 30th, 2017
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.01 KB | None | 0 0
  1. .mapContainer {
  2.   flex: 1;
  3.   display: flex;
  4.   padding-right: 50px;
  5.   padding-top: 20px;
  6.   padding-bottom: 20px;
  7. }
  8.  
  9. #map {
  10.  flex: 1;
  11.  background-color: pink;
  12. }
  13.  
  14. .full {
  15.   display: flex;
  16.   height: 100%;
  17.   flex-direction: column;
  18. }
  19. .tableContainer {
  20.   padding-left: 50px;
  21.   padding-right: 50px;
  22.   padding-top: 20px;
  23.   width: 450px;
  24.   height: 500px;
  25.   overflow-y: scroll;
  26. }
  27.  
  28. .upper {
  29.   height: 225px;
  30.   display: flex;
  31.   flex-direction: column;
  32. }
  33.  
  34. .lower {
  35.   flex: 1;
  36.   display: flex;
  37. }
  38.  
  39. .access {
  40.   color: red;
  41. }
  42.  
  43.  
  44. .segment {
  45.   flex: 1 !important;
  46. }
  47.  
  48. .inner1, .inner2 {
  49.   flex:1;
  50.   display: flex;
  51.   align-items: center;
  52.   justify-content: center;
  53.   padding-left: 25px;
  54.   padding-right: 25px;
  55. }
  56.  
  57. .mic {
  58.   display: flex;
  59.    justify-content: center;
  60.    align-items: center;
  61.  
  62. }
  63.  
  64.  
  65. .textSpoken {
  66.   text-align: center;
  67.  
  68.   flex: 1;
  69. }
  70.  
  71. .inner1 {
  72.   text-align: center;
  73. }
  74.  
  75. #header {
  76.   text-align: center;
  77.   font-size: 24px;
  78.   padding-top: 15px;
  79.   padding-bottom: 15px;
  80. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement