godot-cpp-utils-docs/html/tabs.css

63 lines
1.2 KiB
CSS
Raw Normal View History

2024-05-29 21:29:38 +00:00
.tabs, .tabs2, .tabs3 {
2024-05-29 21:38:31 +00:00
background-image: url('tab_b.png');
2024-05-29 21:29:38 +00:00
width: 100%;
z-index: 101;
2024-05-29 21:38:31 +00:00
font-size: 13px;
font-family: 'Lucida Grande',Geneva,Helvetica,Arial,sans-serif;
2024-05-29 21:29:38 +00:00
display: table;
}
.tabs2 {
2024-05-29 21:38:31 +00:00
font-size: 10px;
2024-05-29 21:29:38 +00:00
}
.tabs3 {
2024-05-29 21:38:31 +00:00
font-size: 9px;
2024-05-29 21:29:38 +00:00
}
.tablist {
margin: 0;
padding: 0;
display: block;
}
.tablist li {
float: left;
display: table-cell;
2024-05-29 21:38:31 +00:00
background-image: url('tab_b.png');
2024-05-29 21:29:38 +00:00
line-height: 36px;
list-style: none;
}
.tablist a {
display: block;
padding: 0 20px;
font-weight: bold;
2024-05-29 21:38:31 +00:00
background-image:url('tab_s.png');
2024-05-29 21:29:38 +00:00
background-repeat:no-repeat;
background-position:right;
2024-05-29 21:38:31 +00:00
color: #283A5D;
text-shadow: 0px 1px 1px rgba(255, 255, 255, 0.9);
2024-05-29 21:29:38 +00:00
text-decoration: none;
outline: none;
}
.tabs3 .tablist a {
padding: 0 10px;
}
.tablist a:hover {
2024-05-29 21:38:31 +00:00
background-image: url('tab_h.png');
2024-05-29 21:29:38 +00:00
background-repeat:repeat-x;
2024-05-29 21:38:31 +00:00
color: white;
text-shadow: 0px 1px 1px rgba(0, 0, 0, 1.0);
2024-05-29 21:29:38 +00:00
text-decoration: none;
}
.tablist li.current a {
2024-05-29 21:38:31 +00:00
background-image: url('tab_a.png');
2024-05-29 21:29:38 +00:00
background-repeat:repeat-x;
2024-05-29 21:38:31 +00:00
color: white;
text-shadow: 0px 1px 1px rgba(0, 0, 0, 1.0);
2024-05-29 21:29:38 +00:00
}