summaryrefslogtreecommitdiff
path: root/tabs-no-images.css
diff options
context:
space:
mode:
authorRichard Wall <richard@aziz>2010-06-13 23:44:36 +0100
committerRichard Wall <richard@aziz>2010-06-13 23:44:36 +0100
commitb6112f31a83b60a06347e4ad71b846dc145526eb (patch)
treea1d1c848876d4b85d8ad70000551107595d2a0cd /tabs-no-images.css
parente896666f593a644f534c447d843d0cc730163190 (diff)
Include a screenshot and move style to assets.
Diffstat (limited to 'tabs-no-images.css')
-rw-r--r--tabs-no-images.css62
1 files changed, 0 insertions, 62 deletions
diff --git a/tabs-no-images.css b/tabs-no-images.css
deleted file mode 100644
index 58a54b4..0000000
--- a/tabs-no-images.css
+++ /dev/null
@@ -1,62 +0,0 @@
-
-/* root element for tabs */
-ul.css-tabs {
- margin:0 !important;
- padding:0;
- height:30px;
- border-bottom:1px solid #666;
-}
-
-/* single tab */
-ul.css-tabs li {
- float:left;
- padding:0;
- margin:0;
- list-style-type:none;
-}
-
-/* link inside the tab. uses a background image */
-ul.css-tabs a {
- float:left;
- font-size:13px;
- display:block;
- padding:5px 30px;
- text-decoration:none;
- border:1px solid #666;
- border-bottom:0px;
- height:18px;
- background-color:#efefef;
- color:#777;
- margin-right:2px;
- -moz-border-radius-topleft: 4px;
- -moz-border-radius-topright:4px;
- position:relative;
- top:1px;
-}
-
-ul.css-tabs a:hover {
- background-color:#F7F7F7;
- color:#333;
-}
-
-/* selected tab */
-ul.css-tabs a.current {
- background-color:#ddd;
- border-bottom:2px solid #ddd;
- color:#000;
- cursor:default;
-}
-
-
-/* tab pane */
-.css-panes > div {
- display:none;
- border:1px solid #666;
- border-width:0 1px 1px 1px;
- min-height:150px;
- padding:15px 20px;
- background-color:#ddd;
-}
-
-
-