-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.css
75 lines (65 loc) · 1.16 KB
/
main.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
html, body {
min-height: 100vh;
min-height: -webkit-fill-available;
}
#content{
/* height: 100%; */
min-height: 100vh;
position:relative;
display:flex;
justify-content:center;
align-items:center;
top:0;
z-index:30;
color: #fccbcb;
/* max-width:600px; */
margin:auto;
pointer-events:none;
flex-direction:column;
opacity:0;
/* max-width: calc(100vw - 4px); */
}
/*? is ios:*/
@supports (-webkit-touch-callout: none) {
/* CSS specific to iOS devices */
#content{
min-height: -webkit-fill-available;
}
}
.card{
position:relative;
/* flex-grow:1; */
/* max-width: calc(100vw - 8px); */
width: min(800px, calc(100vw - 53px));
height: 500px;
padding:20px;
display:flex;
flex-direction: column;
justify-content:flex-end;
/* align-items:flex-end; */
}
.border{
border: 2px solid #fccbcb;
}
#address{
/* width: 50%; */
}
.stamp{
position:absolute;
top: 20px;
right:20px;
width:100px;
height:100px;
}
text{
font-size:43px;
/* text-transform:uppercase; */
letter-spacing: 8px;
display:block;
margin-top: 2px;
font-family: Sans-Serif;
}
text.small{
font-size:36px;
letter-spacing: 4px;
}