Advertisement
Guest User

Untitled

a guest
Feb 21st, 2017
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.22 KB | None | 0 0
  1. @font-face{
  2. font-family: "Kankin";
  3. src: url(../fonts/Kankin.ttf);
  4. }
  5.  
  6. *{
  7. margin: 0;
  8. padding: 0;
  9. }
  10.  
  11. header{
  12. min-width: 900px;
  13. min-height: 150px;
  14.  
  15. background: #454545;
  16.  
  17. }
  18.  
  19. header>div{
  20. padding-top: 26px;
  21. }
  22.  
  23. header>div div{
  24. display: inline-block;
  25. float: left;
  26. }
  27.  
  28. .container{
  29. width: 900px;
  30. min-height: 100px;
  31. margin: 0 auto;
  32.  
  33. text-align: center;
  34. }
  35.  
  36. .logo{
  37. display: block;
  38. position: relative;
  39. width: 100px;
  40. height: 100px;
  41. background: #fff;
  42. border-radius: 50px;
  43. }
  44.  
  45. .logo div{
  46. position: absolute;
  47. height: 73px;
  48. width: 78px;
  49. top: 12px;
  50. left: 15px;
  51. background: url(../images/logo3.png) no-repeat;
  52. }
  53.  
  54.  
  55.  
  56. .menubar{
  57. margin-left: 10%;
  58. margin-top: 2%;
  59.  
  60. font-family: Kankin;
  61. }
  62.  
  63. .menu{
  64. list-style-type: none;
  65. }
  66. .menu li{
  67. float: left;
  68. border-left: 2px solid #555555;
  69. }
  70. .menu li:last-child{
  71. border-right: 2px solid #555555;
  72. }
  73. .menu a{
  74. color: #fff;
  75. display: block;
  76. font-size: 1.5em;
  77. padding: 20px;
  78. text-decoration: none;
  79. }
  80. .menu a:hover{
  81. color: #ff4d00;
  82. }
  83.  
  84. /*.yo{
  85. padding: 0;
  86. position: absolute;
  87. top: 150px;
  88. height: 11px;
  89. width: auto;
  90. background: url(../images/fon5.png) repeat-x;
  91. }*/
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement