-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCooking Coupon.html
76 lines (64 loc) · 1.54 KB
/
Cooking Coupon.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
<link href="https://fonts.googleapis.com/css?family=Roboto:100,300,400,900&display=swap" rel="stylesheet">
<div class="showcase">
<div class="container">
<div class="borderContainer">
<p class="text title">Cooking Coupon</p>
<p class="text subtitle">1234567890, Peter Mustermann</p>
<p class="text subtitle subsubtitle">"1x Dinner for two"</p>
<p class="text centeredtext">* Only valid while hungry *</p>
</div>
</div>
</div>
<style>
.showcase {
width: 100%;
height: 100%;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.container {
padding: 4rem;
box-shadow: 0 19px 38px rgba(0,0,0,0.30), 0 15px 12px rgba(0,0,0,0.22);
border-radius: 30px;
background-color: #42378f;
background-image: linear-gradient(315deg, #42378f 0%, #f53844 74%);
}
.borderContainer {
height: 180px;
width: 300px;
display: flex;
flex-direction: column;
justify-content: flex-start;
padding: 0rem 1.5rem;
border-left: 1px solid white;
border-right: 1px solid white;
}
.text {
margin: 0 0 0.25rem 0;
font-family: Roboto;
}
.title {
color: white;
font-weight: normal;
font-size: 2.5rem;
font-family: Roboto;
margin-bottom: 0px;
}
.subtitle {
color: white;
font-weight: 100;
}
.subsubtitle {
color: white;
font-weight: 100;
font-size: 0.75rem;
}
.centeredtext {
color: white;
font-weight: 100;
margin-top: auto;
align-self: center;
}
</style>