-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpatch_notes_template.html
More file actions
113 lines (96 loc) · 2.46 KB
/
patch_notes_template.html
File metadata and controls
113 lines (96 loc) · 2.46 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Eve Echoes Patch Notes</title>
<style>
html {
background-color: black;
color: aliceblue;
font-family: Arial, sans-serif;
}
h1 {
text-align: center;
}
h3 {
color: deepskyblue;
margin-bottom: 0;
}
h4 {
color: deepskyblue;
margin-bottom: 0;
}
p {
margin-top: 0;
}
.page-title {
text-align: center;
border-bottom: 1px solid aliceblue;
border-top: 1px solid aliceblue;
padding-bottom: 1rem;
margin-left: 2rem;
margin-right: 2rem;
}
a:link {
color: goldenrod;
text-decoration: underline;
}
a:visited {
color: goldenrod;
}
a:hover {
color: gold;
}
.page {
margin-left: 1rem;
margin-right: 1rem;
}
.header {
border: 0;
border-bottom: 1px solid deepskyblue;
}
.patch-notes {
letter-spacing: 1px;
}
/*noinspection CssUnusedSymbol*/
.patch-note {
border: 0;
border-bottom: 1px solid deepskyblue;
}
/*noinspection CssUnusedSymbol*/
.patch-title {
text-align: center;
color: goldenrod;
font-size: 24pt;
}
/*noinspection CssUnusedSymbol*/
.date {
color: aliceblue;
font-size: 12pt;
}
/*noinspection CssUnusedSymbol*/
.patch-content {
}
</style>
</head>
<body>
<div class="page">
<div class="header">
<div class="page-title">
<h1>Patch Notes</h1>
<br id="timestamp"/>
</div>
<p>
These are the all-time patch notes for the game Eve Echoes. This is not an official website, please refer to
<a href="https://www.eveechoes.com/news/updata/">www.eveechoes.com/news</a> for the official patch notes.
</p>
<p>
This website was automatically generated, you can find the source code on
<a href="https://github.com/Blaumeise03/EEPatchNotesExtractor">GitHub</a>
</p>
</div>
<div class="patch-notes" id="patch-notes">
</div>
</div>
</body>
</html>