alertmanager/ui/app/index.html

40 lines
1.3 KiB
HTML
Raw Normal View History

<!DOCTYPE html>
<html lang="en">
2016-11-03 18:49:03 +00:00
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>Alertmanager</title>
<link rel="stylesheet" href="https://unpkg.com/tachyons@4.5.3/css/tachyons.min.css"/>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.6/css/bootstrap.min.css" integrity="sha384-rwoIResjU2yc3z8GV/NPeZWAv56rSmLldC3R/AZzGRnGxQQKnKkoFVhFQhNUwEyJ" crossorigin="anonymous">
<script src="https://use.fontawesome.com/b7508bb100.js"></script>
<style>
.list-item:nth-child(odd) {
background: #f7f7f9;
}
.list-item:not(:hover) .btn {
background-color: transparent;
border: 1px solid transparent;
color: gray;
}
.list-item:not(:hover) .badge {
background-color: gray;
}
.list-item:hover {
background: #f7f7f9;
}
</style>
</head>
2016-11-03 18:49:03 +00:00
<body>
</body>
2016-11-03 18:49:03 +00:00
<!-- Your source after making -->
<script type="text/javascript" src="/script.js"></script>
2016-11-03 18:49:03 +00:00
<!-- Removes splash and starts elm app. -->
<script type="text/javascript">
var app = Elm.Main.embed(document.body);
</script>
2016-11-03 18:49:03 +00:00
</html>