Skip to main content
summaryrefslogtreecommitdiffstats
blob: 9bd16f72cc7760819ed915f02eac12685f5dacdc (plain) (blame)
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
L/*******************************************************************************
 * Copyright (c) 2008, 2009 IBM Corporation and others.
 * All rights reserved. This program and the accompanying materials 
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 * 
 * Contributors:
 *     IBM Corporation - initial API and implementation
 *******************************************************************************/

/*
 * Font sizes for the circles theme
 */

/* The label part of the folding section */
.section-title-link .section-title {
	font-size : 100%;
}

h2 {
	font-size : 120%;
}

/* For regular div labels */
H4 .div-label {
	font-size: 120%; 
}

/* For the main page content's title */
#content-header H4 .div-label {
	font-size: 240%; 
}


/* Page description if the page has it. */
.page-description {
	font-size: 100%; 
}

#page-links, #action-links {
    font-size : 8pt;
}

/* Floating link labels for navigation links */
#navigation-links a .link-label {
	font-size : 8pt;
}

/* Text in links. */
a .text {
	font-size : 90%;
}

p .group-description {
	font-size : 100%;
}

.content-link .link-label {
	font-size: 120%; 
}

.content-link .text {
	font-size: 100%;
}

.categoryContentnav {
	//font-size:10pt; 
}

.contentpgNavhover {
	font-size: 8pt; 
}

.topicList {
	font-size:90%; 
}

#root #page-links, #root #action-links, #root #page-links a p .text {
    font-size : 100%;
}

/* Link label properties */
#root #page-links a .link-label {
	font-size : 130%;
}

#root .intro-header span  {
    font-size : 125%;
}

/*
 * Standby page settings
 */

#standby .intro-header H1 {
	font-size : 150%;
}

#standby #page-links a .link-label, #standby #action-links a .link-label {
	font-size : 100%;
}

#standby #page-links a p .text, #standby #action-links a p .text {
	font-size : 100%;
}

Back to the top