Advertisement
Guest User

Proiect

a guest
Apr 26th, 2015
204
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 4.77 KB | None | 0 0
  1.  
  2. /*About*/
  3. .about.header {
  4.     background-image: url('../../assets/images/header1.jpg');
  5.     background-repeat: no-repeat;
  6.     background-position: center;
  7.     background-size: cover;
  8.     position: relative;
  9.     padding-top: 70px;
  10. }
  11.  
  12. .about.header .container {
  13.     margin-top: 15%;
  14.     color: white;
  15. }
  16.  
  17. .about.header h1 {
  18.     font-weight: 600;
  19.     font-size: 48px;
  20. }
  21.  
  22. .about.header p {
  23.     font-weight: 300;
  24.     font-size: 24px;
  25. }
  26.  
  27. .about .section-1 {
  28.     padding: 150px 0;
  29. }
  30.  
  31. .about .section-1 h2, .about .section-2 h2, .about.section-3 h2 {
  32.     font-size: 32px;
  33.     color: #c7840f;
  34.     margin-bottom: 60px;
  35.     font-weight: 600;
  36. }
  37.  
  38. .about .section-1 p, .about.section-3 p  {
  39.     font-weight: 300;
  40.     font-size: 20px;
  41. }
  42.  
  43. .about.section-2 {
  44.     padding: 70px 0;
  45.     background-image: url('../../assets/images/section-how.jpg');
  46.     background-repeat: no-repeat;
  47.     background-position: center;
  48.     background-size: cover;
  49. }
  50.  
  51. .about.section-2 h3 {
  52.     color: #c7840f;
  53.     margin: 20px 0;
  54. }
  55.  
  56. .about.section-2 p {
  57.     font-weight: 300;
  58.     font-size: 16px;
  59. }
  60.  
  61. .about.section-3 {
  62.     padding: 100px 0;
  63. }
  64.  
  65. .about.section-3 .info-data {
  66.     margin-top: 50px;
  67. }
  68.  
  69. .about.section-3 .info-data span {
  70.     font-size: 60px;
  71.     color: #c7840f;
  72.     display: block;
  73. }
  74.  
  75. .about.section-3 .info-data font {
  76.     color: #cf9849;
  77.     font-size: 20px;
  78.     top: -15px;
  79.     position: relative;
  80. }
  81.  
  82. .about.section-3 .info-data p {
  83.     font-size: 16px;
  84. }
  85.  
  86. .about.section-3 .info-data > div {
  87.     border-right: 1px solid #999;
  88. }
  89.  
  90. .about.section-3 .info-data > div:last-child {
  91.     border: none;
  92. }
  93.  
  94. .about.section-4 {
  95.     padding: 100px 0;
  96.     background: #e6e6e6;
  97. }
  98.  
  99. .about.section-4 h2 {
  100.     font-size: 32px;
  101.     margin-bottom: 50px;
  102.     font-weight: 300;
  103. }
  104.  
  105. .about.section-4 span {
  106.     font-weight: bold;
  107.     font-size: 22px;
  108. }
  109.  
  110. .about.section-4 p {
  111.     font-size: 20px;
  112.     font-weight: 300;
  113. }
  114.  
  115. .about.section-4 .team-img {
  116.     margin-top: 30px;
  117.     display: flex;
  118.     flex-direction: row;
  119.     flex-wrap: wrap;
  120.     justify-content: space-around;
  121.     align-items: center;
  122. }
  123.  
  124. .about.section-4 .team-img>div {
  125.     margin-bottom: 20px;
  126.     position: relative;
  127. }
  128.  
  129. .about.section-4 .team-img>div>div {
  130.     display: none;
  131.     position: absolute;
  132.     left: 0;
  133.     top: 0;
  134.     width: 100%;
  135.     height: 100%;
  136.     overflow: hidden;
  137.     padding: 5px;
  138.     padding-top: 60%;
  139.     background: rgba(201, 149, 61, .7);
  140.     text-align: center;
  141.     color: white;
  142. }
  143.  
  144. .about.section-4 .team-img>div>div>font {
  145.     display: block
  146. }
  147.  
  148. .about.section-4 .team-img>div>div>p {
  149.     font-size: 14px
  150. }
  151.  
  152. .about.section-5 {
  153.     padding: 100px 0;
  154. }
  155.  
  156. .about.section-5 h2 {
  157.     font-size: 32px;
  158.     margin-bottom: 40px;
  159. }
  160.  
  161. .about.section-5 p {
  162.     font-size: 16px;
  163. }
  164.  
  165. .about.section-5 .author {
  166.     margin-top: 20px;
  167. }
  168.  
  169. .about.section-5 .author span {
  170.     font-size: 17px;
  171.     font-weight: bold;
  172.     display: block;
  173. }
  174.  
  175. .about.section-5 .author font {
  176.     font-size: 16px;
  177.     font-weight: 300;
  178. }
  179.  
  180. /*Clients*/
  181. .clients.header {
  182.     background-image: url('../../assets/images/header-clients.jpg');
  183.     background-repeat: no-repeat;
  184.     background-position: center;
  185.     background-size: cover;
  186.     position: relative;
  187.     padding-top: 70px;
  188. }
  189.  
  190. .clients.header .container {
  191.     margin-top: 15%;
  192.     color: white;
  193. }
  194.  
  195. .clients.header h1 {
  196.     font-weight: 600;
  197.     font-size: 48px;
  198. }
  199.  
  200. .clients.header p {
  201.     font-weight: 300;
  202.     font-size: 24px;
  203. }
  204.  
  205. .clients.form-list {
  206.     padding: 100px 0;
  207. }
  208.  
  209. .clients.form-list select {
  210.     padding: 5px 20px;
  211.     margin: 0;
  212.     border-radius: 0;
  213.     color:#333;
  214.     border: 1px solid #333;
  215.     outline:none;
  216.     display: inline-block;
  217.     -webkit-appearance:none;
  218.     -moz-appearance:none;
  219.     appearance:none;
  220.     cursor:pointer;
  221.     background-color: transparent;
  222.     background-image: url(../../assets/images/ico-down.png);
  223.     background-repeat: no-repeat;
  224.     background-position: 90% center;
  225.     font-size: 18px;
  226.     background-size: 14px 9px;
  227.     padding-right: 45px;
  228. }
  229.  
  230. .clients.form-list .form {
  231.     margin-bottom: 100px;
  232.     margin-left: 2.5%;
  233. }
  234.  
  235. .list-result {
  236.     width: 85%;
  237.     display: inline-block;
  238.     text-align: left;
  239.     margin-bottom: 30px;
  240.     padding-bottom: 20px;
  241.     border: 1px solid #c9c9c9;
  242. }
  243.  
  244. .list-result:hover {
  245.     border-color: #c7840f; 
  246. }
  247.  
  248. .list-result img {
  249.     width: 100%;   
  250. }
  251.  
  252. .list-result p {
  253.     margin: 15px;
  254. }
  255.  
  256. .list-result a {
  257.     margin-left: 15px;
  258.     margin-bottom: 15px;
  259.     color: black;
  260. }
  261.  
  262. .list-result a:after {
  263.     content: '→';
  264.     display: inline-block;
  265.     color: black;
  266. }
  267.  
  268. .list-result a:hover {
  269.     color: #aaa;
  270. }
  271.  
  272. .clients.form-list .col-md-4:nth-child(3n+1) {
  273.     clear: both;   
  274. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement