diff options
| author | Vojta Jina | 2011-05-24 00:49:33 +0200 |
|---|---|---|
| committer | Igor Minar | 2011-06-06 22:52:01 -0700 |
| commit | 2da07127e45312ce22d894aa771b8797e9a301a1 (patch) | |
| tree | cc588b8fbdb5792c908b2b216bc9b9ab12c84663 /docs/src/templates/doc_widgets.css | |
| parent | d05e83992023c0aa8c663ac187529abf45dfe533 (diff) | |
| download | angular.js-2da07127e45312ce22d894aa771b8797e9a301a1.tar.bz2 | |
Add doc:tutorial-instructions widget
Diffstat (limited to 'docs/src/templates/doc_widgets.css')
| -rw-r--r-- | docs/src/templates/doc_widgets.css | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/docs/src/templates/doc_widgets.css b/docs/src/templates/doc_widgets.css index 9f007f0e..4f759a8b 100644 --- a/docs/src/templates/doc_widgets.css +++ b/docs/src/templates/doc_widgets.css @@ -33,3 +33,54 @@ li.doc-example-live { div.syntaxhighlighter { padding-bottom: 1px !important; /* fix to remove unnecessary scrollbars http://is.gd/gSMgC */ } + +/* TABS - tutorial environment navigation */ + +div.tabs-nav { + height: 25px; + position: relative; +} + +div.tabs-nav ul li { + list-style: none; + display: inline-block; + padding: 5px 10px; +} + +div.tabs-nav ul li.current a { + color: white; + text-decoration: none; +} + +div.tabs-nav ul li.current { + background: #7989D6; + -moz-box-shadow: 4px 4px 6px #48577D; + -moz-border-radius-topright: 8px; + -moz-border-radius-topleft: 8px; + box-shadow: 4px 4px 6px #48577D; + border-radius-topright: 8px; + border-radius-topleft: 8px; + -webkit-box-shadow: 4px 4px 6px #48577D; + -webkit-border-top-right-radius: 8px; + -webkit-border-top-left-radius: 8px; + border-top-right-radius: 8px; + border-top-left-radius: 8px; +} + +div.tabs-content { + padding: 4px; + position: relative; + background: #7989D6; + -moz-border-radius: 8px; + border-radius: 8px; + -webkit-border-radius: 8px; +} + +div.tabs-content-inner { + margin: 1px; + padding: 10px; + background: white; + border-radius: 6px; + -moz-border-radius: 6px; + -webkit-border-radius: 6px; +} |
