Skip to content

Commit 504a5fc

Browse files
Made index page responsive
1 parent 84c22d9 commit 504a5fc

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

RealTimeReport/src/report/realtime/filehandler/FileNameConstants.java

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ public class FileNameConstants {
6060
* index.html static content
6161
*/
6262

63-
public static final String INDEX_HEADER = "<!DOCTYPE HTML>" + "<html>" + "<head>" + "<title>Run Time Report</title>"
63+
public static final String INDEX_HEADER = "<!DOCTYPE HTML>" + "<html>" + "<head>" + "<title>Real Time Report</title>"
6464
+ "<meta name='viewport' content='width=device-width, initial-scale=1'>"
6565
+ "<meta http-equiv='Content-Type' content='text/html; charset=utf-8' />"
6666
+ "<link href='css/bootstrap.min.css' rel='stylesheet' type='text/css' />"
@@ -70,9 +70,10 @@ public class FileNameConstants {
7070
+ "</head>";
7171

7272
public static final String INDEX_BODY_PRE = "<body class='body-w-bg'>" + "<div class='container-fluid'>"
73-
+ "<div class='col-md-3'>" + "</div>" + "<div class='col-md-6 center hazy gap-top'>"
74-
+ "<div class='txt'></div>" + "<h1> <i class='fa fa-line-chart'></i> Real Time Report </h1>";
73+
+ "<div class='col-md-3'>" + "</div>" + "<div class='col-md-6 center hazy'>"
74+
+ "<div class='txt'></div>" + "<h1> <i class='fa fa-line-chart'></i> Real Time Report </h1>"
75+
+ "<div style='padding-bottom:20px;'>";
7576

76-
public static final String INDEX_BODY_POST = "</div>" + "<div class='col-md-3'>" + "</div>" + "</div>" + "</body>"
77+
public static final String INDEX_BODY_POST = "</div>" + "</div>" + "<div class='col-md-3'>" + "</div>" + "</div>" + "</body>"
7778
+ "</html>";
7879
}

0 commit comments

Comments
 (0)