mirror of
https://github.com/wassname/talk.git
synced 2026-06-28 18:30:01 +08:00
94 lines
3.3 KiB
Plaintext
94 lines
3.3 KiB
Plaintext
<!DOCTYPE html>
|
||
<html>
|
||
<head>
|
||
<meta charset="utf-8">
|
||
<meta name="viewport" content="initial-scale=1, maximum-scale=1">
|
||
<title>Talk - Coral Admin</title>
|
||
<link rel="apple-touch-icon" sizes="57x57" href="/public/img/apple-icon-57x57.png">
|
||
<link rel="apple-touch-icon" sizes="60x60" href="/public/img/apple-icon-60x60.png">
|
||
<link rel="apple-touch-icon" sizes="72x72" href="/public/img/apple-icon-72x72.png">
|
||
<link rel="apple-touch-icon" sizes="76x76" href="/public/img/apple-icon-76x76.png">
|
||
<link rel="apple-touch-icon" sizes="114x114" href="/public/img/apple-icon-114x114.png">
|
||
<link rel="apple-touch-icon" sizes="120x120" href="/public/img/apple-icon-120x120.png">
|
||
<link rel="apple-touch-icon" sizes="144x144" href="/public/img/apple-icon-144x144.png">
|
||
<link rel="apple-touch-icon" sizes="152x152" href="/public/img/apple-icon-152x152.png">
|
||
<link rel="apple-touch-icon" sizes="180x180" href="/public/img/apple-icon-180x180.png">
|
||
<link rel="icon" type="image/png" sizes="32x32" href="/public/img/favicon-32x32.png">
|
||
<link rel="icon" type="image/png" sizes="96x96" href="/public/img/favicon-96x96.png">
|
||
<link rel="icon" type="image/png" sizes="16x16" href="/public/img/favicon-16x16.png">
|
||
<link rel="manifest" href="/public/manifest.json">
|
||
<meta name="msapplication-TileColor" content="#ffffff">
|
||
<link href="https://fonts.googleapis.com/css?family=Roboto:300,400,500" rel="stylesheet">
|
||
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
|
||
<link rel="stylesheet" href="https://code.getmdl.io/1.2.1/material.min.css">
|
||
<style media="screen">
|
||
body, #root {
|
||
width: 100%;
|
||
height: 100%;
|
||
margin: 0;
|
||
background-color: #FAFAFA;
|
||
font-family: 'Roboto', sans-serif;
|
||
}
|
||
/* putting this here until I can get webpack to behave */
|
||
.react-tagsinput {
|
||
background-color: #fff;
|
||
border: 1px solid #ccc;
|
||
overflow: hidden;
|
||
padding-left: 5px;
|
||
padding-top: 5px;
|
||
}
|
||
|
||
.react-tagsinput--focused {
|
||
border-color: rgb(142, 76, 65);
|
||
}
|
||
|
||
.react-tagsinput-tag {
|
||
background-color: rgb(255, 220, 214);
|
||
border-radius: 2px;
|
||
border: 1px solid rgb(244, 126, 107);
|
||
color: rgb(244, 126, 107);
|
||
display: inline-block;
|
||
font-family: sans-serif;
|
||
font-size: 13px;
|
||
font-weight: 400;
|
||
margin-bottom: 5px;
|
||
margin-right: 5px;
|
||
padding: 5px;
|
||
}
|
||
|
||
.react-tagsinput-remove {
|
||
cursor: pointer;
|
||
font-weight: bold;
|
||
color: rgb(101, 24, 23);
|
||
}
|
||
|
||
.react-tagsinput-tag a::before {
|
||
content: " ×";
|
||
}
|
||
|
||
.react-tagsinput-input {
|
||
background: transparent;
|
||
border: 0;
|
||
color: #777;
|
||
font-family: sans-serif;
|
||
font-size: 13px;
|
||
font-weight: 400;
|
||
margin-bottom: 6px;
|
||
margin-top: 1px;
|
||
outline: none;
|
||
padding: 5px;
|
||
width: 90px;
|
||
}
|
||
|
||
</style>
|
||
<% if (data != null) { %>
|
||
<script id="data" type="application/json"><%- JSON.stringify(data) %></script>
|
||
<% } %>
|
||
</head>
|
||
<body>
|
||
<div id="root"></div>
|
||
<script src='https://www.google.com/recaptcha/api.js?render=explicit' async defer></script>
|
||
<script src="<%= basePath %>/bundle.js" charset="utf-8"></script>
|
||
</body>
|
||
</html>
|