Advertisement
Guest User

Untitled

a guest
Dec 5th, 2016
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.73 KB | None | 0 0
  1. @import "bootstrap";
  2. @import "font-awesome";
  3.  
  4. $enable-flex: true;
  5.  
  6. $purple: #8E44AD;
  7. $grey: #6B6B6B;
  8. $dark-grey: #4A4A4A;
  9. $white: #ffffff;
  10.  
  11. body {
  12. font-family: "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
  13. font-weight: 300;
  14. display: flex;
  15. min-height: 100vh;
  16. flex-direction: column;
  17. }
  18.  
  19. .navbar-static-top {
  20. background-color: $purple;
  21. height: 78px;
  22. border-radius: 0;
  23. a {
  24. color: $white;
  25. }
  26. }
  27.  
  28. a.nav-link {
  29. padding: 1em;
  30. line-height: 45px;
  31. font-size: 20px;
  32. }
  33.  
  34. .jumbotron {
  35. height: 359px;
  36. -moz-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  37. -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  38. box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  39. border-radius: 0;
  40. background: url(/assets/img/hero.png) no-repeat fixed;
  41. -webkit-background-size: cover;
  42. -moz-background-size: cover;
  43. -o-background-size: cover;
  44. background-size: cover;
  45. }
  46.  
  47. .btn.btn-outline-secondary.btn-lg {
  48. color: $white;
  49. }
  50.  
  51. .proposal {
  52. font-weight: lighter;
  53. font-size: 38px;
  54. color: $white;
  55. }
  56.  
  57. .lead {
  58. font-size: 21px;
  59. line-height: 1.25;
  60. color: $white;
  61. }
  62.  
  63. a.btn.btn-outline-secondary.btn-lg {
  64. font-weight: 300;
  65. }
  66.  
  67. .row.center-row {
  68. display: flex;
  69. justify-content: center;
  70. }
  71.  
  72. .text-question {
  73. color: $purple;
  74. font-size: 42px;
  75. font-weight: 300;
  76. }
  77.  
  78. .heading {
  79. color: $purple;
  80. font-weight: 300;
  81. font-size: 30px;
  82. }
  83.  
  84. .footer {
  85. flex: 0 0 auto;
  86. }
  87.  
  88. .d-table {
  89. display: table;
  90. }
  91.  
  92. address {
  93. border-left: 2px solid $grey;
  94. padding-left: 15px;
  95. color: #9A9A9A;
  96. }
  97.  
  98. p.text-md-right.contact {
  99. font-size: 22px;
  100. color: #9A9A9A;
  101. margin-bottom: 10px;
  102. }
  103.  
  104. a {
  105. &.footer-email {
  106. color: $purple;
  107. font-size: 16px;
  108. }
  109. &.nav-link.admin {
  110. font-size: 20px;
  111. color: $dark-grey;
  112. }
  113. }
  114.  
  115. .submenu {
  116. height: 96px;
  117. background-color: #EDEDED;
  118. }
  119.  
  120. .nav-tabs {
  121. border-bottom: 1px solid #EDEDED;
  122. }
  123.  
  124. a.nav-link.tab {
  125. font-size: 19px;
  126. font-weight: 400;
  127. height: 47px;
  128. width: 91px;
  129. }
  130.  
  131. .nav-tabs {
  132. .nav-item.open .nav-link {
  133. color: $grey;
  134. &:focus, &:hover {
  135. color: $grey;
  136. }
  137. }
  138. .nav-link.active {
  139. color: $grey;
  140. &:focus, &:hover {
  141. color: $grey;
  142. }
  143. }
  144. }
  145.  
  146. a.btn.btn-primary {
  147. background-color: $purple;
  148. border-color: $purple;
  149. }
  150.  
  151. img {
  152. &.current-user {
  153. border-radius: 50%;
  154. margin-top: 15px;
  155. margin-bottom: 15px;
  156. width: 142px;
  157. height: 140px;
  158. }
  159. &.table-user {
  160. border-radius: 50%;
  161. width: 80px;
  162. height: 80px;
  163. }
  164. }
  165.  
  166. span.real-name {
  167. color: $dark-grey;
  168. font-size: 20px;
  169. font-weight: 400;
  170. }
  171.  
  172. tr.row {
  173. height: 121px;
  174. background-color: #F6F4FB;
  175. }
  176.  
  177. .table {
  178. td, th {
  179. vertical-align: middle;
  180. border-top: 3px solid $white;
  181. border-bottom: 2px solid $white;
  182. }
  183. }
  184.  
  185. .breadcrumbs {
  186. font-weight: 500;
  187. color: $grey;
  188. letter-spacing: 1.1px;
  189. font-size: 22px;
  190. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement