BraydenMoore commited on
Commit
15acfc8
·
1 Parent(s): b20e27e

Update templates/index.html

Browse files
Files changed (1) hide show
  1. templates/index.html +11 -9
templates/index.html CHANGED
@@ -97,8 +97,8 @@
97
  }
98
 
99
  .feed {
100
- width: 80vw;
101
- height: 30vh;
102
  margin-right: 0;
103
  }
104
  .info {
@@ -117,20 +117,22 @@
117
  <div class="flex-container">
118
  <img id="feed" class="feed" src="{{ url_for('proxy', url=url) }}" />
119
  <div class="info">
120
- <div class="map-div">
121
- <img id="map" src="{{ url_for('static', filename='map.png') }}" style="width: 100%; height: 100%;" />
122
- <div class="dot" style="left: {{ X }}%; top: {{ Y }}%;"></div>
123
- <div class="pulse" style="left: {{ X }}%; top: {{ Y }}%;"></div>
124
- </div>
125
-
126
  <h3 style="border-bottom: 1px solid yellow; color:rgb(83, 83, 83); font-family: 'Helvetica'; font-weight: 50;">{{ name }}</h3>
127
  <p style="color:rgb(83, 83, 83); font-family: 'Helvetica'; font-weight: 50;">{{ loc }} <br>< {{ ip }} <br> {{ org }} <br> {{ time }}</p>
128
-
129
  <a href="." style="margin-top: 3%; display: inline-block;">
130
  <button class="hoverButton" style="border: 1px solid yellow; background-color: transparent; color: rgb(83, 83, 83); padding: 10px;">
131
  another
132
  </button>
133
  </a>
 
 
 
 
 
 
 
 
134
  </div>
135
  </div>
136
  </div>
 
97
  }
98
 
99
  .feed {
100
+ width: 90vw;
101
+ max-height: 90vh;
102
  margin-right: 0;
103
  }
104
  .info {
 
117
  <div class="flex-container">
118
  <img id="feed" class="feed" src="{{ url_for('proxy', url=url) }}" />
119
  <div class="info">
120
+
 
 
 
 
 
121
  <h3 style="border-bottom: 1px solid yellow; color:rgb(83, 83, 83); font-family: 'Helvetica'; font-weight: 50;">{{ name }}</h3>
122
  <p style="color:rgb(83, 83, 83); font-family: 'Helvetica'; font-weight: 50;">{{ loc }} <br>< {{ ip }} <br> {{ org }} <br> {{ time }}</p>
 
123
  <a href="." style="margin-top: 3%; display: inline-block;">
124
  <button class="hoverButton" style="border: 1px solid yellow; background-color: transparent; color: rgb(83, 83, 83); padding: 10px;">
125
  another
126
  </button>
127
  </a>
128
+
129
+ <div class="map-div">
130
+ <img id="map" src="{{ url_for('static', filename='map.png') }}" style="width: 100%; height: 100%;" />
131
+ <div class="dot" style="left: {{ X }}%; top: {{ Y }}%;"></div>
132
+ <div class="pulse" style="left: {{ X }}%; top: {{ Y }}%;"></div>
133
+ </div>
134
+
135
+
136
  </div>
137
  </div>
138
  </div>