web/static/ldt/css/tabs.css
author wakimd
Tue, 16 Nov 2010 14:15:07 +0100
changeset 9 22ab430e9b64
permissions -rw-r--r--
Corrections on models and general structure
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
9
22ab430e9b64 Corrections on models and general structure
wakimd
parents:
diff changeset
     1
/* -----------------------------------------------------------------------
22ab430e9b64 Corrections on models and general structure
wakimd
parents:
diff changeset
     2
 Taken from:
22ab430e9b64 Corrections on models and general structure
wakimd
parents:
diff changeset
     3
22ab430e9b64 Corrections on models and general structure
wakimd
parents:
diff changeset
     4
 Tabs Plugin 0.2 for the Blueprint CSS Framework
22ab430e9b64 Corrections on models and general structure
wakimd
parents:
diff changeset
     5
 http://blueprintcss.org
22ab430e9b64 Corrections on models and general structure
wakimd
parents:
diff changeset
     6
22ab430e9b64 Corrections on models and general structure
wakimd
parents:
diff changeset
     7
   * Copyright (c) 2008-Present. Refer to the main Blueprint license.
22ab430e9b64 Corrections on models and general structure
wakimd
parents:
diff changeset
     8
   * See README for instructions on how to use this plugin.
22ab430e9b64 Corrections on models and general structure
wakimd
parents:
diff changeset
     9
   * For credits and origins, see AUTHORS.
22ab430e9b64 Corrections on models and general structure
wakimd
parents:
diff changeset
    10
22ab430e9b64 Corrections on models and general structure
wakimd
parents:
diff changeset
    11
----------------------------------------------------------------------- */
22ab430e9b64 Corrections on models and general structure
wakimd
parents:
diff changeset
    12
@charset "UTF-8";
22ab430e9b64 Corrections on models and general structure
wakimd
parents:
diff changeset
    13
22ab430e9b64 Corrections on models and general structure
wakimd
parents:
diff changeset
    14
.tabs { 
22ab430e9b64 Corrections on models and general structure
wakimd
parents:
diff changeset
    15
	height:auto; 
22ab430e9b64 Corrections on models and general structure
wakimd
parents:
diff changeset
    16
	margin:0;
22ab430e9b64 Corrections on models and general structure
wakimd
parents:
diff changeset
    17
	overflow:hidden;
22ab430e9b64 Corrections on models and general structure
wakimd
parents:
diff changeset
    18
	padding-left:0; 
22ab430e9b64 Corrections on models and general structure
wakimd
parents:
diff changeset
    19
}
22ab430e9b64 Corrections on models and general structure
wakimd
parents:
diff changeset
    20
* html .tabs { height:1%; /* fixing IE 6 */ }
22ab430e9b64 Corrections on models and general structure
wakimd
parents:
diff changeset
    21
.tabs li {
22ab430e9b64 Corrections on models and general structure
wakimd
parents:
diff changeset
    22
  background: #707070 url("../img/tabsright_normal.png") no-repeat right center;
22ab430e9b64 Corrections on models and general structure
wakimd
parents:
diff changeset
    23
  border-bottom:none;
22ab430e9b64 Corrections on models and general structure
wakimd
parents:
diff changeset
    24
  float:left;
22ab430e9b64 Corrections on models and general structure
wakimd
parents:
diff changeset
    25
  line-height:1.5; 
22ab430e9b64 Corrections on models and general structure
wakimd
parents:
diff changeset
    26
  list-style-type:none;
22ab430e9b64 Corrections on models and general structure
wakimd
parents:
diff changeset
    27
  margin:0 ;
22ab430e9b64 Corrections on models and general structure
wakimd
parents:
diff changeset
    28
  padding: 0 9px 0 0;
22ab430e9b64 Corrections on models and general structure
wakimd
parents:
diff changeset
    29
  height: 29px;
22ab430e9b64 Corrections on models and general structure
wakimd
parents:
diff changeset
    30
  
22ab430e9b64 Corrections on models and general structure
wakimd
parents:
diff changeset
    31
}
22ab430e9b64 Corrections on models and general structure
wakimd
parents:
diff changeset
    32
.tabs li a { 
22ab430e9b64 Corrections on models and general structure
wakimd
parents:
diff changeset
    33
  border-bottom:none;
22ab430e9b64 Corrections on models and general structure
wakimd
parents:
diff changeset
    34
  color: #ffffff;
22ab430e9b64 Corrections on models and general structure
wakimd
parents:
diff changeset
    35
  cursor:pointer;
22ab430e9b64 Corrections on models and general structure
wakimd
parents:
diff changeset
    36
  display:block;
22ab430e9b64 Corrections on models and general structure
wakimd
parents:
diff changeset
    37
  float:left;
22ab430e9b64 Corrections on models and general structure
wakimd
parents:
diff changeset
    38
  margin: .5em 2em .5em 2em;
22ab430e9b64 Corrections on models and general structure
wakimd
parents:
diff changeset
    39
  text-transform: capitalize;
22ab430e9b64 Corrections on models and general structure
wakimd
parents:
diff changeset
    40
  font-weight: lighter;
22ab430e9b64 Corrections on models and general structure
wakimd
parents:
diff changeset
    41
}
22ab430e9b64 Corrections on models and general structure
wakimd
parents:
diff changeset
    42
22ab430e9b64 Corrections on models and general structure
wakimd
parents:
diff changeset
    43
.tabs li.active { 
22ab430e9b64 Corrections on models and general structure
wakimd
parents:
diff changeset
    44
  background:#29aae3 url("../img/tabsright_active.png") no-repeat right center;
22ab430e9b64 Corrections on models and general structure
wakimd
parents:
diff changeset
    45
}
22ab430e9b64 Corrections on models and general structure
wakimd
parents:
diff changeset
    46
22ab430e9b64 Corrections on models and general structure
wakimd
parents:
diff changeset
    47
22ab430e9b64 Corrections on models and general structure
wakimd
parents:
diff changeset
    48
.tabs li a.selected { 
22ab430e9b64 Corrections on models and general structure
wakimd
parents:
diff changeset
    49
  background:#666;
22ab430e9b64 Corrections on models and general structure
wakimd
parents:
diff changeset
    50
  border:1px solid #666;
22ab430e9b64 Corrections on models and general structure
wakimd
parents:
diff changeset
    51
  border-bottom:none;
22ab430e9b64 Corrections on models and general structure
wakimd
parents:
diff changeset
    52
  color:#fff;
22ab430e9b64 Corrections on models and general structure
wakimd
parents:
diff changeset
    53
  cursor:default;
22ab430e9b64 Corrections on models and general structure
wakimd
parents:
diff changeset
    54
}
22ab430e9b64 Corrections on models and general structure
wakimd
parents:
diff changeset
    55
.tabs li a, .tabs li a:focus, .tabs li a:hover { 
22ab430e9b64 Corrections on models and general structure
wakimd
parents:
diff changeset
    56
  text-decoration:none;
22ab430e9b64 Corrections on models and general structure
wakimd
parents:
diff changeset
    57
}
22ab430e9b64 Corrections on models and general structure
wakimd
parents:
diff changeset
    58
.tabs li a:focus, .tabs li a:hover { 
22ab430e9b64 Corrections on models and general structure
wakimd
parents:
diff changeset
    59
  color:#555;
22ab430e9b64 Corrections on models and general structure
wakimd
parents:
diff changeset
    60
  outline:none;
22ab430e9b64 Corrections on models and general structure
wakimd
parents:
diff changeset
    61
}
22ab430e9b64 Corrections on models and general structure
wakimd
parents:
diff changeset
    62
.tabs li a.selected:focus, .tabs li a.selected:hover { 
22ab430e9b64 Corrections on models and general structure
wakimd
parents:
diff changeset
    63
  color:#fafafa;
22ab430e9b64 Corrections on models and general structure
wakimd
parents:
diff changeset
    64
}	
22ab430e9b64 Corrections on models and general structure
wakimd
parents:
diff changeset
    65
.tabs li.label { 
22ab430e9b64 Corrections on models and general structure
wakimd
parents:
diff changeset
    66
	border:none;
22ab430e9b64 Corrections on models and general structure
wakimd
parents:
diff changeset
    67
	font-weight:bold;
22ab430e9b64 Corrections on models and general structure
wakimd
parents:
diff changeset
    68
	line-height:1.5; 
22ab430e9b64 Corrections on models and general structure
wakimd
parents:
diff changeset
    69
	margin-right:.5em; 
22ab430e9b64 Corrections on models and general structure
wakimd
parents:
diff changeset
    70
	padding:.25em .33em .25em .33em;
22ab430e9b64 Corrections on models and general structure
wakimd
parents:
diff changeset
    71
}
22ab430e9b64 Corrections on models and general structure
wakimd
parents:
diff changeset
    72