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