BraydenMoore commited on
Commit
9e59f44
·
verified ·
1 Parent(s): 32881b4

Update templates/index.html

Browse files
Files changed (1) hide show
  1. templates/index.html +8 -8
templates/index.html CHANGED
@@ -5,7 +5,7 @@
5
 
6
  <meta property="og:title" content="a random unsecured camera" />
7
  <meta property="og:image" content="{{ url_for('static', filename='searching.png') }}" />
8
- <meta property="og:url" content="https://unsecuredcamera.com" />
9
 
10
  <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css">
11
  <link rel="preload" href="{{ url_for('static', filename='eye.gif') }}" as="image">
@@ -52,7 +52,7 @@
52
  margin-bottom: 0px;
53
  margin-top: 0px !important;
54
  border-bottom: 2px solid yellow;
55
- color:rgbvar(--text-color);
56
  font-family: 'Helvetica'; font-weight: 50;
57
  }
58
  .pulse {
@@ -143,7 +143,7 @@
143
  background-color: transparent;
144
  border-radius: 5px;
145
  text-decoration: none;
146
- color:rgbvar(--text-color);
147
  transition: 0.5s ease;
148
  }
149
  .hoverButton {
@@ -236,7 +236,7 @@
236
  </a>
237
  <!--<a class="abortButton" href="?new=false&id={{ id }}" id="refreshSameFeedButton" style="display: inline-block;">-->
238
  <a class="abortButton" href="?new=false&id={{ id }}" id="refreshSameFeedButton" style="display: inline-block;">
239
- <button class="hoverButton" style="border-radius: 5px; border: 2px solid rgbvar(--text-color); background-color: transparent; padding: 10px;">
240
  refresh
241
  </button>
242
  </a>
@@ -245,7 +245,7 @@
245
  <p id="copied" class="tag" style="visibility: hidden;">copied</p>
246
  </div>
247
 
248
- <p id="info-text" style="color:rgbvar(--text-color); font-family: 'Helvetica'; font-weight: 50;">
249
 
250
  time: <span id="time"></span><br>
251
 
@@ -255,7 +255,7 @@
255
  lat, lon: {{ loc }}
256
  </span>
257
 
258
- <span id="show-more">more <i style="margin-bottom:20px; color:rgbvar(--text-color);" id="more-button" class="fa-solid fa-caret-down"></i></span>
259
 
260
  <span class="tag"><br>a brayden moore website<br></span>
261
  thanks for visiting<br>
@@ -475,10 +475,10 @@
475
  if (additionalInfo.style.height === '0px') {
476
  const scrollHeight = additionalInfo.scrollHeight;
477
  additionalInfo.style.height = `${scrollHeight}px`;
478
- showMore.innerHTML = 'less <i style="margin-bottom:20px; color:rgbvar(--text-color);" id="more-button" class="fa-solid fa-caret-up"></i>';
479
  } else {
480
  additionalInfo.style.height = '0';
481
- showMore.innerHTML = 'more <i style="margin-bottom:20px; color:rgbvar(--text-color);" id="more-button" class="fa-solid fa-caret-down"></i>';
482
  }
483
  });
484
  });
 
5
 
6
  <meta property="og:title" content="a random unsecured camera" />
7
  <meta property="og:image" content="{{ url_for('static', filename='searching.png') }}" />
8
+ <meta property="og:url" content="https://unsecuredcamera.com" />
9
 
10
  <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css">
11
  <link rel="preload" href="{{ url_for('static', filename='eye.gif') }}" as="image">
 
52
  margin-bottom: 0px;
53
  margin-top: 0px !important;
54
  border-bottom: 2px solid yellow;
55
+ color:var(--text-color);
56
  font-family: 'Helvetica'; font-weight: 50;
57
  }
58
  .pulse {
 
143
  background-color: transparent;
144
  border-radius: 5px;
145
  text-decoration: none;
146
+ color:var(--text-color);
147
  transition: 0.5s ease;
148
  }
149
  .hoverButton {
 
236
  </a>
237
  <!--<a class="abortButton" href="?new=false&id={{ id }}" id="refreshSameFeedButton" style="display: inline-block;">-->
238
  <a class="abortButton" href="?new=false&id={{ id }}" id="refreshSameFeedButton" style="display: inline-block;">
239
+ <button class="hoverButton" style="border-radius: 5px; border: 2px solid var(--text-color); background-color: transparent; padding: 10px;">
240
  refresh
241
  </button>
242
  </a>
 
245
  <p id="copied" class="tag" style="visibility: hidden;">copied</p>
246
  </div>
247
 
248
+ <p id="info-text" style="color:var(--text-color); font-family: 'Helvetica'; font-weight: 50;">
249
 
250
  time: <span id="time"></span><br>
251
 
 
255
  lat, lon: {{ loc }}
256
  </span>
257
 
258
+ <span id="show-more">more <i style="margin-bottom:20px; color:var(--text-color);" id="more-button" class="fa-solid fa-caret-down"></i></span>
259
 
260
  <span class="tag"><br>a brayden moore website<br></span>
261
  thanks for visiting<br>
 
475
  if (additionalInfo.style.height === '0px') {
476
  const scrollHeight = additionalInfo.scrollHeight;
477
  additionalInfo.style.height = `${scrollHeight}px`;
478
+ showMore.innerHTML = 'less <i style="margin-bottom:20px; color:var(--text-color);" id="more-button" class="fa-solid fa-caret-up"></i>';
479
  } else {
480
  additionalInfo.style.height = '0';
481
+ showMore.innerHTML = 'more <i style="margin-bottom:20px; color:var(--text-color);" id="more-button" class="fa-solid fa-caret-down"></i>';
482
  }
483
  });
484
  });