ninchuser

Updates Tab 1 CSS

Apr 7th, 2018
400
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.39 KB | None | 0 0
  1. article#update {
  2.     position:fixed;
  3.     padding:30px;
  4.     top:20px;
  5.     left:20px;
  6. }
  7.  
  8. span.icon {
  9.     background:{color:Update Icon Background};
  10.     width:30px;
  11.     height:30px;
  12.     margin-bottom:5px;
  13.     display:inline-flex;
  14.     align-items:center;
  15.     justify-content:center;
  16.     border-radius:50%;
  17.     transition:all .5s ease-in-out;
  18. }
  19.  
  20. span.lnr {
  21.     cursor:pointer;
  22.     color:{color:Update Icon};
  23.     transition:all .5s ease-in-out;
  24. }
  25.  
  26. div.tab {
  27.     display:none;
  28.     margin-top:-5px!important;
  29. }
  30.  
  31. div.tab-content {
  32.     background:{color:Update Tab Background};
  33.     width:200px;
  34.     margin-left:36px;
  35.     padding:7px;
  36.     font-family:'Muli';
  37.     font-size:12px;
  38.     border-radius:10px;
  39.     color:{color:Update Tab Text};
  40. }
  41.  
  42. div.tab ul {
  43.     margin:0;
  44.     list-style-type:none;
  45.     -webkit-padding-start:10px!important;
  46. }
  47.  
  48. div.tab li {
  49.     list-style-type:none;
  50. }
  51.  
  52. div.tab li:before {
  53.     content:'-';
  54.     padding-right:5px;
  55. }
  56.  
  57. div.tab a {
  58.     color:{color:Update Tab Link};
  59.     text-decoration:none;
  60.     box-shadow:inset 0 -2px 0 {color:Update Tab Link Border};
  61.     transition:all .5s ease-in-out;
  62. }
  63.  
  64. div.tab a:hover {
  65.     box-shadow:inset 0 -7px 0 {color:Update Tab Link Border};
  66. }
  67.  
  68. span.title {
  69.     display:none;
  70.     margin-left:5px;
  71.     font-family:'Muli';
  72.     font-size:14px;
  73.     color:{color:Update Tab Title};
  74. }
  75.  
  76. div.ud {
  77.     width:250px;
  78. }
Advertisement
Add Comment
Please, Sign In to add comment