Skip to content

Commit

Permalink
Merge pull request #363 from phpdocker-io/update-html-help
Browse files Browse the repository at this point in the history
Fix pure css on html zip docs as well as adding extra code styles
  • Loading branch information
luispabon authored Nov 24, 2023
2 parents 36bf044 + 60353c9 commit 0bfa685
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 7 deletions.
27 changes: 22 additions & 5 deletions src/PHPDocker/Template/README.html.twig
Original file line number Diff line number Diff line change
@@ -1,14 +1,31 @@
<html>
<head>
<title>PHPDocker.io Readme</title>
<link rel="stylesheet" href="http://yui.yahooapis.com/pure/0.6.0/pure-min.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/build/pure-min.css" integrity="sha384-X38yfunGUhNzHpBaEBsWLO+A0HDYOQi8ufWDkZ0k9e0eXz/tH3II7uKZ9msv++Ls" crossorigin="anonymous">

<style>
* {
line-height: 1.8em;
}
code {
background-color : #ddd;
padding : 2px 5px;
font-family : monospace;
font-size : 16px;
font-size: 1.2em;
background: #f4f4f4;
border: 1px solid #ddd;
color: #111;
font-family: monospace;
padding: 3px;
}
pre code {
border-left: 3px solid #f36d33;
page-break-inside: avoid;
margin-bottom: 1.6em;
max-width: 100%;
overflow: auto;
padding: 1em 1.5em;
display: block;
word-wrap: break-word;
}
</style>
</head>
Expand Down
4 changes: 2 additions & 2 deletions src/PHPDocker/Template/README.md.twig
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ environment:
* Finally, add “Xdebug helper” extension in your browser, set breakpoints and start debugging

### Create a launch.json for visual studio code

```
{
"version": "0.2.0",
"configurations": [
Expand All @@ -169,4 +169,4 @@ environment:
}
]
}

```

0 comments on commit 0bfa685

Please sign in to comment.