init
This commit is contained in:
commit
dfabf2c97d
2 changed files with 58 additions and 0 deletions
39
index.html
Normal file
39
index.html
Normal file
|
@ -0,0 +1,39 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html>
|
||||||
|
|
||||||
|
<head>
|
||||||
|
<link rel="stylesheet" href="styles/css/main.css" />
|
||||||
|
|
||||||
|
<!-- Global Metadata -->
|
||||||
|
<meta charset="utf-8" />
|
||||||
|
<meta name="viewport" content="width=device-width,initial-scale=1" />
|
||||||
|
|
||||||
|
<!-- <link rel="icon" type="image/svg+xml" href="/assets/favicon.svg" />-->
|
||||||
|
|
||||||
|
<!-- Primary Meta Tags -->
|
||||||
|
<title>Divergence Meter</title>
|
||||||
|
<meta name="title" content="Divergence Meter" />
|
||||||
|
<meta name="description" content="Divergence Meter" />
|
||||||
|
|
||||||
|
<!-- Open Graph / Facebook -->
|
||||||
|
<meta property="og:type" content="website" />
|
||||||
|
<meta property="og:title" content="Divergence Meter" />
|
||||||
|
<meta property="og:description" content="Divergence Meter" />
|
||||||
|
<meta property="og:profile:gender" content="woman(ish)" />
|
||||||
|
|
||||||
|
<!-- Twitter -->
|
||||||
|
<meta property="twitter:card" content="summary_large_image" />
|
||||||
|
<meta property="twitter:title" content="Divergence Meter" />
|
||||||
|
<meta property="twitter:description" content="Divergence Meter" />
|
||||||
|
|
||||||
|
<!-- Other -->
|
||||||
|
<link href="https://1.048596.observer/jtitor" rel="me" />
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body>
|
||||||
|
<center>
|
||||||
|
<p class="meter">1.048596</p>
|
||||||
|
</center>
|
||||||
|
</body>
|
||||||
|
|
||||||
|
</html>
|
19
styles/css/main.css
Normal file
19
styles/css/main.css
Normal file
|
@ -0,0 +1,19 @@
|
||||||
|
:root {
|
||||||
|
color: #ea9a07;
|
||||||
|
background-color: #080100;
|
||||||
|
}
|
||||||
|
|
||||||
|
.meter {
|
||||||
|
color: #ea9a07;
|
||||||
|
background-color: #1d0100;
|
||||||
|
max-width: 420px;
|
||||||
|
max-height: 125px;
|
||||||
|
font-size: 84px;
|
||||||
|
position: absolute;
|
||||||
|
top:0;
|
||||||
|
bottom: 0;
|
||||||
|
left: 0;
|
||||||
|
right: 0;
|
||||||
|
margin:auto;
|
||||||
|
border-radius: 10px;
|
||||||
|
}
|
Loading…
Reference in a new issue