Skip to content

Commit edea30b

Browse files
committed
arreglos en css
1 parent 13b6399 commit edea30b

File tree

2 files changed

+12
-9
lines changed

2 files changed

+12
-9
lines changed

html/html/typography.css

Lines changed: 11 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,21 @@
1-
2-
body { font:1.05em "lucida grande","lucida sans unicode", sans-serif; background-color:#FFFFFF;
1+
@import url(http://fonts.googleapis.com/css?family=Open+Sans);
2+
body { font:1.05em "Open Sans", sans-serif; background-color:#FFFFFF;
33
font-size-adjust:none;
44
font-style:normal;
55
font-variant:normal;
66
font-weight:normal;
77
background: #FFFFFF;
88
}
99

10-
p { padding:0 0 1em 0; color:#111; font-weight:300;}
10+
p { padding:0 0 1em 0; line-height: 150%;}
1111

12-
ul,ol{padding-left: 40px;}
12+
ul,ol{padding-left: 40px; line-height: 150%;}
13+
.main li{margin: 0 0 9px 0}
1314

1415
h1,h2{ font-weight:normal; color: #333; font-family:Georgia, serif; }
1516
h3,h4,h5,h6 { font-weight: normal; color: #333; font-family:Georgia, serif; }
1617

17-
hr {border-top: dotted 2px;}
18+
hr {border-top: dotted 2px; margin-bottom:1.625em;}
1819

1920
h1 { font-size: 3.125em; margin-bottom: 0.765em; line-height: 1; }
2021
h2 { font-size: 1.9em; margin-bottom: 0.855em; margin-top: 1em;}
@@ -46,7 +47,6 @@ figcaption { text-align:center; font-style: italic; }
4647

4748
pre, code { margin: 1.625em 0; white-space: pre; }
4849
pre, code, tt { font: 1.225em monospace; line-height: 1.5; }
49-
hr { margin-bottom:1.625em; }
5050

5151
img{
5252
display: block;
@@ -85,7 +85,7 @@ img{
8585
background: #FFFFFF;
8686
width: 400px;
8787
padding: 25px;
88-
height: 100%;
88+
height: 95%;
8989
-webkit-transition-duration: 0.3s;
9090
-moz-transition-duration: 0.3s;
9191
transition-duration: 0.3s;
@@ -135,7 +135,10 @@ img{
135135
background: #FFaa56;
136136
width: 400px;
137137
padding: 25px;
138-
height: 100%;
138+
height: -moz-calc(100% - 65px);
139+
height: -webkit-calc(100% - 65px);
140+
height: -o-calc(100% - 65px);
141+
height: calc(100% - 65px);
139142
overflow:auto;
140143
-webkit-transition-duration: 0.3s;
141144
-moz-transition-duration: 0.3s;

html/template.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ <h1>[TITLE]</h1>
3232
<div id="slideout_general">
3333
Índice<br>general
3434
<div id="slideout_inner_general">
35-
<b>ÍNDICE GENERAL</b><br>
35+
<p><b>ÍNDICE GENERAL</b><br>
3636
<ul>
3737
<li><a href="Intro.html">Introducción</a></li>
3838
<li>Parte 1. Fundamentos</li>

0 commit comments

Comments
 (0)