Skip to content

Commit

Permalink
Some minor cleaning up.
Browse files Browse the repository at this point in the history
  • Loading branch information
agarny committed Nov 25, 2019
1 parent ee1ae8d commit 90c2902
Showing 1 changed file with 16 additions and 16 deletions.
32 changes: 16 additions & 16 deletions doc/res/stylesheet.css
@@ -1,12 +1,12 @@
body {
padding: 13px 0px;
padding: 13px 0;
font-family: "Arial", "Sans-Serif";
font-size: 10pt;
}

a {
color: rgb(103, 103, 103);
outline: 0px;
outline: 0;
text-decoration: none;
}

Expand All @@ -20,19 +20,19 @@ a:hover {
a.noHover:hover {
/* This prevents anchors from looking like a link */

margin: 0px;
border: 0px;
margin: 0;
border: 0;
background: rgba(255, 255, 255, 0);
}

div.contents {
border-radius: 0px 0px 13px 13px;
border-radius: 0 0 13px 13px;
}

div.copyright {
position: fixed;
bottom: 0px;
left: 0px;
bottom: 0;
left: 0;
width: 100%;
height: 19px;
border-top: 1px solid rgba(161, 161, 161, 0.39);
Expand Down Expand Up @@ -63,29 +63,29 @@ div.copyright div.right {
}

div.copyright div a.copyright:hover {
margin: 0px;
border: 0px;
margin: 0
border: 0;
background: none;
}

div.copyright div img.twitter {
position: relative;
top: -15px;
border: 0px;
border: 0;
}

div.copyright div img.vpr {
position: relative;
top: 4px;
border: 0px;
border: 0;
}

div.header {
z-index: 999;
padding: 3px;
position: fixed;
top: 0px;
left: 0px;
top: 0;
left: 0;
width: 100%;
height: 23px;
background: rgb(103, 103, 103);
Expand Down Expand Up @@ -131,7 +131,7 @@ div.oldDownload {
}

div.section {
margin: 1.5em 0em 0.5em 0em;
margin: 1.5em 0 0.5em 0;
/* Note: the margin is so that it is rendered like a <p>, which is */
/* necessary if we want to use a section at the beginning of */
/* a page (because of our fixed header at the top)... */
Expand Down Expand Up @@ -229,7 +229,7 @@ table.changes td.topSeparator {
}

ul {
margin: 7px 0px;
margin: 7px 0;
}

ul > li {
Expand All @@ -238,5 +238,5 @@ ul > li {
}

ul > li > ul {
margin: 0px;
margin: 0;
}

0 comments on commit 90c2902

Please sign in to comment.