Guest User

Untitled

a guest
Jan 16th, 2018
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.41 KB | None | 0 0
  1. <!DOCTYPE html>
  2.  
  3. <meta charset="UTF-8">
  4. <title>Ensintech</title>
  5. <link rel="stylesheet" href="lib/bootstrap/css/bootstrap.min.css">
  6. <link rel="stylesheet" href="css/style.css">
  7. <meta name="viewport" content="width=device-width, initial-scale=1">
  8. <link rel="stylesheet" href="css/style-mobile.css">
  9.  
  10. </head>
  11.  
  12. <body>
  13. <header>
  14.  
  15. <div class="container">
  16. <div class="row">
  17. <nav id="menu">
  18. <ul>
  19. <li><a class="adm" placeholder href="#">Área administrativa / Docente</a></li>
  20. <li><a class="aluno" href="#">Área do Aluno</a></li>
  21. </ul>
  22. </nav>
  23. </div>
  24. </div>
  25. <img id="logotipo" src="img/ensintech.png" alt="Logotipo">
  26.  
  27. </header>
  28.  
  29. <div class="container">
  30. <div class="intro">
  31. <img src="img/Egrande.png" id="centro">
  32. <p id="acesso" style="font-size:32px">
  33. Acesso Aluno
  34. </p>
  35. <p id="subtitulo">
  36. Digite seus dados de login para acessar o sistema
  37. </p>
  38. <form action="act_login.cfm" method="post" target="escondido">
  39. <div class="form-group">
  40. <input type="email" class="form-control " id="email" placeholder="E-mail">
  41. </div>
  42. <div class="form-group">
  43. <input type="password" class="form-control" id="password" placeholder="Senha">
  44. </div>
  45. </form>
  46. <button id="entrar" type="submit" class="form-control">Entrar </button>
  47. </div>
  48. </div>
  49. <center><p class="copyright">&copy; 2018 - Ensintech - Todos os direitos reservados</p></center>
  50. <div id="rodape"></div>
  51.  
  52. <script src="lib/jquery/jquery.min.js"></script>
  53. <script src="lib/bootstrap/js/bootstrap.min.js"></script>
  54. </body>
  55.  
  56. *{
  57. box-sizing: border-box;
  58. }
  59. html, body {
  60. width: 100%;
  61. height: 100%;
  62. font-family: Arial, Tahoma, sans-serif;
  63. }
  64. body{
  65. background-image:url(../img/Testing-banner2.jpg);
  66. background-size: cover;
  67. background-position: center;
  68. background-repeat: no-repeat;
  69. display: block;
  70. font-size: 16px;
  71. margin: 0;
  72. padding: 0;
  73. }
  74. header{
  75. width:100%;
  76. height:121px;
  77. background-color: #693;
  78. border-bottom: 6px solid #487f1e;
  79. }
  80. header #logotipo {
  81. /*margin-left: 111px;*/
  82. text-align:center;
  83. display:none;
  84. margin-top: -95px;
  85. position: absolute;
  86. }
  87. .row {
  88. margin-right: -3px;
  89. margin-left: -15px;
  90. }
  91. #centro {
  92. position: absolute;
  93. top: 25%;
  94. left: 35%;
  95. }
  96. #menu ul{
  97. width: 100%;
  98. padding: 12px;
  99. margin-left: 12px;
  100. margin-top: 15px;
  101. background-color: #693;
  102. list-style: none;
  103. position: relative;
  104. }
  105. #menu ul li a {
  106. color: #fff;
  107. padding: 2px 10px;
  108. display:block;
  109. text-decoration: none;
  110. background: #693;
  111. }
  112. a.adm{
  113. margin-bottom: 11px;
  114. margin-top: -9px;
  115. margin-left: 72px;
  116. }
  117. a.aluno{
  118. margin-bottom: 11px;
  119. margin-top: 22px;
  120. margin-left: 130px;
  121. }
  122. #acesso {
  123.  
  124. margin-top:-130px;
  125.  
  126. }
  127. .container p {
  128. text-align: center;
  129. margin-left: -595px;
  130. color: #fff;
  131. font-weight: bold;
  132. }
  133. form {
  134. margin-left:-450px;
  135. }
  136. #email {
  137. width: 300px;
  138. border-radius: 0;
  139. }
  140. #password {
  141. width: 300px;
  142. border-radius: 0;
  143. }
  144. #entrar{
  145. width: 300px;
  146. margin-left: -450px;
  147. }
  148. p.copyright {
  149. color: #666;
  150. margin-left: 6px;
  151. margin-top: 22px;
  152. }
Add Comment
Please, Sign In to add comment