Home | History | Annotate | Download | only in front_end
      1 /*
      2  * Copyright (c) 2014 The Chromium Authors. All rights reserved.
      3  * Use of this source code is governed by a BSD-style license that can be
      4  * found in the LICENSE file.
      5  */
      6 
      7 .pie-chart {
      8     position: relative;
      9 }
     10 
     11 .pie-chart-foreground {
     12     position: absolute;
     13     width: 100%;
     14     height: 100%;
     15     z-index: 10;
     16     top: 0;
     17     display: flex;
     18 }
     19 
     20 .pie-chart-total {
     21     margin: auto;
     22     padding: 2px 5px;
     23     background-color: rgba(255, 255, 255, 0.6);
     24 }
     25