作成日: 2023/03/24 更新日: 2023/05/24 サイトの紹介と使い方
概要
- この記事は、古いHTMLコードやCSSコード、未使用あるいは不要と思われるコードの保管場所です。
内容
HTML
CSS
/* ファイル名:style.css */
/*<--- 0203 */
.my-menu-list li{
position: relative;
display: inline;
list-style: square-button;
border-style: solid;
border-radius: 1rem;
font-size: 1.5rem;
font-weight: bold;
padding: 0.3rem;
}
.my-menu-list li a {
text-decoration: none;
}
.my-menu-list li a:hover {
text-decoration: underline;
}
/* 0203 --->*/
/*<--- 0204 */
my-link-list{
padding: 0rem;
margin: 0rem;
}
.my-link-list li{
display: block;
list-style: none;
font-size: 1.5rem;
font-weight: bold;
padding: 0.3rem;
}
.my-link-list li a {
text-decoration: none;
}
.my-link-list li a:hover {
text-decoration: underline;
}
/* 0204--->*/
/*<--- 0107 */
.my-search-box{
position: absolute;
top: 0rem;
left: 4.4rem;
height: 2rem;
}
input[type="text"]{
width: 20em;
}
.my-search-btn{
position: absolute;
top: 0rem;
left: 0rem;
height: 2rem;
width: 4rem;
font-size: 1rem;
line-height: 2rem;
color: #fff;
background-color: black;
border-radius: 0.2rem;
}
/* 0107 --->*/
/*<--- 0108 */
.my-qa-btn{
font-size: 2rem;
line-height: 3rem;
width: 6rem;
text-align: center;
color: #fff;
border-radius: 0.5rem;
}
/* 0108 --->*/
Functions.php
//<--- 2202
function my_search_form_parts($atts){
$ret = "<form class=\"my-search-site\" method=\"get\" action=\"https://www.google.co.jp/search\" target=\"_blank\">";
$ret .= "<input type=\"hidden\" name=\"sitesearch\" value=\"";
$ret .= my_get_domain();
$ret .= "\">";
$wrk = urldecode( "%E3%82%AD%E3%83%BC%E3%83%AF%E3%83%BC%E3%83%89%E3%82%92%E5%85%A5%E5%8A%9B%E3%81%97%E3%81%A6%E3%81%8F%E3%81%A0%E3%81%95%E3%81%84" );
$ret .= "<input type=\"text\" name=\"q\" style=\"font-size:15px;size:20px;\" placeholder=" . $wrk . " value=\"\">";
$wrk = "google" . urldecode( "%E3%82%B5%E3%82%A4%E3%83%88%E5%86%85%E6%A4%9C%E7%B4%A2" );
$ret .= "<button type=\"submit\" style=\"height:40px;font-weight:bold;\">" . $wrk . "</button>";
$ret .= "</form>";
// my_debug_shortcode_echo( "my_search_form.txt",$ret );
return $ret;
}
// 2202 --->