Blame view

_js/moodalbox/css/moodalbox.css 1.03 KB
42868d70   andryeyev   Создал GIT
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
  /* moodalbox CSS */
  
  div#mb_overlay {
  position: absolute;
  left: 0;
  width: 100%;
  background-color: #000;
  cursor: pointer;
  }
  
  div#mb_center, div#mb_bottom {
  position: absolute;
  left: 50%;
  overflow: hidden;
  background-color: #DDD;
  }
  
  div#mb_center {
  background-color: #FFF;
  }
  
  div#mb_contents {
  width: 400px;
  height: 400px;
  border: 10px solid #DDD;
  overflow: auto;
  background-color: #FFF;
  visibility: hidden;
  }
  
  .mb_loading {
  background: #DDD url(../img/loading.gif) no-repeat center center;
  }
  
  #mb_error {
  font-size: 1.2em;
  color: #CD0000;
  font-weight: bold;
  text-align: center;
  padding: 0.5em;
  font-family: Verdana, Helvetica, sans-serif;
  }
  
  #mb_error em {
  font-size: 0.8em;
  }
  
  div#mb_bottom {
  font-family: Verdana, Helvetica, sans-serif;
  font-size: 10px;
  color: #666;
  line-height: 1.4em;
  text-align: left;
  border: 10px solid #DDD;
  border-top-style: none;
  }
  
  a#mb_close_link {
  display: block;
  float: right;
  width: 66px;
  height: 22px;
  background: transparent url(../img/closelabel.gif) no-repeat center;
  margin: 5px 0;
  }
  
  div#mb_caption {
  margin-right: 71px;
  }