1. .Profiler {
    
  2.   width: 100%;
    
  3.   height: 100%;
    
  4.   position: relative;
    
  5.   display: flex;
    
  6.   flex-direction: row;
    
  7.   align-items: stretch;
    
  8.   font-family: var(--font-family-sans);
    
  9.   font-size: var(--font-size-sans-normal);
    
  10.   background-color: var(--color-background);
    
  11.   color: var(--color-text);
    
  12. }
    
  13. 
    
  14. .Profiler, .Profiler * {
    
  15.   box-sizing: border-box;
    
  16.   -webkit-font-smoothing: var(--font-smoothing);
    
  17. }
    
  18. 
    
  19. .LeftColumn {
    
  20.   display: flex;
    
  21.   flex-direction: column;
    
  22.   flex: 2 1 200px;
    
  23.   border-top: 1px solid var(--color-border);
    
  24. }
    
  25. 
    
  26. .RightColumn {
    
  27.   display: flex;
    
  28.   flex-direction: column;
    
  29.   flex: 1 1 100px;
    
  30.   max-width: 300px;
    
  31.   overflow-x: hidden;
    
  32.   border-left: 1px solid var(--color-border);
    
  33.   border-top: 1px solid var(--color-border);
    
  34. }
    
  35. 
    
  36. .Content {
    
  37.   position: relative;
    
  38.   flex: 1 1 auto;
    
  39.   display: flex;
    
  40.   flex-direction: column;
    
  41.   align-items: center;
    
  42.   justify-content: center;
    
  43. }
    
  44. 
    
  45. .Column {
    
  46.   display: flex;
    
  47.   flex-direction: column;
    
  48.   align-items: center;
    
  49.   justify-content: center;
    
  50.   padding: 0 1rem;
    
  51. }
    
  52. 
    
  53. .Paragraph {
    
  54.   text-align: center;
    
  55. }
    
  56. 
    
  57. .Row {
    
  58.   display: flex;
    
  59.   flex-direction: row;
    
  60.   align-items: center;
    
  61.   justify-content: center;
    
  62. }
    
  63. 
    
  64. .LearnMoreRow {
    
  65.   margin-top: 1rem;
    
  66.   color: var(--color-dim);
    
  67.   font-size: var(--font-size-sans-small);
    
  68. }
    
  69. 
    
  70. .Header {
    
  71.   font-size: var(--font-size-sans-large);
    
  72.   margin-bottom: 0.5rem;
    
  73. }
    
  74. 
    
  75. .Toolbar {
    
  76.   height: 2.25rem;
    
  77.   padding: 0 0.25rem;
    
  78.   flex: 0 0 auto;
    
  79.   display: flex;
    
  80.   align-items: center;
    
  81.   border-bottom: 1px solid var(--color-border);
    
  82. }
    
  83. 
    
  84. .VRule {
    
  85.   height: 20px;
    
  86.   width: 1px;
    
  87.   border-left: 1px solid var(--color-border);
    
  88.   padding-left: 0.25rem;
    
  89.   margin-left: 0.25rem;
    
  90. }
    
  91. 
    
  92. .Spacer {
    
  93.   flex: 1;
    
  94. }
    
  95. 
    
  96. .StopRecordingButton {
    
  97.   font-size: var(--font-size-sans-large);
    
  98.   padding: 0.5rem;
    
  99. }
    
  100. 
    
  101. .ContentFallback {
    
  102.   width: 100%;
    
  103.   height: 100%;
    
  104.   display: flex;
    
  105.   align-items: center;
    
  106.   justify-content: center;
    
  107.   font-size: var(--font-size-sans-large);
    
  108.   color: var(--color-dim);
    
  109. }
    
  110. 
    
  111. .SnapshotSelectorFallback {
    
  112.   height: 100%;
    
  113.   padding-left: 0.5rem;
    
  114.   display: flex;
    
  115.   align-items: center;
    
  116.   justify-content: center;
    
  117.   font-size: var(--font-size-sans-large);
    
  118.   color: var(--color-dim);
    
  119. }
    
  120. 
    
  121. .Link {
    
  122.   color: var(--color-button);
    
  123. }
    
  124. 
    
  125. .TimelineSearchInputContainer {
    
  126.   flex: 1 1;
    
  127.   display: flex;
    
  128.   align-items: center;
    
  129. }
    
  130. 
    
  131. .LearnMoreLink {
    
  132.   color: var(--color-link);
    
  133.   margin-left: 0.25rem;
    
  134.   margin-right: 0.25rem;
    
  135. }