-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
executable file
·58 lines (51 loc) · 1.11 KB
/
styles.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
/*
Document : styles
Created on : May 19, 2009, 3:41:30 PM
Author : Justin
Description:
Purpose of the stylesheet follows.
*/
/*
TODO customize this sample style
Syntax recommendation http://www.w3.org/TR/REC-CSS2/
*/
h2.tab {
height: 17px;
}
h2.tab div {
margin-left: 9px;
margin-right: 0px;
margin-bottom: 0px;
padding: 1px 10px 0px 10px;
border-left: 1px solid #ccc;
border-top: 1px solid #ccc;
border-right: 1px solid #ccc;
cursor: pointer;
float: left;
height: 17px;
/* Remove the following if you don't want rounded corners (Mozilla only). */
-moz-border-radius-topleft: 7px;
-moz-border-radius-topright: 7px;
-webkit-border-top-left-radius: 7px;
-webkit-border-top-right-radius: 7px;
}
h2.tab div.not-selected {
background-color: transparent;
color: #999;
}
h2.tab div.selected {
background-color: #fff;
border-bottom: 2px solid #fff;
}
h2.tab {
border-bottom: none;
font-weight: bold;
font-size: 100%;
margin-bottom: 0px;
font-style: normal;
}
div.section {
border-top: 1px solid #ccc;
padding: 17px 5px 5px 5px;
margin-top: 0;
}