htmlreport/cppcheck-htmlreport: simplify css
This commit is contained in:
parent
0b4da3d5cd
commit
fd10110404
|
@ -19,61 +19,48 @@ body.body {
|
||||||
font-family: Arial;
|
font-family: Arial;
|
||||||
font-size: 13px;
|
font-size: 13px;
|
||||||
background-color: black;
|
background-color: black;
|
||||||
padding: 0px;
|
padding: 0;
|
||||||
margin: 0px;
|
margin: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.error {
|
.error {
|
||||||
font-family: Arial;
|
font-family: Arial;
|
||||||
font-size: 13px;
|
font-size: 13px;
|
||||||
background-color: #ffb7b7;
|
background-color: #ffb7b7;
|
||||||
padding: 0px;
|
padding: 0;
|
||||||
margin: 0px;
|
margin: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
#page-header {
|
#page-header {
|
||||||
clear: both;
|
clear: both;
|
||||||
width: 900px;
|
width: 900px;
|
||||||
margin: 20px auto 0px auto;
|
margin: 20px auto 0 auto;
|
||||||
height: 10px;
|
height: 10px;
|
||||||
border-bottom-width: 2px;
|
border-bottom: 2px solid #aaa;
|
||||||
border-bottom-style: solid;
|
|
||||||
border-bottom-color: #aaaaaa;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#page {
|
#page {
|
||||||
width: 860px;
|
width: 860px;
|
||||||
margin: auto;
|
margin: auto;
|
||||||
border-left-width: 2px;
|
border-left: 2px solid #aaa;
|
||||||
border-left-style: solid;
|
border-right: 2px solid #aaa;
|
||||||
border-left-color: #aaaaaa;
|
background-color: white;
|
||||||
border-right-width: 2px;
|
|
||||||
border-right-style: solid;
|
|
||||||
border-right-color: #aaaaaa;
|
|
||||||
background-color: White;
|
|
||||||
padding: 20px;
|
padding: 20px;
|
||||||
}
|
}
|
||||||
|
|
||||||
#page-footer {
|
#page-footer {
|
||||||
clear: both;
|
|
||||||
width: 900px;
|
width: 900px;
|
||||||
margin: auto;
|
|
||||||
height: 10px;
|
height: 10px;
|
||||||
border-top-width: 2px;
|
clear: both;
|
||||||
border-top-style: solid;
|
margin: auto;
|
||||||
border-top-color: #aaaaaa;
|
border-top: 2px solid #aaa;
|
||||||
}
|
}
|
||||||
|
|
||||||
#header {
|
#header {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: 70px;
|
height: 70px;
|
||||||
background-image: url(logo.png);
|
background: url(logo.png) no-repeat left top;
|
||||||
background-repeat: no-repeat;
|
border-bottom: thin solid #aaa;
|
||||||
background-position: left top;
|
|
||||||
|
|
||||||
border-bottom-style: solid;
|
|
||||||
border-bottom-width: thin;
|
|
||||||
border-bottom-color: #aaaaaa;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#menu {
|
#menu {
|
||||||
|
@ -94,19 +81,15 @@ body.body {
|
||||||
width: 720px;
|
width: 720px;
|
||||||
|
|
||||||
margin: 5px;
|
margin: 5px;
|
||||||
padding: 0px 10px 10px 10px;
|
padding: 0 10px 10px 10px;
|
||||||
|
|
||||||
border-left-style: solid;
|
border-left: thin solid #aaa;
|
||||||
border-left-width: thin;
|
|
||||||
border-left-color: #aaaaaa;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#footer {
|
#footer {
|
||||||
padding-bottom: 5px;
|
padding-bottom: 5px;
|
||||||
padding-top: 5px;
|
padding-top: 5px;
|
||||||
border-top-style: solid;
|
border-top: thin solid #aaa;
|
||||||
border-top-width: thin;
|
|
||||||
border-top-color: #aaaaaa;
|
|
||||||
clear: both;
|
clear: both;
|
||||||
font-size: 10px;
|
font-size: 10px;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue