Skip to content
This repository was archived by the owner on Mar 13, 2025. It is now read-only.

Commit 4c9db9f

Browse files
committed
fix: issue #562
1 parent 6d9afd5 commit 4c9db9f

File tree

1 file changed

+41
-13
lines changed

1 file changed

+41
-13
lines changed

src/server/misc/routes/index.html

+41-13
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,13 @@
44
<meta charset="UTF-8">
55
<title></title>
66
<style>
7-
body {
7+
html {
88
font-family: -apple-system,BlinkMacSystemFont,"Segoe UI","Roboto","Oxygen","Ubuntu","Cantarell","Fira Sans","Droid Sans","Helvetica Neue",sans-serif;
9+
-webkit-font-smoothing: antialiased;
10+
font-size: 10pt;
911
}
1012
.top-bar {
11-
margin-top: 100px;
13+
margin-top: 20px;
1214
display: flex;
1315
flex-direction: row;
1416
align-items: center;
@@ -54,16 +56,16 @@
5456
width: 100%;
5557
}
5658
.slot-cancelview h2 {
57-
font-size: 20px;
58-
line-height: 30px;
59-
font-weight: 450;
59+
font-size: 2.1rem;
60+
line-height: 3rem;
61+
font-weight: 400;
6062
}
6163

6264
.slot-cancelview h4 {
63-
font-size: 12px;
64-
line-height: 17px;
65-
font-weight: 500;
6665
margin: 10px;
66+
font-size: 1.2rem;
67+
line-height: 1.7rem;
68+
font-weight: 400;
6769
}
6870
.left-panel {
6971
margin-top: 40px;
@@ -109,6 +111,35 @@
109111
.right-panel form button {
110112
margin: 20px auto;
111113
}
114+
.tick-mark {
115+
position: relative;
116+
display: inline-block;
117+
width: 45px;
118+
height: 50px;
119+
margin-bottom: 30px;
120+
}
121+
.tick-mark::before {
122+
position: absolute;
123+
left: 0;
124+
top: 50%;
125+
height: 50%;
126+
width: 6px;
127+
background-color: #336699;
128+
content: "";
129+
transform: translateX(10px) rotate(-45deg);
130+
transform-origin: left bottom;
131+
}
132+
.tick-mark::after {
133+
position: absolute;
134+
left: 0;
135+
bottom: 0;
136+
height: 6px;
137+
width: 100%;
138+
background-color: #336699;
139+
content: "";
140+
transform: translateX(10px) rotate(-45deg);
141+
transform-origin: left bottom;
142+
}
112143
</style>
113144
</head>
114145
<body>
@@ -123,16 +154,13 @@ <h2>
123154
<%= week %><br />
124155
<%= startDate %>
125156
</h2>
126-
<h4>
127-
<%= startTime %> - <%= endTime %>
128-
</h4>
129-
<h4><%= page_slug %></h4>
130-
<h4>virtual calendar</h4>
157+
<h4><%= startTime %> - <%= endTime %><br/><%= page_slug %> virtual calendar</h4>
131158
<p><%= tz %></p>
132159
</div>
133160
</div>
134161
<div class="divider"></div>
135162
<div class="right-panel">
163+
<div class='tick-mark'></div>
136164
<h3>You're all set.</h3>
137165
<div class="label">Your response has been recorded</div>
138166
</div>

0 commit comments

Comments
 (0)