specify the box-sizing property so that the width is what we expect it to be
This commit is contained in:
parent
da3e0daaf2
commit
72735677d8
|
@ -103,6 +103,9 @@ a:active { color: #369; text-decoration: none; }
|
|||
width: 50em;
|
||||
margin: 0 auto;
|
||||
padding: .5em;
|
||||
-webkit-box-sizing: content-box;
|
||||
-moz-box-sizing: content-box;
|
||||
box-sizing: content-box;
|
||||
}
|
||||
|
||||
|
||||
|
@ -138,6 +141,9 @@ a.author:active {
|
|||
-khtml-border-radius: .5em;
|
||||
-moz-border-radius: .5em;
|
||||
border-radius: .5em;
|
||||
-webkit-box-sizing: content-box;
|
||||
-moz-box-sizing: content-box;
|
||||
box-sizing: content-box;
|
||||
}
|
||||
|
||||
a.downloadnow:link,
|
||||
|
|
File diff suppressed because one or more lines are too long
Loading…
Reference in New Issue