diff options
author | Jeff Mitchell <etherpad@jefferai.org> | 2010-04-07 18:47:02 -0400 |
---|---|---|
committer | Jeff Mitchell <etherpad@jefferai.org> | 2010-04-07 18:47:02 -0400 |
commit | 184e0325bee6cad58b00f40193ec584e5988b107 (patch) | |
tree | 503684b0c9b38f5781abfa0209b1d1b449bbc323 | |
parent | 25e821ece450b366990c7c353ec00261d9bbc5a5 (diff) | |
download | etherpad-184e0325bee6cad58b00f40193ec584e5988b107.tar.gz etherpad-184e0325bee6cad58b00f40193ec584e5988b107.tar.xz etherpad-184e0325bee6cad58b00f40193ec584e5988b107.zip |
Put in CSS to show the new teamsite link in a different color. I think the color chosen goes together pretty well, but more importantly it makes it immediately obvious that they are two buttons that do two different things. Plus, variety is
the spice of life :-)
-rw-r--r-- | etherpad/src/static/css/home-opensource.css | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/etherpad/src/static/css/home-opensource.css b/etherpad/src/static/css/home-opensource.css index 82f15da..26387de 100644 --- a/etherpad/src/static/css/home-opensource.css +++ b/etherpad/src/static/css/home-opensource.css @@ -24,3 +24,17 @@ background: #26b; } +#home a#home-newteamsite { + display: block; + padding: 1em; + margin: 12px 60px; + font-size: 1.6em; + border: 1px solid black; + background: #940; + color: #fff; +} + +#home a#home-newteamsite:hover { + background: #b26; +} + |