Bar at bottom and top of screen?

Bar at bottom and top of screen?

    Hello,

    I'm currently working on a little Webapp as a school assignment. I copied the code  here and edited it a little, however there's a small bar at the top and bottom of the window. Also, if I chance the background color it will only show in those two bars. Does anyone perhaps know what the issue might be?

    Thanks in advance
    1. <DOCTYPE html>
    2. <html>
    3. <head>
    4. <meta charset="UTF-8">
    5. <meta name="viewport" content="width=device-width, initial-scale=1">
    6. <title>Naam</title>
    7. <link rel="stylesheet" href="http://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.css" />
    8. <script src="http://code.jquery.com/jquery-1.11.1.min.js"></script>
    9. <script src="http://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.js"></script>
    10. <script>
    11. $( document ).on( "pageinit", "#home", function() {
    12. $( document ).on( "swipeleft swiperight", "#home", function( e ) {
    13. // We check if there is no open panel on the page because otherwise
    14. // a swipe to close the left panel would also open the right panel (and v.v.).
    15. // We do this by checking the data that the framework stores on the page element (panel: open).
    16. if ( $.mobile.activePage.jqmData( "panel" ) !== "open" ) {
    17. if ( e.type === "swipeleft"  ) {
    18. $( "#right-panel" ).panel( "open" );
    19. } else if ( e.type === "swiperight" ) {
    20. $( "#left-panel" ).panel( "open" );
    21. }
    22. }
    23. });
    24. });
    25. </script>
    26. <style>
    27. /* Swipe works with mouse as well but often causes text selection. */
    28. #home * {
    29. -webkit-user-select: none;
    30. -moz-user-select: none;
    31. -ms-user-select: none;
    32. -o-user-select: none;
    33. user-select: none;
    34. }
    35. #home * {
    36. -webkit-user-select: none;
    37. -moz-user-select: none;
    38. -ms-user-select: none;
    39. -o-user-select: none;
    40. user-select: none;
    41. }
    42. /* Arrow only buttons in the header. */
    43. #home .ui-header .ui-btn {
    44. background: none;
    45. border: none;
    46. top: 9px;
    47. }
    48. #home .ui-header .ui-btn-inner {
    49. border: none;
    50. }
    51. /* Content styling. */
    52. dl { font-family: "Times New Roman", Times, serif; padding: 1em; }
    53. dt { font-size: 2em; font-weight: bold; }
    54. dt span { font-size: .5em; color: #777; margin-left: .5em; }
    55. dd { font-size: 1.25em; margin: 1em 0 0; padding-bottom: 1em; border-bottom: 1px solid #eee; }
    56. .back-btn { float: right; margin: 0 2em 1em 0; }
    57. </style>
    58. </head>
    59. <body>
    60. <div data-role="page" id="home" data-theme="a" data-url="home">
    61.    <div data-role="header" data-theme="a">
    62.        <h2>Naam</h2>
    63.        <a href="#left-panel" data-theme="a" data-icon="bars" data-iconpos="notext" data-shadow="false" data-iconshadow="false" class="ui-icon-nodisc">Open left panel</a>
    64. <a href="#right-panel" data-theme="a" data-icon="arrow-r" data-iconpos="notext" data-shadow="false" data-iconshadow="false" class="ui-icon-nodisc">Open right panel</a>
    65.    </div>
    66.    <div data-role="content">
    67.        <dl>
    68.            <dt>Welkom</dt>
    69.            <dd>Home</dd>
    70.        </dl>
    71.    </div>
    72.    <div data-role="panel" id="left-panel" data-theme="a">
    73.        <a href="#" data-rel="close" data-role="button" data-mini="true" data-inline="true" data-icon="delete" data-iconpos="right">Sluiten</a>
    74. <br>
    75. <a href="#" data-rel="close" data-role="button" data-mini="true" data-inline="true" data-icon="home" data-iconpos="right">Home</a>
    76. <br>
    77. <a href="menu.html" rel="external" data-rel="close" data-role="button" data-mini="true" data-inline="true" data-icon="grid" data-iconpos="right">Menukaart</a>
    78.    </div>
    79. <div data-role="panel" id="right-panel" data-display="push" data-position="right" data-theme="a">
    80.        <a href="#" data-rel="close" data-role="button" data-mini="true" data-inline="true" data-icon="delete" data-iconpos="right">Sluiten</a>
    81.    </div>
    82. </div>
    83. </body>
    84. </html>