-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathsettings.html
More file actions
147 lines (147 loc) · 4.73 KB
/
settings.html
File metadata and controls
147 lines (147 loc) · 4.73 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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
<html>
<head>
<style>
body {
width: 100%;
font-size: 30px;
}
.logo {
float: left;
width: 30%;
}
.logoimg {
width: 140px;
}
.header {
background-color: blue;
color: white;
width: 100%;
clear: both;
font-size: 70px;
text-align: center;
padding-bottom: 10px;
white-space: nowrap;
}
.instructions {
background-color: blue;
color: white;
width: 100%;
clear: both;
font-size: 20px;
text-align: center;
padding-bottom: 10px;
white-space: nowrap;
}
#sratitle {
color: white;
}
#update {
color: chartreuse;
font-size: 20px;
}
.copyright {
color: white;
font-size: 20px;
}
.license {
color: white;
font-size: 20px;
}
.notice {
color: white;
font-size: 20px;
}
.releasenotes {
color: white;
font-size: 25px;
}
.version {
background-color: blue;
color: white;
width: 100%;
clear: both;
font-size: 30px;
text-align: center;
padding-bottom: 10px;
white-space: nowrap;
}
.item {
width: 100%;
height: 120px;
background-color: lightgray;
margin-bottom: 3px;
margin-top: 3px;
}
.icon {
max-width: 200px;
max-height: 120px;
text-align: center;
}
.name {
text-align: center;
}
.itemtext {
height: 100%;
font-size: 30px;
text-align: left;
white-space: nowrap;
}
#settings {
width: 90%;
min-width: 400px;
height: 400px;
white-space: pre;
}
.upload {
font-size: 25px;
}
</style>
<link rel="icon" type="image/png" href="/favicon.ico">
<meta charset="utf-8">
<meta http-equiv="expires" content="Sat, 01 Mar 2014 00:00:00 GMT">
<meta http-equiv="cache-control" content="no-cache, must-revalidate">
<meta name="viewport" content="width=device-width">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="mobile-web-app-capable" content="yes">
<link rel="apple-touch-icon" sizes="72x72" href="/SIMRacingApps/SRA-Logo-72x72.png">
<link rel="apple-touch-icon" sizes="114x114" href="/SIMRacingApps/SRA-Logo-114x114.png">
<link rel="apple-touch-icon" href="/SIMRacingApps/SRA-Logo-57x57.png">
<script type="text/javascript" src="/SIMRacingApps/lib/require.config.js"></script>
<script type="text/javascript" data-main="/SIMRacingApps/settings" src="/SIMRacingApps/external/require.js"></script>
<base href="/" />
<title>SIMRacingApps</title>
</head>
<body data-ng-controller = "SIMRacingApps-Controller">
<table>
<tr><td width='100%'>
<div class="header">
<table width='100%'><tr>
<td>
<a onclick="javascript:location.href='/SIMRacingApps/default.html'">
<img class="logoimg" src="/SRA-Logo.png" /><br />
</a>
</td>
<td class="header">
<a id="sratitle" target="_blank" href="http://SIMRacingApps.com">SIMRacingApps.com</a><br />
<div class="instructions">
This is your settings file.<br />
Lines starting with a hash(#) are comments and are ignored.<br />
All other lines are options. Each option must be in the format of:<br />
key = value<br />
</div>
</td>
</tr>
</table>
</div>
</td></tr>
<tr><td>
<form class="upload" method="POST" action="/SIMRacingApps/settings">
<input type="submit" value="Save" name="upload" id="upload" />
<!-- input type="button" onclick="self.close()" value="Cancel" name="cancel" id="cancel" / -->
<br />
<textarea id="settings" name="settings" wrap="off">{{settings}}</textarea>
</form>
</td></tr>
</table>
</body>
</html>