-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathstyle.css
More file actions
128 lines (108 loc) · 1.98 KB
/
Copy pathstyle.css
File metadata and controls
128 lines (108 loc) · 1.98 KB
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
/* Grundstyles */
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 20px;
background: #f5f5f5;
}
h1, h2 {
margin-top: 0;
}
/* Export Button */
#export-container {
text-align: right;
margin-bottom: 10px;
}
#exportPDF {
padding: 8px 16px;
font-size: 14px;
cursor: pointer;
}
/* Header für Lean Canvas */
#lean-canvas-header {
margin-bottom: 20px;
text-align: center;
}
/* Grid-Layout für den Lean Canvas */
.canvas {
display: grid;
grid-template-columns: repeat(5, 1fr);
grid-template-rows: auto auto auto;
grid-gap: 10px;
grid-template-areas:
"problem solution unique-value-proposition unfair-advantage customer-segment"
"problem key-metrics unique-value-proposition channels customer-segment"
"cost-structure cost-structure cost-structure revenue-streams revenue-streams";
background: #fff;
padding: 10px;
border: 2px solid #333;
}
/* Positionierung der einzelnen Bereiche */
#problem {
grid-area: problem;
}
#solution {
grid-area: solution;
}
#unique-value-proposition {
grid-area: unique-value-proposition;
}
#unfair-advantage {
grid-area: unfair-advantage;
}
#customer-segment {
grid-area: customer-segment;
}
#key-metrics {
grid-area: key-metrics;
}
#channels {
grid-area: channels;
}
#cost-structure {
grid-area: cost-structure;
}
#revenue-streams {
grid-area: revenue-streams;
}
/* Stil für die Inhalte */
.canvas-item {
border: 1px solid #ccc;
padding: 10px;
background: #fafafa;
overflow: auto;
}
.content ul {
padding-left: 20px;
margin: 0;
}
/* Todo Bereich */
#todo-container {
margin-top: 20px;
border: 1px solid #ccc;
padding: 10px;
background: #fafafa;
}
#todo-container h2 {
margin: 0 0 10px 0;
cursor: pointer;
}
/* Print Styles: DIN A4 im Querformat */
@page {
size: A4 landscape;
margin: 10mm;
}
@media print {
body {
background: none;
padding: 0;
}
#export-container, header {
display: none;
}
.canvas {
border: none;
padding: 0;
margin: 0;
}
}