-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpopup.html
More file actions
53 lines (47 loc) · 1.47 KB
/
Copy pathpopup.html
File metadata and controls
53 lines (47 loc) · 1.47 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
<!DOCTYPE html>
<html>
<head>
<title>KARR2000 - Fschhooooo... Fschhooooo</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<link href="https://fonts.googleapis.com/css?family=Roboto:300,400,700" rel="stylesheet">
<style>
body {
font-family: 'Roboto', sans-serif;
}
.marbot-md {
margin-bottom: 1em;
}
.logo-aligned img {
height: 50px;
margin-right: 10px;
}
.logo-aligned {
display: flex;
align-items: center;
font-weight: 700;
width: 500px;
}
.logo-aligned em {
font-weight: 300;
}
</style>
</head>
<body>
<div class="container">
<h1 class="logo-aligned">
<img src="icon.svg" alt="">
KARR<em>2000</em>
</h1>
<div class="form-group">
<label for="data">JSON config:</label>
<span class="help-block">Paste here the content for your city and change the students names!<br>
https://github.com/kevcha/karr2000/tree/master/locales</span>
<textarea id="data" cols="300" rows="15" class="form-control">
</textarea>
</div>
<div id="status"></div>
<input type="submit" id="save" class="btn btn-danger btn-lg marbot-md" value="Save" />
</div>
<script src="options.js"></script>
</body>
</html>