Information
About
サイトの説明
Rule
サイトの規約
Main Contents
Contents
Contents
Code
head
CSS
/*
Template T-13 Influential Face
By Jumble Fun
Site URL https://alicex.jp/kenz/
*/
* {
font-size:13px;
font-family:"Montserrat",Sans-Serif;
box-sizing:border-box;
margin:0;
padding:0;
}
body {
color:silver;
background:black;
scroll-behavior:smooth;
}
a {
color:silver;
text-decoration:none;
}
ul {
list-style-type:none;
}
header {
background-image:
url('../header-back.image..jpeg');
background-repeat:no-repeat;
background-position:0% 0%;
background-size:cover;
height:160px;
padding:20px;
}
header h1 {
font-size:20px;
font-weight:600;
margin-bottom:90px;
}
header ul {
display:flex;
justify-content:center;
}
header ul li {
margin: 0 10px;
}
header ul li button {
font-weight:600;
color:silver;
background-color:transparent;
}
header ul li a {
font-weight:600;
}
section {
padding:20px;
}
section h2 {
font-size:24px;
font-weight:600;
margin-bottom:20px;
}
section.info h2 {
color:#d80;
}
section.main h2 {
color:#00f;
}
section.contact h2 {
color:#f00;
}
section h3 {
font-weight:15px;
font-weight:600;
}
div.container {
line-height:180%;
margin-top:-16px;
margin-bottom:20px;
white-space:pre-line;
}
JS
$(window).on('load', function(){
$('section').hide();
$('.list').on('click',function(){
$('section').not($('.'+$(this).attr('id'))).hide();
$('.'+$(this).attr('id')).fadeToggle(300);
});
});
body
Information
About
サイトの説明
Rule
サイトの規約
Main Contents
Contents
Contents