diff options
| author | Igor Minar | 2011-10-21 21:48:13 -0700 |
|---|---|---|
| committer | Igor Minar | 2011-10-22 21:32:47 -0700 |
| commit | ce73ed091b13aeef03b2061623512b87307cd251 (patch) | |
| tree | 0664231a22d5432c3ad783253e0aeba745e192c0 /docs/src/templates/docs.css | |
| parent | 90ac8d57b0d5ef68cb70486edf0590fff225a284 (diff) | |
| download | angular.js-ce73ed091b13aeef03b2061623512b87307cd251.tar.bz2 | |
feat(docs): add "Loading..." notification
Diffstat (limited to 'docs/src/templates/docs.css')
| -rw-r--r-- | docs/src/templates/docs.css | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/docs/src/templates/docs.css b/docs/src/templates/docs.css index c38252ff..4a2a7fb3 100644 --- a/docs/src/templates/docs.css +++ b/docs/src/templates/docs.css @@ -74,6 +74,31 @@ li { /*----- Global Layout -----*/ +#loading { + position: fixed; + left: 50%; + margin: 1.5em -40px; + width: 80px; + padding: 0.2em 0.2em; + text-align: center; + font-weight: bold; + font-size: 13px; + color: #FFFFFF; + border: 1px solid black; + background-color: #7989D6; + + -webkit-border-radius: 2px; + -moz-border-radius: 2px; + border-radius: 2px; + + -webkit-box-shadow: 0 2px 8px rgba(0,0,0,0.6); + -moz-box-shadow: 0 2px 8px rgba(0,0,0,0.6); + box-shadow: 0 2px 8px rgba(0,0,0,0.6); + + z-index: 2; /* just below #fader */ +} + + #container { width: 1150px; margin: 0 auto; |
