-
Notifications
You must be signed in to change notification settings - Fork 14
/
style.css
140 lines (137 loc) · 2.79 KB
/
style.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
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
@font-face {
font-family: 'Stilu-Regular';
src: url('_fonts/stilu/Stilu-Regular.otf');
}
@font-face {
font-family: 'Stilu-Bold';
src: url('_fonts/stilu/Stilu-Bold.otf');
}
@font-face {
font-family: 'SourceCodePro-Regular';
src: url('_fonts/source-code-pro/SourceCodePro-Regular.otf');
}
body {
color: black;
text-align: left;
line-height: 1.2;
font-size: 0.8em;
font-weight: normal;
font-family: Stilu-Regular, helvetica, arial;
overflow: scroll;
}
a:link, a:visited {
font: rgb(200, 100, 100);
}
a:hover {
font: rgb(100, 200, 122);
background-color: rgb(200, 234, 234);
}
h1 {
color: rgb(221, 28, 28);
font-size: 2.0em;
text-align: left;
font-family: Stilu-Bold;
margin-top: 0em;
margin-left: 0px;
margin-right: 0px;
padding-left: 42px;
border-bottom-style: solid;
border-bottom-width: 1px;
border-bottom-color: rgb(200, 100, 100);
}
h2 {
color: rgb(17, 17, 136);
font-size: 1.4em;
text-align: left;
font-family: Stilu-Bold;
margin-top: 0.4em;
margin-bottom: 0.2em;
margin-left: 0px;
margin-right: 0px;
border-bottom-style: inset;
border-bottom-width: 1px;
}
h3 {
color: rgb(111, 48, 119);
font-size: 1.2em;
text-align: left;
font-family: Stilu-Bold;
margin-top: 0.2em;
margin-bottom: 0em;
margin-left: 0px;
margin-right: 0px;
}
h4 {
color: rgb(100, 100, 100);
font-size: 1.0em;
text-align: left;
font-family: Stilu-Regular;
margin-top: 0.2em;
margin-left: 1em;
margin-right: 0px;
}
h5 {
color: rgb(100, 140, 140);
font-size: 1em;
text-align: left;
font-family: Stilu-Regular;
margin-top: 0.5em;
margin-left: 0px;
margin-right: 0px;
}
h6 {
color: rgb(172, 27, 83);
font-size: 3em;
text-align: center;
font-family: Stilu-Bold;
margin-top: 1em;
margin-left: 0px;
margin-right: 0px;
text-shadow: lavender;
}
.content li, .content ul , .content > ul > li {
text-align: left;
padding: 0.0em;
margin-left: 1.2em;
}
.content > p {
text-align: left;
padding: 0.1em;
margin-left: 20px;
}
#preso, .slide {
# width: 1024px !important;
# height: 768px !important;
width: 100%;
height: 98%;
overflow: scroll;
vertical-align: text-top;
background-image: url('_images/logoguide.jpg');
background-position: bottom right;
background-repeat: no-repeat;
background-size: auto;
}
div.content {
height: 90%;
}
pre, .content > pre {
border: 1px solid #abc;
margin: 1px, 1px, 1px, 1px;
background-color: rgb(245,240,240);
padding: 8px;
font-size: 1em;
font-weight: normal;
font-family: SourceCodePro-Regular, Courier;
overflow: scroll;
-moz-border-radius: 2px;
-webkit-border-radius: 2px;
-khtml-border-radius: 2px;
border-radius: 2px;
display: block;
}
code {
font-size: 100%;
color: rgb(100, 10, 10);
font-family: Courier, SourceCodePro-Medium, Courier;
display: inline;
}