Advertisement
Guest User

Untitled

a guest
Mar 18th, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.37 KB | None | 0 0
  1.  
  2. /*FONTS*/
  3.  
  4. @import url('https://fonts.googleapis.com/css?family=Roboto+Condensed:300,300i,400,400i,700,700i');
  5. @import url('https://fonts.googleapis.com/css?family=Roboto:300,300i,400,400i,500,500i,700,700i,900,900i');
  6.  
  7.  
  8. /*GENERAL*/
  9.  
  10. body {
  11. background: #dfe4e6;
  12. font-family: 'Roboto Condensed', sans-serif;
  13. }
  14.  
  15.  
  16. body{
  17. background: #fff;
  18. }
  19.  
  20. .h1, .h2, .h3, .h4, .h5{
  21. margin-bottom: 1.5rem;
  22. }
  23.  
  24. .fa{
  25. font-size: 16px;
  26. }
  27.  
  28.  
  29. /*BASIC WRAPPER*/
  30.  
  31. .wrapper{
  32. height: 100%;
  33. padding: 2rem;
  34. border-radius: 5px;
  35. }
  36.  
  37.  
  38. /*MENU*/
  39.  
  40. .top-menu{
  41. background: #374249;
  42. height: 70px;
  43. border-radius: 5px 5px 0 0;
  44. font-family: 'Roboto Condensed', sans-serif;
  45. }
  46.  
  47. .top-menu a{
  48. border-right: solid #465157 1px;
  49. color: #727b7f;
  50. display: block;
  51. float: left;
  52. font-size: 14px;
  53. padding: 4px 40px 4px;
  54. text-decoration: none;
  55. position: relative;
  56. top: 21px;
  57. }
  58.  
  59. .top-menu a:hover{
  60. color: #727b7f;
  61. text-decoration: none;
  62. }
  63.  
  64. .top-menu a .active{
  65. color: #fff;
  66. border-bottom: 3px solid #45a7b9;
  67. padding: 0 5px 3px;
  68. }
  69.  
  70. .top-menu .a-logo{
  71. top:0;
  72. height: 100%;
  73. padding: 0;
  74. background: #45a7b9;
  75. border-radius: 5px 0 0 0;
  76.  
  77. }
  78.  
  79. .logo{
  80. top:15px;
  81. padding: 0 5rem;
  82. position: relative;
  83. }
  84.  
  85. .logo .fa{
  86. font-size: 40px;
  87. color: #f7826c;
  88. }
  89.  
  90. .top-menu .item{
  91. /**/
  92. }
  93.  
  94. .top-menu .item:hover{
  95. color: #fff;
  96. border-bottom: 3px solid #45a7b9;
  97. }
  98.  
  99.  
  100. #search-input{
  101. float: right;
  102. top:17px;
  103. right: 2rem;
  104. width: 220px
  105. }
  106.  
  107.  
  108. /*CENTER-WRAPPER*/
  109.  
  110. .center-block{
  111. border: 1px solid #ddd;
  112. border-width: 0px 1px 1px 1px;
  113. padding-bottom: 5rem;
  114. margin-bottom: 3rem;
  115. border-radius: 0 0 5px 5px;
  116. min-height: 100%;
  117. }
  118.  
  119.  
  120. .button {
  121. background: #ec7b65;
  122. border-radius: 50px;
  123. color: #fff;
  124. margin-left: 10px;
  125. padding: 8px 17px;
  126. text-transform: uppercase;
  127. font-size: 12px;
  128. position: relative;
  129. top: 15px;
  130. }
  131.  
  132. .button:hover {
  133. background: #f7826c;
  134. }
  135.  
  136. .button .fa {
  137. margin-left: 5px;
  138. }
  139.  
  140.  
  141. /*INFO*/
  142.  
  143. .info{
  144. padding: 10px;
  145. }
  146.  
  147. .inner-div{
  148. padding: 20px;
  149. border-right: 1px solid #ddd;
  150. border-bottom: 1px solid #ddd;
  151. }
  152.  
  153. .info .left-h{
  154. margin-bottom: 1rem;
  155. /*font-size: 20px;*/
  156. }
  157.  
  158.  
  159. /*MAIN*/
  160.  
  161. .main{
  162. margin-top: 30px;
  163.  
  164. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement