Blame view

frontend/web/css/style.css 3.33 KB
78d55ffe   Eugeny Galkovskiy   first commit
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
  .box-simple h3{letter-spacing: 0.02em;}
  .navbar ul.nav > li > a {letter-spacing: 0.01em;}
  #back-to-top{background: #269cda;}
  
  .icon_en{border:none;}
  .icon_en#icon01{background-image:url('../img/icons/icon01.png');}
  .icon_en#icon02{background-image:url('../img/icons/icon02.png');}
  .icon_en#icon03{background-image:url('../img/icons/icon03.png');}
  .icon_en#icon04{background-image:url('../img/icons/icon04.png');}
  .icon_en#icon05{background-image:url('../img/icons/icon05.png');}
  .icon_en#icon06{background-image:url('../img/icons/icon06.png');}
  .icon_en#icon07{background-image:url('../img/icons/icon07.png');}
  .icon_en#icon08{background-image:url('../img/icons/icon08.png');}
  .icon_en#icon09{background-image:url('../img/icons/icon09.png');}
  .icon_en#icon10{background-image:url('../img/icons/icon10.png');}
  
  .block-why .icon.icon_why{width: 124px;height: 124px;color: #fff;border-radius: 50%;border: none;}
  .icon_why#icon01{background-image:url('../img/why/icon_1.png');}
  .icon_why#icon02{background-image:url('../img/why/icon_2.png');}
  .icon_why#icon03{background-image:url('../img/why/icon_3.png');}
  .icon_why#icon04{background-image:url('../img/why/icon_4.png');}
  .icon_why#icon05{background-image:url('../img/why/icon_5.png');}
  
  .background-kben{background-image:url('../img/pattern_kb_01.gif');}
  .background-kben.block-why{margin-top: 60px;box-shadow: inset 0px -100px 200px -100px rgba(0, 0, 0, 0.5);}
  .showcase .item h4{color: #ffffff;}
  .project-right p{margin-top:10px;color: #555555;}
  .project-right{margin-bottom: 25px;}
  .project-right a img{max-width:100%;}
  .background-kben .heading h2{text-shadow: 0px 10px 35px rgba(0, 0, 0, 0.1);}
  .background-kben .heading h2, .background-kben .box-simple h3, .background-kben .box-simple p{color: #fff;}
  .background-kben.block-why .box-simple h3{margin: 5px 0;margin-top: 15px;color: #ffd800;}
  
  .project-right{
      border-bottom: 1px solid #cccccc;
      padding-bottom: 25px;
      max-width: 320px;
      padding-left: 0;
      margin-left: auto;
      margin-right: auto;
  }
  .project-right:last-child{
      border-bottom:none;
  }
  .project-right .pr_title {
      font-weight: bold;
      font-size: 16px;
      margin-top: 0;
      text-transform: uppercase;
  }
  .project-right a{text-decoration:none;}
  .pr_cover{
      width: 320px;
      height: 180px;
      overflow: hidden;
      display: inline-block;
  }
  .project-right .open_gal img{
      object-fit: cover;
      width: 320px;
      height: 180px;
  }
  /*.project-right:last-child .open_gal{display: none;}*/
  .video-wrapper{
      display: block;
      width:100%;
      height:100%;
      max-width: 960px;
      max-height: 640px;
      margin: 30px auto;
      vertical-align: middle;
fe24f476   Eugeny Galkovskiy   Кнопки 1
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
  }
  .button1{
      margin: 0 auto;
      color: black;
      text-transform: uppercase;
      background-color: #ffd800;
      text-decoration: none;
      cursor: pointer;
      transition: 0.3s;
      display: inline-block;
      text-align: center;
      font-weight: bold;
      width: 250px;
      padding: 12px 0;
      font-size: 16px;
      line-height: 18px;
      background-position: 20px center;
      background-repeat: no-repeat;
  }
  .button1.icon_stat{background-image: url(../img/icon_stat.png);}
  .button1 span{
      display: block;
      font-weight: normal;
      font-size: 14px;
  }
  .button1:hover {
      text-decoration:none;
      color: black;
      background-color: #ffe764;
      box-shadow: inset 0px 0px 0px 2px black, 0px 0px 20px rgba(0,0,0,0.2)!important;
      transition: 0.3s;
78d55ffe   Eugeny Galkovskiy   first commit
103
  }