Browse Source

added GOST type B font

pull/1/merge
R4SAS 7 years ago
parent
commit
54597f2f1a
  1. 47
      css/style.css
  2. BIN
      fonts/GostBStandard.eot
  3. BIN
      fonts/GostBStandard.ttf
  4. BIN
      fonts/GostBStandard.woff
  5. 0
      img/splash.png
  6. 38
      index.html

47
css/style.css

@ -0,0 +1,47 @@ @@ -0,0 +1,47 @@
body {
background:#f7f7f7;
text-align:center;
font-family:GostBStandard;
padding:14px;
}
ul {
list-style:none;
display:inline-block;
padding:0px;
}
li {
float:left;
}
li a {
padding:12px;
color:black;
font-weight:bold;
font-size:1.2em;
}
li::after {
display:inline-block;
height:1em;
width:2px;
background-color:black;
content:"";
}
li:last-child::after {
display:none;
}
.red {
color:#af161a;
}
@font-face {
font-family: "GostBStandard";
src: url("../fonts/GostBStandard.eot");
src: url("../fonts/GostBStandard.eot?#iefix") format("embedded-opentype"), url("../fonts/GostBStandard.woff") format("woff"), url("../fonts/GostBStandard.ttf") format("truetype");
font-style: normal;
font-weight: normal;
}

BIN
fonts/GostBStandard.eot

Binary file not shown.

BIN
fonts/GostBStandard.ttf

Binary file not shown.

BIN
fonts/GostBStandard.woff

Binary file not shown.

0
splash.png → img/splash.png

Before

Width:  |  Height:  |  Size: 54 KiB

After

Width:  |  Height:  |  Size: 54 KiB

38
index.html

@ -1,23 +1,17 @@ @@ -1,23 +1,17 @@
<!DOCTYPE html>
<head>
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon">
<meta charset="utf-8">
<title>COSTcoin</title>
<style>
body{background:#f7f7f7;text-align:center;font-family:monospace;padding:14px}
ul{list-style:none;display:inline-block;padding:0px}li{float:left}
li a{padding:12px;color:black;font-weight:bold;font-size:1.2em}
li::after{display:inline-block;height:1em;width:2px;background-color:black;content:""}
li:last-child::after{display:none}
.red{color:#af161a}
</style>
</head>
<body>
<img src="splash.png"><h1 class="red">GOST R 34.10 and GOST R 34.11-2012 based coin over I2P</h1>
<ul>
<li><a href="https://github.com/GOSTSec/gostcoin">wallet</a></li>
<li><a href="https://github.com/GOSTSec/cpuminer-x11-gost">CPU miner</a></li>
<li><a href="https://github.com/GOSTSec/ccminer">GPU miner</a></li>
</ul>
</body>
</html>
<html>
<head>
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon">
<meta charset="utf-8">
<title>GOSTcoin</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<img src="img/splash.png"><h1 class="red">GOST R 34.10 and GOST R 34.11-2012 based coin over I2P</h1>
<ul>
<li><a href="https://github.com/GOSTSec/gostcoin">wallet</a></li>
<li><a href="https://github.com/GOSTSec/cpuminer-x11-gost">CPU miner</a></li>
<li><a href="https://github.com/GOSTSec/ccminer">GPU miner</a></li>
</ul>
</body>
</html>

Loading…
Cancel
Save