-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbubblyIdx.html
126 lines (117 loc) · 4.58 KB
/
bubblyIdx.html
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<script src="bower_components/webcomponentsjs/webcomponents-lite.min.js"></script>
<script>
/* this script must run before Polymer is imported */
window.Polymer = {
dom: 'shadow', //use shadow dom if possible
lazyRegister: true
};
</script>
<link rel="import" href="htwg-objects/htwg-thumbnail/htwg-thumbnail.html">
<link rel="import" href="htwg-objects/htwg-thumbnail-tagfilter/htwg-thumbnail-tagfilter.html">
<link rel="import" href="htwg-objects/htwg-swipe-menu/htwg-swipe-menu.html">
<link rel="import" href="bower_components/iron-input/iron-input.html">
<link rel="import" href="htwg-objects/htwg-bubble-frame/htwg-bubble-frame.html">
<link rel="import" href="htwg-objects/htwg-grid/htwg-grid.html">
<style is="custom-style" include="htwg-grid">
.wrapper{
position: fixed;
left: 0;
bottom: 0;
}
htwg-bubble-frame {
--bubble-frame-image: url("../../images/wikurewi.jpg");
}
.content-wrapper{
float: left;
display: inline-flex;
}
</style>
</head>
<body>
<div class="row" style="min-height: 100vh;">
<div class="col-16">
<htwg-bubble-frame>
<div class="row">
<div class="col-5 col-s-5 col-m-7 col-l-11"></div>
<div class="col-8 col-s-4 col-m-5 col-l-8">
<p class="content">
Der Alkoholgehalt der meisten Biersorten liegt in Deutschland und Österreich zwischen 4,5 % und 6 %.
</p>
</div>
<div class="col-5 col-s-6 col-m-8 col-l-10"></div>
<div class="col-8 col-s-4 col-m-5 col-l-8">
<p class="content">
Bier ist ein Nahrungs- und Genussmittel, das durch Gärung aus Malz oder aus stärkehaltiger Rohfrucht (Malzersatzstoffe) gewonnen und nicht destilliert wird.
</p>
</div>
<div class="col-3 col-s-5 col-m-7 col-l-11"></div>
</div>
</htwg-bubble-frame>
</div>
</div>
<div class="row" style="min-height: 100vh;">
<div class="col-16">
<htwg-bubble-frame>
<div class="row">
<div class="col-5 col-s-5 col-m-7 col-l-11"></div>
<div class="col-8 col-s-4 col-m-5 col-l-8">
<p class="content">
Im weiteren Sinne wird jedes alkoholhaltige Getränk, das auf Basis von verzuckerter Stärke hergestellt wird, ohne dass dabei ein Destillationsverfahren zum Einsatz kommen muss, als Bier bezeichnet.
</p>
</div>
<div class="col-5 col-s-6 col-m-8 col-l-10">"></div>
<div class="col-8 col-s-4 col-m-5 col-l-8">
<p class="content">
Bei der Herstellung des kohlensäure-haltigen Getränks werden Hopfen oder andere Würzstoffe zugesetzt[1], etwa Früchte, Kräuter wie Grut oder auch andere Gewürze.
</p>
</div>
</div>
</htwg-bubble-frame>
</div>
</div>
<div class="row" style="min-height: 100vh;">
<div class="col-16">
<htwg-bubble-frame>
<div class="row">
<div class="col-5 col-s-5 col-m-7 col-l-11"></div>
<div class="col-8 col-s-4 col-m-5 col-l-8">
<p class="content">
Im weiteren Sinne wird jedes alkoholhaltige Getränk, das auf Basis von verzuckerter Stärke hergestellt wird, ohne dass dabei ein Destillationsverfahren zum Einsatz kommen muss, als Bier bezeichnet.
</p>
</div>
<div class="col-5 col-s-6 col-m-8 col-l-10"></div>
<div class="col-8 col-s-4 col-m-5 col-l-8">
<p class="content">
Bei der Herstellung des kohlensäure-haltigen Getränks werden Hopfen oder andere Würzstoffe zugesetzt[1], etwa Früchte, Kräuter wie Grut oder auch andere Gewürze.
</p>
</div>
</div>
</htwg-bubble-frame>
</div>
</div>
<div class="row" style="min-height: 100vh;">
<div class="col-16">
<htwg-bubble-frame>
<div class="row">
<div class="col-5 col-s-5 col-m-7 col-l-11"></div>
<div class="col-8 col-s-4 col-m-5 col-l-8">
<p class="content">
Im weiteren Sinne wird jedes alkoholhaltige Getränk, das auf Basis von verzuckerter Stärke hergestellt wird, ohne dass dabei ein Destillationsverfahren zum Einsatz kommen muss, als Bier bezeichnet.
</p>
</div>
<div class="col-5 col-s-6 col-m-8 col-l-10"></div>
<div class="col-8 col-s-4 col-m-5 col-l-8">
<p class="content">
Bei der Herstellung des kohlensäure-haltigen Getränks werden Hopfen oder andere Würzstoffe zugesetzt[1], etwa Früchte, Kräuter wie Grut oder auch andere Gewürze.
</p>
</div>
</div>
</htwg-bubble-frame>
</div>
</div>
</body>
</html>