Advertisement
Guest User

Untitled

a guest
Jun 19th, 2019
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.43 KB | None | 0 0
  1. <html lang="en">
  2. <head>
  3. <meta charset="UTF-8">
  4. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  5. <meta http-equiv="X-UA-Compatible" content="ie=edge">
  6. <title>Nastavnik Notifikacije</title>
  7. <style typye = "text/css">
  8. html, body{
  9. background: #001C47;
  10. margin: 0;
  11. padding: 0;
  12. }
  13. .glavniDivHeadera{
  14. display:flex;
  15. }
  16. .slikaDiv{
  17. width:8%;
  18. margin-top:2%;
  19. margin-left:2%;
  20. }
  21. .textHeaderDiv{
  22. width:80%;
  23. text-align: center;
  24. }
  25. .middleNavbar{
  26. display: flex;
  27. flex-direction: row-reverse;
  28. margin-right:2%;
  29. }
  30.  
  31. .glavniDivBody{
  32. background:#55AA00;
  33. display:flex;
  34. flex-direction: column;
  35. justify-content: center;
  36. align-items: center;
  37. margin-left:2%;
  38. margin-right:2%;
  39. }
  40. .auto-style1 {
  41. color: black;
  42. }
  43. .auto-style2{
  44. color:white;
  45. }
  46. .Place{
  47. border-style: solid;
  48. border-width: 2px;
  49. display: flex;
  50. justify-content: space-evenly;
  51. }
  52. .Kocka{
  53. width:200px;
  54. height: 200px;
  55. background: purple;
  56. }
  57. table, th, td {
  58. border: 1px solid black;
  59. }
  60. </style>
  61. </head>
  62. <body>
  63. <div class="glavniDivHeadera">
  64. <div class="slikaDiv">
  65. <img src="../Slike/default-user-image.png" alt="Smiley face" height="154" width="152">
  66. </div>
  67. <div class="textHeaderDiv">
  68. <div>
  69. <h1 class="auto-style2">Dobrodošli!</h1>
  70. </div>
  71. <div>
  72. <p class="auto-style1">
  73. <select id="selectBar1" name="D1">
  74. <option value="0">Izaberi dijete:</option>
  75. <option value="1">Dijete 1</option>
  76. <option value="2">Dijete 2</option>
  77. </select></p>
  78. </div>
  79. <div class="custom-select" style="width:200px;">
  80. &nbsp;</div>
  81. </div>
  82. <div>
  83. <button style="background: #ff9966"><label style="color:white">Odjavi se</label></button>
  84. </div>
  85. </div>
  86.  
  87. <div class="middleNavbar">
  88. <button>Ocjene</button>
  89. <button>Izostanci</button>
  90. <button>Profesori</button>
  91. </div>
  92.  
  93. <div class="glavniDivBody">
  94. <div style="background: white; width:50%; margin-top: 30px; margin-bottom: 30px;">
  95. <div class="Place">
  96. <table id="tabela" style="width:100%">
  97. <tr>
  98. <th>Datum </th>
  99. <th>Prisutan/na </th>
  100. <th>Napomena </th>
  101. </tr>
  102. <tr>
  103. <td>datum1</td>
  104. <td>DA</td>
  105. </tr>
  106. <tr>
  107. <td>datum2</td>
  108. <td>NE</td>
  109. <td><input type="checkbox" name="opravdano" value="checked"> Opravdano?</td>
  110. </tr>
  111. <tr>
  112. <td>datum2</td>
  113. <td>NE</td>
  114. <td><input type="checkbox" name="opravdano" value="checked"> Opravdano?</td>
  115. </tr>
  116. </table>
  117. </div>
  118. </div>
  119. </div>
  120. </body>
  121. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement