forked from systemoflevers/image_to_gb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
97 lines (85 loc) · 2.06 KB
/
index.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
<html>
<head>
<title>pic to gb</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<script src="components/pictogb.js" type="module"></script>
<style>
body {
display: flex;
flex-direction: column;
gap: 1em;
/*align-items: center;*/
}
#content {
align-self: center;
display: flex;
flex-direction: column;
border-style: solid;
/*padding-left: 3%;
padding-right: 3%;
padding-top: 6%;
padding-bottom: 8%;*/
border-radius: 3%;
border-bottom-right-radius: 15%;
background-color: #e7e7e7;
}
pic-to-gb {
display: block;
/*min-height: 90%;
width: 90%;*/
margin-top: 6%;
margin-left: 3%;
margin-right: 3%;
margin-bottom: 8%;
}
@media (min-aspect-ratio: 90 / 148) {
#content {
min-width: 27em;
}
}
@media (max-aspect-ratio: 90 / 148) {
#content {
width: 100%;
}
}
#footer {
display: flex;
flex-direction: column;
align-items: center;
justify-content: space-between;
gap: 3px;
}
#me-info {
display: flex;
flex-direction: column;
align-items: center;
}
/*@media (max-width: 480px) {
pic-to-gb {
min-height: 85%;
}
#footer {
gap: 2px;
}
}*/
</style>
</head>
<body>
<div id="content">
<pic-to-gb></pic-to-gb>
</div>
<div id="footer">
<div id="me-info">
<span>Made By Jesse</span>
<span>
<a href="https://systemoflevers.com">website</a>,
<a href="https://youtube.com/@systemoflevers">YouTube</a>
</span>
</div>
<script type='text/javascript' src='https://storage.ko-fi.com/cdn/widget/Widget_2.js'></script>
<script
type='text/javascript'>kofiwidget2.init('Support Me on Ko-fi', '#29abe0', 'A0A5RHM90'); kofiwidget2.draw();</script>
<span>source available on <a href="https://github.com/systemoflevers/image_to_gb">GitHub</a></span>
</div>
</body>
</html>