Advertisement
Guest User

Untitled

a guest
Jan 17th, 2017
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.64 KB | None | 0 0
  1. <<<<<<<<<<<<<<<<<<<<<<<<< INDEX.HTML >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
  2.  
  3. <div class="uff">
  4. <ul class="snip1211">
  5. <li class="current"><a href="#">Home</a></li>
  6. <li><a href="#">About Us</a></li>
  7. <li><a href="#">Blog</a></li>
  8. <li><a href="#">Services</a></li>
  9. <li><a href="#">Products</a></li>
  10. <li><a href="#">Contact</a></li>
  11. </ul></div>
  12.  
  13. <<<<<<<<<<<<<<<<<<<<<<<<<<<<<< MAIN.CSS >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
  14.  
  15.  
  16.  
  17.  
  18.  
  19. div.uff{
  20. background-color:#c7c7c7;
  21. content: '';;
  22. height:48px;
  23.  
  24. border-radius: 8px;
  25. border-color: #fff;
  26. -webkit-transform-origin: 0 100%;
  27. transform-origin: 0 100%;
  28.  
  29. }
  30. .snip1211 {
  31. font-family: 'Raleway', Arial, sans-serif;
  32. text-align: center;
  33. text-transform: uppercase;
  34.  
  35. letter-spacing: 1px;
  36. }
  37. .snip1211 * {
  38. -webkit-box-sizing: border-box;
  39. box-sizing: border-box;
  40. -webkit-transition: all 0.35s ease;
  41. transition: all 0.35s ease;
  42. }
  43. .snip1211 li {
  44. display: inline-block;
  45. list-style: outside none none;
  46. margin: 0.5em 1.5em;
  47. padding: 0;
  48. }
  49. .snip1211 a {
  50. padding: 0.4em 0;
  51. color: rgba(0,0,0,1);
  52. font-weight:bold;
  53. position: relative;
  54. text-decoration: none;
  55. display: inline-block;
  56. }
  57. .snip1211 a:before {
  58. position: absolute;
  59. content: '';
  60. -webkit-transition: all 0.35s ease;
  61. transition: all 0.35s ease;
  62. opacity: 0;
  63. top: 25%;
  64. bottom: 25%;
  65. left: 0;
  66. right: 0;
  67. border-top: 3px solid #34495e;
  68. border-bottom: 3px solid #34495e;
  69. }
  70. .snip1211 a:hover,
  71. .snip1211 .current a {
  72. color: #1874CD;
  73. }
  74. .snip1211 a:hover:before,
  75. .snip1211 .current a:before {
  76. opacity: 1;
  77. top: 0;
  78. bottom: 0;
  79. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement