summaryrefslogtreecommitdiff
path: root/app/doc/xtrkcad_osx.css
blob: 9069eb8d8650e71604b6e555fc26306b00634d34 (plain)
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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
/************************************************************************************
LINUX Help File colour and fonts are done here. Halibut controls margins, line spacing and indents.
*************************************************************************************/

BODY {
	background: white;
	font-family: "Trebuchet MS", "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", Tahoma, sans-serif;
}

A:link {
	text-decoration: none;
	color: #7DA1BF;
	font-weight: bold;
}          /* unvisited link */

A:visited {
	text-decoration: none;
	color: #1d4e89;
	font-weight: bold;
}        /* visited links */

A:active { 
	text-decoration: none;
	font-weight: bold;	
	color: red;
	}        /* active links */

a:hover {
	text-decoration: underline;
	color: #F69256;
	}

H1 {
	text-align: left;
	font-size: large;
	font-style: italic;
	font-weight: bold;
	padding: 3px 6px;
}

H2 {
	text-align: left;
	font-size: medium;
	font-style: italic;
	font-weight: bold;
	padding: 3px 6px;
}

H3 {
	text-align: left;
	font-size: small;
	font-style: italic;
	font-weight: bold;
	padding: 3px 6px;
}

#container {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#toc {
  position: fixed;
  top: 0px;
  left: 0px;
  bottom: 0px;
  font-size: 25% small;
  overflow-y: scroll;
  width: 20%;
}

#contents {
  top: 0px;
  right: 0px;
  bottom: 0px;
  margin-left: 20%;
  float: left;
  font-size: 90%;
  color: #333;
  font-weight: normal;
  overflow: auto;
}

UL.top_link {
   list-style: none;
   padding-left:0;
}

#toc UL {
   list-style: none;
   padding-left:1em;
}

#toc A:link {
	font-size: 62%;
	text-decoration: none;
	color: #7DA1BF;
}
#toc A:active { 
    font_size: 62%;
	text-decoration: none;	
	color: red;
	}        /* active links */
/* Style the buttons that are used to open and close the accordion panel */
button.accordion {
    background-color: #eee;
    color: #444;
    cursor: pointer;
    padding: 0px;
    width: 20px%;
    text-align: left;
    border: none;
    outline: none;
    transition: 0.4s;
}

button.accordion:before {
    content: '\02795'; /* Unicode character for "plus" sign (+) */
    font-size: 62%;
    color: #777;
    float: left;
    margin-left: 5px;
}

button.accordion.active:before {
    content: "\2796"; /* Unicode character for "minus" sign (-) */
}


/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
button.accordion.active, button.accordion:hover {
    background-color: #ddd;
}

div.panel {
    padding: 0 18px;
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}