Home | History | Annotate | Download | only in about_tracing
      1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved.
      2  * Use of this source code is governed by a BSD-style license that can be
      3  * found in the LICENSE file.
      4  */
      5 
      6 .tracing-overlay {
      7   -webkit-box-align: center;
      8   -webkit-box-orient: vertical;
      9   -webkit-box-pack: center;
     10   display: -webkit-box;
     11   height: 80px;
     12   text-align: center;
     13   width: 200px;
     14 }
     15 
     16 .tracing-start-button {
     17   -webkit-margin-start: 5px;
     18   background: rgb(255, 0, 0);
     19   background-clip: border-box;
     20   border: 1px solid black;
     21   border-bottom: 0;
     22   border-top-left-radius: 8px;
     23   border-top-right-radius: 8px;
     24   display: inline-block;
     25   margin-top: 4px;
     26   padding: 5px 10px 3px 10px;
     27   position: fixed;
     28   right: 3px;
     29   text-align: center;
     30   text-decoration: none;
     31   top: -1px;
     32 }
     33