-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
154 lines (152 loc) · 4.17 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
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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Powerlifting score calculator by @perk.ee</title>
<meta
name="description"
content="Multiple score powerlifiting calculator"
/>
<meta
property="og:url"
content="https://plcalc.com"
/>
<meta property="og:title" content="Powerlifting Calculator" />
<meta property="og:type" content="website" />
<meta
property="og:description"
content="Multiple score powerlifiting calculator"
/>
<meta property="og:image" content="/img/content_preview.png" />
<meta property="og:site_name" content="Powerlifting Calculator" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:site" content="@perkee" />
<meta name="twitter:creator" content="@perkee" />
<meta name="twitter:image" content="/img/content_preview.png" />
<meta name="twitter:image:alt" content="Powerlifitng Calculator demo depicting inputs and outputs" />
<script>
var key = localStorage.getItem('key');
if (key && window.location.pathname === '/') {
window.location.pathname = key;
}
</script>
<script src="https://browser.sentry-cdn.com/5.7.0/bundle.min.js" integrity="sha384-pHnCJ3bbzJ+LzI19wAdyBvGAjJ5vNAC59uxeRpw5WpgkSlZUQstEADxkSbBnI95q" crossorigin="anonymous"></script>
<!-- <link rel="stylesheet" href="./node_modules/bootstrap/dist/css/bootstrap.min.css"> -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha256-YLGeXaapI0/5IgZopewRJcFXomhRMlYYjugPLSyNjTY=" crossorigin="anonymous" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.9.0/css/all.min.css" integrity="sha256-UzFD2WYH2U1dQpKDjjZK72VtPeWP50NoJjd26rnAdUI=" crossorigin="anonymous" />
<!-- <link rel="stylesheet" href="./node_modules/font-awesome/css/font-awesome.min.css"> -->
<style>
select.form-control-sm {
font-size: 16px; /* prevent zoom without zooming back out on mobile */
}
.progress {
height: 100%;
min-height: 2em;
}
.table .body-cell--index {
vertical-align: middle;
text-align: center;
font-size: 1.2em;
}
.body-cell--note,
.title-cell--note{
min-width: 7em;
max-width: 12em;
}
.note-input--table,
.note-input--card {
min-width: 7rem;
max-width: 12rem;
width: 100%;
}
[class*="title-cell--"] {
white-space: nowrap;
}
.table-sm .title-cell--sortable {
padding-right: .75rem
}
.title-cell--wilks,
.title-cell--allo,
.title-cell--ipf,
.title-cell--sc-allo,
.title-cell--mcculloch,
.body-cell--wilks,
.body-cell--allo,
.body-cell--ipf,
.body-cell--sc-allo,
.body-cell--mcculloch {
min-width: 7em;
}
.progress-bar {
text-align: left;
padding: 0 0 0 .75em;
}
th {
position: relative
}
th .fa {
height: 2.2em;
position: absolute;
right: 0.25em;
top: 0;
line-height: 2.2em;
}
.body-cell--label,
.title-cell--label {
max-width: 2rem;
min-width: 1.5rem;
}
.note-input--card {
float: right;
}
@media (min-width: 576px) {
.card-columns {
column-count: 1;
}
}
.card-header {
line-height: 2.425rem;
}
.card-edit,
.card-delete {
float: right;
display: block;
margin-left: 1rem;
}
@media (max-width: 575px) {
.lift-card__block {
padding-left: 0;
padding-right: 0;
}
}
.lift-card td {
vertical-align: middle;
}
.lift-card .index {
vertical-align: middle;
}
.lift-card .note {
max-width: 20%;
}
.lift-card .note-input {
min-width: 4rem;
max-width: 7rem;
z-index: 2;
}
.lift-card__data-row .index {
position: relative;
}
@media (min-width: 576px) {
.lift-card__block {
padding-left: 0;
padding-right: 0;
}
}
</style>
<script src="./index.js"></script>
</head>
<body>
</body>
</html>