-
Notifications
You must be signed in to change notification settings - Fork 0
/
csstemplate.css
125 lines (107 loc) · 1.79 KB
/
csstemplate.css
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
/*
* Datenbankvorlage Kartenabfrage
* @Autor 2021 Florian Dagner
* Drog.js v1.2.1
* [Back-compatibility: IE11+]
* Copyright (c) 2021, Emanuel Rojas Vásquez
* BSD 3-Clause License
* https://github.com/erovas/Drog.js
*/
.board {
display: flex;
flex-wrap: wrap;
}
.table {
max-width: 1200px;
}
[data-drog] {
cursor: move;
min-height: 50px;
}
.item {
}
#setcolor fieldset {
display: flex;
flex-direction: row;
gap: 4px;
}
.userpicture, .userinitials.size-64 {
width: 50px;
height: 50px;
}
.karte img {
max-width: 270px;
}
audio,
video {
max-width: 99%;
}
.karte2 img {
max-width: 800px;
}
.karte {
box-shadow: silver 4px 4px 4px;
width: 276px;
margin-right: 25px;
margin-bottom: 25px;
padding: 4px;
-webkit-column-break-inside: avoid;
-moz-column-break-inside: avoid;
column-break-inside: avoid;
background-color: #fff;
border-radius: 10px 10px 10px 10px;
}
.karte2 {
box-shadow: silver 4px 4px 4px;
width: 810px;
margin-right: 25px;
margin-bottom: 25px;
padding: 4px;
-webkit-column-break-inside: avoid;
-moz-column-break-inside: avoid;
column-break-inside: avoid;
border-radius: 10px 10px 10px 10px;
}
.comment-list,
.comment-ctrl {
font-size: 0.8rem;
}
.hidden {
display: none;
}
canvas {
border: 1px solid black;
}
.dataurlview {
max-width: 100%;
background-size: 100% auto;
}
/* Style für Druck */
@media print {
/* Not displayed in print version. */
#page-header,
#page-footer,
.intro,
.nav-tabs,
.datapreferences,
.btn-secondary,
i.icon,
.comment-area,
.pagination,
input,
.activity-navigation,
.activity-information,
.fixed-top,
.container,
.mbsmenubar,
.top-bar,
#me-wrapper,
.body img,
#mbsmenubar,
#mebis-footer,
#menu-sidebar-menu,
.row {
display: none;
background: none;
}
}