Advertisement
lerasdn

Untitled

Jun 21st, 2019
119
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.11 KB | None | 0 0
  1. .theblogmenu {
  2. position:relative;
  3. left:16%;
  4. width:63%;
  5. }
  6.  
  7. .theblogmenu ul {
  8.     list-style:none;
  9.     margin:0;
  10.     padding:0;
  11. }
  12.  
  13. .theblogmenu ul:before,.theblogmenu ul:after {
  14.     content:"";
  15.     display:table;
  16. }
  17. .theblogmenu ul:after {
  18.     clear:both;
  19. }
  20. .theblogmenu ul > li {
  21.  
  22.    float:left;
  23.     position:relative;
  24. }
  25. .theblogmenu a {
  26.     display:block;
  27.     padding:10px 20px;
  28.     line-height:1.2em;
  29.     text-decoration:none;
  30. font-weight:bold;
  31. color:  #ffbc69;
  32.  
  33. font-size:233%;
  34. }
  35. .theblogmenu a:hover {
  36.     text-decoration:none;
  37.     background:#595959;
  38.  
  39. }
  40. .theblogmenu li ul {
  41.     background:transparent;
  42.   position:absolute;
  43.     left:0;
  44.     top:64px;
  45.     z-index:1;
  46. transition:0.635s;
  47.  
  48. }
  49. .theblogmenu li ul li {
  50.     width:auto;
  51.  overflow:hidden;
  52.     height:0;
  53. }
  54.  
  55. .theblogmenu li:hover ul {
  56.   background:rgba(130,130,130,0.86);
  57. turansition:ease 0.635s;
  58. }
  59.  
  60. .theblogmenu li ul a {
  61.     border:none;
  62.  
  63.  
  64. }
  65. .theblogmenu li ul li a:hover {
  66.     background:rgba(255,181,197,0.2);
  67.  
  68. }
  69.  
  70.  
  71. .theblogmenu ul > li:hover ul li {
  72. transition:ease;
  73.    height:auto;
  74. font-size:63%;
  75.  
  76.  
  77. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement