2018-09-24 20:34:28 +09:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="ja">
|
2018-11-18 09:54:03 +09:00
|
|
|
<head>
|
|
|
|
<meta charset="UTF-8" />
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
|
|
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
|
|
|
|
<meta name="description" content="NES.css is NES-style CSSFramework." />
|
|
|
|
<meta name="keywords" content="html5,css,framework,sass,NES,8bit" />
|
|
|
|
<meta name="author" content="© 2018 B.C.Rikko" />
|
2018-11-26 09:01:32 +09:00
|
|
|
<link rel="shortcut icon" href="https://bcrikko.github.io/NES.css/favicon.ico" />
|
2018-09-24 20:34:28 +09:00
|
|
|
|
2018-11-18 09:54:03 +09:00
|
|
|
<title>NES.css - NES-style CSS Framework</title>
|
2018-09-27 16:42:32 +09:00
|
|
|
|
2018-11-18 09:54:03 +09:00
|
|
|
<link href="./css/nes.css" rel="stylesheet" />
|
|
|
|
<link href="./style.css" rel="stylesheet" />
|
2018-09-27 16:42:32 +09:00
|
|
|
|
2018-11-18 09:54:03 +09:00
|
|
|
<meta property="og:type" content="website" />
|
|
|
|
<meta property="og:title" content="NES.css" />
|
|
|
|
<meta property="og:url" content="https://bcrikko.github.io/NES.css/" />
|
|
|
|
<meta property="og:description" content="NES-style CSS" />
|
|
|
|
<meta property="og:image" content="" />
|
|
|
|
<meta name="twitter:card" content="summary_large_image" />
|
|
|
|
<meta name="twitter:site" content="@bc_rikko" />
|
|
|
|
<meta name="twitter:creator" content="@bc_rikko" />
|
|
|
|
<meta
|
|
|
|
name="twitter:image"
|
|
|
|
content="https://user-images.githubusercontent.com/5305599/45937791-a5db2100-bffe-11e8-8bfd-fc3f534b28aa.gif"
|
|
|
|
/>
|
2018-09-27 16:42:32 +09:00
|
|
|
|
2018-11-26 09:01:32 +09:00
|
|
|
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-41640153-4"></script>
|
2018-11-18 09:54:03 +09:00
|
|
|
<script>
|
|
|
|
window.dataLayer = window.dataLayer || [];
|
|
|
|
function gtag() {
|
|
|
|
dataLayer.push(arguments);
|
|
|
|
}
|
|
|
|
gtag("js", new Date());
|
2018-09-27 16:42:32 +09:00
|
|
|
|
2018-11-18 09:54:03 +09:00
|
|
|
gtag("config", "UA-41640153-4");
|
|
|
|
</script>
|
|
|
|
</head>
|
2018-09-24 22:28:32 +09:00
|
|
|
|
2018-11-18 09:54:03 +09:00
|
|
|
<body>
|
2018-11-25 18:11:18 +09:00
|
|
|
<header>
|
|
|
|
<h1>NES.css</h1>
|
|
|
|
<p>NES-style CSS Framework.</p>
|
2018-11-18 09:54:03 +09:00
|
|
|
</header>
|
2018-09-24 22:28:32 +09:00
|
|
|
|
2018-11-25 19:27:36 +09:00
|
|
|
<button type="button" class="btn">Normal</button>
|
|
|
|
<button type="button" class="btn is-primary">Primary</button>
|
|
|
|
<button type="button" class="btn is-success">Success</button>
|
|
|
|
<button type="button" class="btn is-warning">Warning</button>
|
|
|
|
<button type="button" class="btn is-error">Error</button>
|
2018-11-25 20:54:56 +09:00
|
|
|
|
|
|
|
<div class="container with-title is-center">
|
|
|
|
<label class="title">Container.is-center</label>
|
|
|
|
<p>Good morning. Thou hast had a good night's sleep I hope.</p>
|
|
|
|
</div>
|
|
|
|
<div class="container is-dark with-title">
|
|
|
|
<label class="title">Container.is-dark</label>
|
2018-11-26 09:01:32 +09:00
|
|
|
<p style="color: white;">Good morning. Thou hast had a good night's sleep I hope.</p>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div>
|
|
|
|
<label><input type="radio" class="radio" name="answer" checked /><span>Yes</span></label>
|
|
|
|
<label><input type="radio" class="radio" name="answer" /><span>No</span></label>
|
2018-11-25 20:54:56 +09:00
|
|
|
</div>
|
2018-11-26 09:50:57 +09:00
|
|
|
|
|
|
|
<div>
|
|
|
|
<label><input type="checkbox" class="checkbox" checked /><span>Enable</span></label>
|
|
|
|
</div>
|
2018-11-18 09:54:03 +09:00
|
|
|
</body>
|
2018-09-24 20:34:28 +09:00
|
|
|
</html>
|