-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsc.tutorial.css
110 lines (85 loc) · 1.66 KB
/
sc.tutorial.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
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
body {
font: 10pt Arial, sans-serif, Verdana, Helvetica;
/*line-height: 1.3em;*/
}
h1, h2, h3 {
line-height: 1.1;
font-weight: 700;
}
h1 {
font-size: 1.8em;
color: #444444;
margin: 0.4em 0 1.4em 0;
}
.commentedH1 {
font-size: 1.8em;
color: #444444;
margin: 0.4em 0 0.1em 0;
}
h2 {
font-size: 1.4em;
/*color: #222222;*/
margin: 1.4em 0 1.2em 0;
}
h3 {
font-size: 1.2em;
color: #111111;
margin: 1.2em 0 1em 0;
}
h4 {
font-size: 1.1em;
margin: 1em 0 0.8em 0;
}
a img { /* this selector removes the default blue border displayed in some browsers around an image when it is surrounded by a link */
border: none;
}
/* removes the bottom line in links with images that iexplorer puts */
.linkWithImg{
text-decoration: none;
}
/* ~~ miscellaneous classes ~~ */
.clearfloat { /* this class can be placed on a <br /> or empty div as the final element following the last floated div (within the #main) if the #footer is removed or taken out of the #main */
clear:both;
height:0;
font-size: 1px;
line-height: 0px;
}
.divList {
margin: 1.2em 0 1.5em;
}
.divImg {
font-size:80%;
text-align:center;
margin: 2em 0 3em;
}
.blockImage {
display: block;
border: none;
margin: 0;
padding: 0;
}
/* ~~ Table of content ~~ */
#table_of_content {
background:#F0F0EE;
border: solid;
border-width: 1px;
border-color: gray;
padding: 0.5em 0.5em 0em 0.5em;
margin: 3.0em 0 0 0;
font-size: 9pt;
}
#table_of_content_entries {
color: blue;
}
#footnotes {
margin: 2em 0;
}
.codeEditor {
/*
background-color:#eee;
*/
margin: 1.2em 0 1.2em;
}
/* ~~ ACE ~~ */
/* hiding cursors in ace code editors when they do not have the focus */
.ace_hidden-cursors {opacity:0}