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 3
3
< link rel ="stylesheet " href ="https://www.w3schools.com/w3css/4/w3.css ">
4
4
</ head >
5
5
< 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 >
9
10
< a class ="w3-bar-item w3-button " href ="https://github.com/phpvirtualbox/phpvirtualbox/wiki "> Wiki</ a >
10
11
< a class ="w3-bar-item w3-button " href ="https://github.com/phpvirtualbox/phpvirtualbox/issues "> Issues</ a >
11
12
< a class ="w3-bar-item w3-button " href ="about.html "> About</ a >
12
13
</ 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 >
13
32
</ body >
14
33
</ html >
You can’t perform that action at this time.
0 commit comments