index.html 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124
  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. #root {
  43. padding: 30px;
  44. }
  45. .nav-wrapper {
  46. padding: 0 30px;
  47. }
  48. .pagination-wrapper {
  49. position: absolute;
  50. bottom: 10px;
  51. left: 0;
  52. width: 100%;
  53. text-align: center;
  54. }
  55. .pagination {
  56. display: inline-block;
  57. }
  58. /* a.breadcrumb {
  59. margin-top: 4px;
  60. } */
  61. .breadcrumb::before {
  62. color: #888;
  63. margin-top: -4px;
  64. }
  65. </style>
  66. </head>
  67. <body>
  68. <div class="main">
  69. <div class="col-1-2" style="overflow-y: scroll">
  70. <nav class="light-blue lighten-1" role="navigation">
  71. <div class="nav-wrapper"><a id="logo-container" href="" class="brand-logo">
  72. <img src="img/logo_orange_pastille.png" alt="logo WCS" />
  73. <img src="img/logo_js.png" alt="logo JS" />
  74. </a>
  75. <ul class="right hide-on-med-and-down">
  76. <li><a href="#">Navbar Link</a></li>
  77. </ul>
  78. <ul id="nav-mobile" class="side-nav">
  79. <li><a href="#">Navbar Link</a></li>
  80. </ul>
  81. <a href="#" data-activates="nav-mobile" class="button-collapse"><i class="material-icons">menu</i></a>
  82. </div>
  83. </nav>
  84. <div id="root"></div>
  85. </div>
  86. <div class="col-1-2">
  87. <iframe
  88. id="iframe"
  89. src="empty.html"
  90. frameborder="0"
  91. marginheight="0"
  92. marginwidth="0"
  93. height="100%" width="100%"
  94. style="overflow:hidden;width:100%;height:100%;"></iframe>
  95. </div>
  96. </div>
  97. <footer class="page-footer orange" style="padding-top: 0">
  98. <div class="footer-copyright">
  99. <div class="container">
  100. Made by <a class="orange-text text-lighten-3" href="http://materializecss.com">Materialize</a>
  101. </div>
  102. </div>
  103. </footer>
  104. <!-- Scripts-->
  105. <script src="https://code.jquery.com/jquery-2.1.1.min.js"></script>
  106. <script src="js/materialize.js"></script>
  107. <script src="js/init.js"></script>
  108. <script src="js/prism.js"></script>
  109. <script src="react-tuto/js/bundle.react.js"></script>
  110. <script>
  111. </script>
  112. </body>
  113. </html>