]> git.wh0rd.org Git - chrome-ext/clearhistory-advance-fork.git/blob - css/options.css
convert to MV3
[chrome-ext/clearhistory-advance-fork.git] / css / options.css
1 /* Copyright 2011 Google Inc. All Rights Reserved. */
2
3 /**
4  * @fileoverview The styles for elements of the options page
5  * @author arunjit@google.com (Arunjit Singh)
6  */
7
8 @CHARSET "UTF-8";
9 div#optionsSaved {
10   clear: left;
11   margin: 10px auto 5px;
12   padding: 5px;
13   text-align: center;
14 }
15 div#optionsSaved b {
16   background-color: #f9edbe;
17   border: 1px solid #f0c36d;
18   border-radius: 2px;
19   color: #333;
20   font-weight: normal;
21   opacity: 0;
22   padding: 6px 16px;
23   -webkit-transition: opacity 130ms ease-in-out;
24 }
25 div#optionsSaved.show b {
26   opacity: 1;
27   -webkit-transition: opacity 50ms ease-in-out;
28 }