CSS code fixing
This commit is contained in:
parent
308f47b675
commit
57795937dc
1 changed files with 11 additions and 58 deletions
69
wfe.php
69
wfe.php
|
@ -172,64 +172,17 @@ array_multisort($n, SORT_ASC, $d, SORT_ASC, $files);
|
|||
# Output
|
||||
// CSS3 code
|
||||
$css3 = <<<CSS3
|
||||
body {
|
||||
font-family: Lucida Console, Courier New, Monospace !important;
|
||||
font-size: 12pt !important;
|
||||
color: FloralWhite;
|
||||
background-color: DarkSlateGrey;
|
||||
margin: 15pt;
|
||||
}
|
||||
a {
|
||||
text-decoration: none;
|
||||
}
|
||||
a:link {
|
||||
color: Chartreuse;
|
||||
}
|
||||
a:visited {
|
||||
color: Chartreuse;
|
||||
}
|
||||
b {
|
||||
color: BlanchedAlmond;
|
||||
font-weight: lighter;
|
||||
font-size: 14pt;
|
||||
font-family: Sans-serif !important;
|
||||
}
|
||||
h1 {
|
||||
font-size: 35pt;
|
||||
font-weight: bolder;
|
||||
font-family: Sans-serif !important;
|
||||
color: DarkSlateGrey;
|
||||
text-align: center;
|
||||
background-color: LightSlateGray;
|
||||
border-radius: 15pt 15pt 0pt 0pt;
|
||||
margin-bottom: -12pt;
|
||||
padding: 4pt 0pt 16pt 0pt;
|
||||
}
|
||||
footer {
|
||||
margin-top: 10pt;
|
||||
font-size: 11pt;
|
||||
text-align: center;
|
||||
font-family: Sans-serif !important;
|
||||
}
|
||||
footer > p {
|
||||
margin: 0pt;
|
||||
padding-top: 1pt;
|
||||
}
|
||||
.container {
|
||||
border: 3pt solid LightSlateGray;
|
||||
border-radius: 15pt;
|
||||
padding: 20pt 0pt 24pt 28pt;
|
||||
background-color: DarkSlateGrey;
|
||||
}
|
||||
.flex-container {
|
||||
display: flex;
|
||||
align-items: stretch;
|
||||
}
|
||||
.flex-container > div {
|
||||
height: 16pt;
|
||||
line-height: 16pt;
|
||||
overflow: hidden;
|
||||
}
|
||||
body{background-color:DarkSlateGrey;color:FloralWhite;font:12pt "Lucida Console","Courier New",Monospace;margin:15pt}
|
||||
a{text-decoration:none}
|
||||
a:link{color:Chartreuse}
|
||||
a:visited{color:Chartreuse}
|
||||
b{color:BlanchedAlmond;font:lighter 14pt Sans-serif}
|
||||
h1{background-color:LightSlateGray;border-radius:15pt 15pt 0 0;color:DarkSlateGrey;font:35pt Sans-serif;margin-bottom:-12pt;padding:4pt 0 16pt;text-align:center}
|
||||
footer{font:11pt Sans-serif;margin-top:10pt;text-align:center}
|
||||
footer>p{margin:0;padding-top:1pt}
|
||||
.container{background-color:DarkSlateGrey;border:3pt solid LightSlateGray;border-radius:15pt;padding:20pt 0 24pt 28pt}
|
||||
.flex-container{display:flex}
|
||||
.flex-container>div{height:16pt;line-height:16pt;overflow:hidden}
|
||||
CSS3;
|
||||
|
||||
// HTML5 code
|
||||
|
|
Loading…
Reference in a new issue