Advertisement
Guest User

Untitled

a guest
Aug 28th, 2015
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.27 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="no">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>Elias sin node.js</title>
  6. <link href='https://fonts.googleapis.com/css?family=Source+Sans+Pro' rel='stylesheet' type='text/css'>
  7. <style>
  8. * {
  9. padding: 0;
  10. margin: 0;
  11. }
  12. body {
  13. background-color: #1d1d1d;
  14. font-family: "Source Sans Pro", sans-serif;
  15. }
  16. header {
  17. background-color: #3d3d3d;
  18. }
  19. nav {
  20. background-color: #2d2d2d;
  21. text-align: center;
  22. }
  23. nav > ul {
  24. height: 30px;
  25. max-width: 720px;
  26. margin: 0 auto 0 auto;
  27. }
  28. nav > ul:after {
  29. content: " ";
  30. display: block;
  31. width: 0;
  32. height: 0;
  33. clear: both;
  34. }
  35. nav > ul >li {
  36. float: left;
  37. list-style-type: none;
  38. position: relative;
  39. }
  40. nav > ul > li.active > a {
  41. color: Yellow;
  42. }
  43. nav > ul >li.active:after > a {
  44. top: 100%;
  45. left: 50%;
  46. border: solid transparent;
  47. content: " ";
  48. height: 0;
  49. width: 0;
  50. position: absolute;
  51. pointer-events: none;
  52. border-color: rgba(3,3,0,0);
  53. border-top-color: #303030;
  54. border-width: 15px;
  55. margin-left: -15px;
  56.  
  57. }
  58. nav > ul >li:first-child a {
  59. border: none;
  60. }
  61. nav > ul >li > a {
  62. color: #cccccc;
  63. font-size: 14px;
  64. border-left: 1px solid rgba(109, 109, 109, 0.4);
  65. text-transform: uppercase;
  66. text-decoration: none;
  67. padding-left: 12px;
  68. padding-right: 12px;
  69. }
  70. nav > ul >li > a:hover {
  71. text-decoration: underline;
  72. color: rgb(126,169,21);
  73. text-shadow: 0px 0px 30px #FFF;
  74. }
  75.  
  76. #logo {
  77. width: 182px;
  78. margin-top: 30px;
  79. margin-right: auto;
  80. margin-bottom: 30px;
  81. margin-left: auto;
  82. }
  83.  
  84. </style>
  85. </head>
  86. <body>
  87.  
  88. <header>
  89. <div id="inner-header">A linux ...</div>
  90. <nav>
  91. <img id="logo" src="node%20js%20logo.svg">
  92. <ul>
  93. <li class="active">
  94. <a href="#">Home</a>
  95. </li>
  96. <li>
  97. <a href="#">Downloads</a>
  98. </li>
  99. <li>
  100. <a href="#">Docs</a>
  101. </li>
  102. <li>
  103. <a href="#">Foundation</a>
  104. </li>
  105. <li>
  106. <a href="#">Community</a>
  107. </li>
  108. <li>
  109. <a href="#">About</a>
  110. </li>
  111. <li>
  112. <a href="#">Jobs</a>
  113. </li>
  114. <li>
  115. <a href="#">Blog</a>
  116. </li>
  117. <li>
  118. <a href="#">Contribute</a>
  119. </li>
  120.  
  121. </ul>
  122. </nav>
  123. </header>
  124.  
  125. </body>
  126. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement