Advertisement
Guest User

Untitled

a guest
Nov 17th, 2019
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.33 KB | None | 0 0
  1. @font-face {
  2. font-family: bankgothic;
  3. src: url('../fonts/bankgothic.ttf');
  4. }
  5.  
  6. @font-face {
  7. font-family: pcdown;
  8. src: url('../fonts/pdown.ttf');
  9. }
  10.  
  11. @font-face {
  12. font-family: 'Montserrat', sans-serif;
  13. src: url('https://fonts.googleapis.com/css?family=Montserrat');
  14. }
  15.  
  16. .menu {
  17. font-family : 'Quantico', sans-serif;
  18. font-weight : 600;
  19. min-width : 300px;
  20. text-transform : none;
  21. color : #FFF;
  22. box-shadow : 1px 1px 7px rgba(50, 50, 50, 0.8);
  23. position : absolute;
  24. }
  25.  
  26.  
  27. .menu.align-left {
  28. left: 40;
  29. top : 50%;
  30. transform: translate(0, -50%);
  31. }
  32.  
  33. .menu.align-top-left {
  34. left: 40;
  35. top : 40;
  36. }
  37.  
  38. .menu.align-top {
  39. left: 50%;
  40. top : 40;
  41. transform: translate(-50%, 0);
  42. }
  43.  
  44. .menu.align-top-right {
  45. right: 40;
  46. top : 40;
  47. }
  48.  
  49. .menu.align-right {
  50. right: 40;
  51. top : 50%;
  52. transform: translate(0, -50%);
  53. }
  54.  
  55. .menu.align-bottom-right {
  56. right : 40;
  57. bottom: 40;
  58. }
  59.  
  60. .menu.align-bottom {
  61. left : 50%;
  62. bottom: 40;
  63. transform: translate(-50%, 0);
  64. }
  65.  
  66. .menu.align-bottom-left {
  67. left : 40;
  68. bottom: 40;
  69. }
  70.  
  71. .menu.align-center {
  72. left : 50%;
  73. top : 50%;
  74. transform: translate(-50%, -50%);
  75. }
  76.  
  77. .menu .head {
  78. background-color: rgba(50, 50, 50, 0.8);
  79. color: grey;
  80. text-align : center;
  81. opacity : 1.0;
  82. font-size : 12px;
  83. line-height : 30px;
  84. text-transform: uppercase;
  85. }
  86.  
  87. .menu .head {
  88. position:relative;
  89. overflow:hidden;
  90. text-align:center;
  91. }
  92.  
  93. .menu .head:before,.menu .head:after {
  94. content:" ";
  95. position:absolute;
  96. top:50%;
  97. margin-left:-999em;
  98. width:998em;
  99. border-top:1px solid rgba(37, 37, 37, 0.781);
  100. }
  101.  
  102. .menu .head:after {
  103. left:auto;
  104. width:998em;
  105. margin:0 0 0 1em;
  106. }
  107.  
  108. .menu .menu-items {
  109. max-height : 400px;
  110. overflow-y : hidden;
  111. background-color: rgba(50, 50, 50, 0.8);
  112. }
  113.  
  114. .menu .menu-items .menu-item {
  115. height : 45px;
  116. display : block;
  117. background-color: rgba(50, 50, 50, 0.8);
  118. height : 36px;
  119. line-height : 36px;
  120. color : grey;
  121. text-indent : 5px;
  122. text-align : center;
  123. border: 1px solid rgba(37, 37, 37, 0.781);
  124. font-size: 14px;
  125. margin: 3px;
  126. }
  127.  
  128. .menu .menu-items .menu-item.selected {
  129. background-color: rgb(68, 68, 68);
  130. color : rgb(255,255,255);
  131. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement