index.html 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
  5. <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1.0"/>
  6. <title>Atelier web WCS</title>
  7. <!-- CSS -->
  8. <link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
  9. <link href="css/materialize.css" type="text/css" rel="stylesheet" media="screen,projection"/>
  10. <link href="css/style.css" type="text/css" rel="stylesheet" media="screen,projection"/>
  11. <link href="css/prism.css" type="text/css" rel="stylesheet" media="screen,projection"/>
  12. <style>
  13. html {
  14. height: 100%;
  15. }
  16. body {
  17. min-height: 100%;
  18. overflow: hidden;
  19. }
  20. footer {
  21. position: absolute;
  22. bottom: 0;
  23. width: 50%;
  24. }
  25. .col-1-2 {
  26. width: 50%;
  27. position: absolute;
  28. top: 0;
  29. }
  30. .col-1-2:first-child {
  31. border-right: 1px solid #ddd;
  32. bottom: 50px;
  33. }
  34. .col-1-2:last-child {
  35. left: 50%;
  36. bottom: 0;
  37. }
  38. #logo-container img {
  39. margin-top: 12px;
  40. max-height: 40px;
  41. }
  42. </style>
  43. </head>
  44. <body>
  45. <div class="main">
  46. <div class="col-1-2" style="overflow-y: scroll">
  47. <nav class="light-blue lighten-1" role="navigation">
  48. <div class="nav-wrapper container"><a id="logo-container" href="" class="brand-logo">
  49. <img src="img/logo_orange_pastille.png" alt="logo WCS" />
  50. <img src="img/logo_js.png" alt="logo JS" />
  51. </a>
  52. <ul class="right hide-on-med-and-down">
  53. <li><a href="#">Navbar Link</a></li>
  54. </ul>
  55. <ul id="nav-mobile" class="side-nav">
  56. <li><a href="#">Navbar Link</a></li>
  57. </ul>
  58. <a href="#" data-activates="nav-mobile" class="button-collapse"><i class="material-icons">menu</i></a>
  59. </div>
  60. </nav>
  61. <div class="container">
  62. <div class="section">
  63. <div class="row">
  64. <div class="col s12" id="root"></div>
  65. </div>
  66. </div>
  67. </div>
  68. </div>
  69. <div class="col-1-2">
  70. <iframe
  71. id="iframe"
  72. src="empty.html"
  73. frameborder="0"
  74. marginheight="0"
  75. marginwidth="0"
  76. height="100%" width="100%"
  77. style="overflow:hidden;width:100%;height:100%;"></iframe>
  78. </div>
  79. </div>
  80. <footer class="page-footer orange" style="padding-top: 0">
  81. <div class="footer-copyright">
  82. <div class="container">
  83. Made by <a class="orange-text text-lighten-3" href="http://materializecss.com">Materialize</a>
  84. </div>
  85. </div>
  86. </footer>
  87. <!-- Scripts-->
  88. <script src="https://code.jquery.com/jquery-2.1.1.min.js"></script>
  89. <script src="js/materialize.js"></script>
  90. <script src="js/init.js"></script>
  91. <script src="js/prism.js"></script>
  92. <script src="react-tuto/js/bundle.react.js"></script>
  93. <script>
  94. </script>
  95. </body>
  96. </html>