Advertisement
Guest User

Untitled

a guest
Feb 8th, 2016
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.96 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <body bgcolor="#E6E6FA">
  4. <center><h1>AucIt</h1></center>
  5.  
  6. <nav>
  7. <ul>
  8. <li style="font-size: 20px"><a href="#">Sign Up</a></li>
  9. <li style="font-size:20px"><a href="#">Login</a></li>
  10. <li style="font-size:20px"><a href="#">List</a></li>
  11.  
  12. </ul>
  13.  
  14. </nav>
  15.  
  16. <h2>Most recent:</h2>
  17.  
  18. </body>
  19. </html>
  20.  
  21. <!DOCTYPE html>
  22. <html>
  23. <head>
  24. <title>AucIt</title>
  25. <%= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track' => true %>
  26. <%= javascript_include_tag 'application', 'data-turbolinks-track' => true %>
  27. <%= csrf_meta_tags %>
  28. </head>
  29. <body>
  30.  
  31. <%= yield %>
  32.  
  33. </body>
  34. </html>
  35.  
  36. nav {
  37. background-color: orange;
  38. height: 9px;
  39. width: 1272px;
  40. padding-bottom: 50px;
  41. }
  42. nav ul li {
  43. list-style-type: none;
  44. width: 150px;
  45. float: right;
  46. border-right: 1px solid #CCC;
  47. text-align: center;
  48. }
  49. li a {
  50. text-decoration: none;
  51. color: blue;
  52. line-height: 60px;
  53. display:block;
  54. }
  55. li a:hover {
  56. background-color: gray;
  57. color: black;
  58. }
  59. h2{
  60. padding-top: 280px;
  61.  
  62. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement