roundedpanel.css 499 B

1234567891011121314151617181920212223242526272829
  1. /*
  2. * Copyright 2010 The Closure Library Authors. All Rights Reserved.
  3. *
  4. * Use of this source code is governed by the Apache License, Version 2.0.
  5. * See the COPYING file for details.
  6. */
  7. /*
  8. * Standard styles for RoundedPanel.
  9. *
  10. * @author pallosp@google.com (Peter Pallos)
  11. */
  12. .goog-roundedpanel {
  13. position: relative;
  14. z-index: 0;
  15. }
  16. .goog-roundedpanel-background {
  17. position: absolute;
  18. left: 0;
  19. top: 0;
  20. width: 100%;
  21. height: 100%;
  22. z-index: -1;
  23. }
  24. .goog-roundedpanel-content {
  25. }