Subversion-Projekte lars-tiefland.ci

Revision

Details | Letzte Änderung | Log anzeigen | RSS feed

Revision Autor Zeilennr. Zeile
875 lars 1
div.dt-button-info {
2
  position: fixed;
3
  top: 50%;
4
  left: 50%;
5
  width: 400px;
6
  margin-top: -100px;
7
  margin-left: -200px;
8
  background-color: white;
9
  border: 2px solid #111;
10
  box-shadow: 3px 3px 8px rgba(0, 0, 0, 0.3);
11
  border-radius: 3px;
12
  text-align: center;
13
  z-index: 21;
14
}
15
div.dt-button-info h2 {
16
  padding: 0.5em;
17
  margin: 0;
18
  font-weight: normal;
19
  border-bottom: 1px solid #ddd;
20
  background-color: #f3f3f3;
21
}
22
div.dt-button-info > div {
23
  padding: 1em;
24
}
25
 
26
ul.dt-button-collection.dropdown-menu {
27
  display: block;
28
  z-index: 2002;
29
  -webkit-column-gap: 8px;
30
  -moz-column-gap: 8px;
31
  -ms-column-gap: 8px;
32
  -o-column-gap: 8px;
33
  column-gap: 8px;
34
}
35
ul.dt-button-collection.dropdown-menu.fixed {
36
  position: fixed;
37
  top: 50%;
38
  left: 50%;
39
  margin-left: -75px;
40
}
41
ul.dt-button-collection.dropdown-menu.fixed.two-column {
42
  margin-left: -150px;
43
}
44
ul.dt-button-collection.dropdown-menu.fixed.three-column {
45
  margin-left: -225px;
46
}
47
ul.dt-button-collection.dropdown-menu.fixed.four-column {
48
  margin-left: -300px;
49
}
50
ul.dt-button-collection.dropdown-menu > * {
51
  -webkit-column-break-inside: avoid;
52
  break-inside: avoid;
53
}
54
ul.dt-button-collection.dropdown-menu.two-column {
55
  width: 300px;
56
  padding-bottom: 1px;
57
  -webkit-column-count: 2;
58
  -moz-column-count: 2;
59
  -ms-column-count: 2;
60
  -o-column-count: 2;
61
  column-count: 2;
62
}
63
ul.dt-button-collection.dropdown-menu.three-column {
64
  width: 450px;
65
  padding-bottom: 1px;
66
  -webkit-column-count: 3;
67
  -moz-column-count: 3;
68
  -ms-column-count: 3;
69
  -o-column-count: 3;
70
  column-count: 3;
71
}
72
ul.dt-button-collection.dropdown-menu.four-column {
73
  width: 600px;
74
  padding-bottom: 1px;
75
  -webkit-column-count: 4;
76
  -moz-column-count: 4;
77
  -ms-column-count: 4;
78
  -o-column-count: 4;
79
  column-count: 4;
80
}
81
 
82
div.dt-button-background {
83
  position: fixed;
84
  top: 0;
85
  left: 0;
86
  width: 100%;
87
  height: 100%;
88
  z-index: 2001;
89
}