Blame view

frontend/web/css/custom.css 3.62 KB
f5002842   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
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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
  /* your styles go here */
  /* CSS used here will be applied after bootstrap.css */
  .modal-header-success {
      color: #fff;
      padding: 9px 15px;
      border-bottom: 1px solid #eee;
      background-color: #5cb85c;
      -webkit-border-top-left-radius: 5px;
      -webkit-border-top-right-radius: 5px;
      -moz-border-radius-topleft: 5px;
      -moz-border-radius-topright: 5px;
      border-top-left-radius: 5px;
      border-top-right-radius: 5px;
  }
  
  .modal-header-warning {
      color: #fff;
      padding: 9px 15px;
      border-bottom: 1px solid #eee;
      background-color: #f0ad4e;
      -webkit-border-top-left-radius: 5px;
      -webkit-border-top-right-radius: 5px;
      -moz-border-radius-topleft: 5px;
      -moz-border-radius-topright: 5px;
      border-top-left-radius: 5px;
      border-top-right-radius: 5px;
  }
  
  .modal-header-danger {
      color: #fff;
      padding: 9px 15px;
      border-bottom: 1px solid #eee;
      background-color: #d9534f;
      -webkit-border-top-left-radius: 5px;
      -webkit-border-top-right-radius: 5px;
      -moz-border-radius-topleft: 5px;
      -moz-border-radius-topright: 5px;
      border-top-left-radius: 5px;
      border-top-right-radius: 5px;
  }
  
  .modal-header-info {
      color: #fff;
      padding: 9px 15px;
      border-bottom: 1px solid #eee;
      background-color: #5bc0de;
      -webkit-border-top-left-radius: 5px;
      -webkit-border-top-right-radius: 5px;
      -moz-border-radius-topleft: 5px;
      -moz-border-radius-topright: 5px;
      border-top-left-radius: 5px;
      border-top-right-radius: 5px;
  }
  
  .modal-header-primary {
      color: #fff;
      padding: 9px 15px;
      border-bottom: 1px solid #eee;
      background-color: #428bca;
      -webkit-border-top-left-radius: 5px;
      -webkit-border-top-right-radius: 5px;
      -moz-border-radius-topleft: 5px;
      -moz-border-radius-topright: 5px;
      border-top-left-radius: 5px;
      border-top-right-radius: 5px;
  }
  
  .modal-header-theme {
      color: #fff;
      padding: 9px 15px;
      border-bottom: 1px solid #eee;
      background-color: #38a7bb;
      -webkit-border-top-left-radius: 5px;
      -webkit-border-top-right-radius: 5px;
      -moz-border-radius-topleft: 5px;
      -moz-border-radius-topright: 5px;
      border-top-left-radius: 5px;
      border-top-right-radius: 5px;
  }
  .has-success .form-control {
      border-color: #d6e9c6;
  }
  
  .has-error .form-control {
      border-color: #ebccd1;
  }
  
  #back-to-top {
      position: fixed;
      top: 100px;
      left: 0;
      z-index: 9999;
      width: 40px;
      height: 40px;
      text-align: center;
      line-height: 30px;
      background: #38a7bb;
      color: #fff;
      cursor: pointer;
      text-decoration: none;
      transition: opacity 0.2s ease-out;
      opacity: 0;
      padding: 4px 1px 4px 0;
  }
  
  #back-to-top:hover {
      background: #20616d;
      color: #fff;
  }
  
  #back-to-top.show {
      opacity: 1;
  }
  
  #top .social a:hover.vk {
      background: #507299;
  }
  
  #top .social a:hover.odnoklassniki {
      background: #ee8208;
  }
  
  #navigation .navbar-nav ul.dropdown-menu li.active a {
      background: none;
      color: white;
  }
  
  #navigation .navbar-nav ul.dropdown-menu li.active {
      background: #38a7bb;
6daf3e16   Eugeny Galkovskiy   h1-h6 to span
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
  }
  
  span.panel-title{
      display: inline-block;
      border-bottom: solid 5px #986dbd;
      line-height: 1.1;
      margin-bottom: 0;
      padding-bottom: 10px;
  }
  
  #footer span.title{
      font-size: 14px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: #eeeeee;
      margin-top: 10px;
      margin-bottom: 10px;
      display: inline-block;
  }
  
  #heading-breadcrumbs span.main {
      color: #333333;
      text-transform: uppercase;
      font-size: 30px;
      font-weight: 700;
      letter-spacing: 0.08em;
      margin-top: 20px;
      margin-bottom: 20px;
      display:inline-block;
      line-height: 1.1;
f5002842   Eugeny Galkovskiy   first commit
161
  }