File tree Expand file tree Collapse file tree 1 file changed +22
-3
lines changed
Expand file tree Collapse file tree 1 file changed +22
-3
lines changed Original file line number Diff line number Diff line change 33< link rel ="stylesheet " href ="https://www.w3schools.com/w3css/4/w3.css ">
44</ head >
55< body >
6- < div class ="w3-sidebar w3-bar-block " style ="width:25% ">
7- < a class ="w3-bar-item w3-button " href ="index.html "> Home</ a >
8- < a class ="w3-bar-item w3-button " href ="releases.html "> Releases</ a >
6+ < div class ="w3-sidebar w3-bar-block w3-collapse w3-card " style ="width:200px; " id ="mySidebar ">
7+ < button class ="w3-bar-item w3-button w3-hide-large "
8+ onclick ="w3_close() "> Close ×</ button > < a class ="w3-bar-item w3-button " href ="index.html "> Home</ a >
9+ < a class ="w3-bar-item w3-button " href ="https://github.com/phpvirtualbox/phpvirtualbox/releases "> Releases</ a >
910 < a class ="w3-bar-item w3-button " href ="https://github.com/phpvirtualbox/phpvirtualbox/wiki "> Wiki</ a >
1011 < a class ="w3-bar-item w3-button " href ="https://github.com/phpvirtualbox/phpvirtualbox/issues "> Issues</ a >
1112 < a class ="w3-bar-item w3-button " href ="about.html "> About</ a >
1213</ div >
14+ < div class ="w3-main " style ="margin-left:200px ">
15+
16+ < div class ="w3-teal ">
17+ < button class ="w3-button w3-teal w3-xlarge " onclick ="w3_open() "> ☰</ button >
18+ < div class ="w3-container ">
19+ < h1 > phpVirtualBox</ h1 >
20+ </ div >
21+ </ div >
22+ </ div >
23+
24+ < script >
25+ function w3_open ( ) {
26+ document . getElementById ( "mySidebar" ) . style . display = "block" ;
27+ }
28+ function w3_close ( ) {
29+ document . getElementById ( "mySidebar" ) . style . display = "none" ;
30+ }
31+ </ script >
1332</ body >
1433</ html >
You can’t perform that action at this time.
0 commit comments