]> git.wh0rd.org - chrome-ext/clearhistory-advance-fork.git/blame - css/options.css
rewrite options page to be more chrome-like
[chrome-ext/clearhistory-advance-fork.git] / css / options.css
CommitLineData
a5409a6b
MF
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";
999b23e3 9div#optionsSaved {
a5409a6b
MF
10 clear: left;
11 margin: 10px auto 5px;
12 padding: 5px;
13 text-align: center;
14}
999b23e3 15div#optionsSaved b {
a5409a6b
MF
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}
999b23e3 25div#optionsSaved.show b {
a5409a6b
MF
26 opacity: 1;
27 -webkit-transition: opacity 50ms ease-in-out;
28}