This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
h3.hoge { | |
color: #000; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
h3.hoge { | |
color: #666; | |
font-size:14px; | |
font-weight: bold; | |
margin: 5px 0 15px 0; | |
line-height: 1.25em; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<section> | |
<p><dfn>JavaScript</dfn>はプログラミング言語の一つで、Javaとは全く別の言語である。</p> | |
<p>ウェブブラウザ上で動作するので、ユーザーフレンドリーなウェブサイトの構築に欠かせない存在となっている。</p> | |
</section> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@keyframes typing { | |
from { width: 0; } | |
} | |
@keyframes cursor { | |
50% { border-right-color: transparent; } | |
} | |
.anime-type { | |
font: bold 200% Consolas, Monaco, monospace; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@keyframes typing { | |
from { width: 0 } | |
} | |
.anime-type { | |
font: bold 200% Consolas, Monaco, monospace; | |
width: 13ch; | |
overflow: hidden; | |
white-space: nowrap; | |
animation: typing 6s steps(13); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.shimei {background: #d1d1d1;} | |
.tensu {background: #ffffda;} | |
.goukei {background: #ff9ca8;} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<table> | |
<caption>テスト集計</caption> | |
<colgroup class="shimei" span="1"> | |
<colgroup> | |
<col class="tensu" span="3"> | |
<col class="goukei" span="1"> | |
</colgroup> | |
<thead> | |
<tr> | |
<th>氏名</th><th>英語</th><th>国語</th><th>数学</th><th>合計</th> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.bg { | |
position: absolute; | |
z-index: 0; | |
top: 0; | |
left: 0; | |
width: 100%; | |
height: 100%; | |
margin: 0; | |
padding: 0; | |
background: #ffae00; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="UTF-8"> | |
<title>アニメーション・ソナー</title> | |
<link rel="stylesheet" href="ping-effect.css"> | |
</head> | |
<body> | |
<div class="bg"> | |
<span class="ping"><p>アニメーション・ソナー</p></span> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#login h1 a { | |
background-image: url("http://example.com/wp-content/themes/テーマ名/images/custom_logo.png") !important; | |
} |