こんにちわ。HTML、CSSでWEBサイトを勉強中のものです。練習として草津温泉に行った思い出をテーマにWEBサイトを作っています。
写真をフルスクリーンにして現在下になってしまっている文字やボタン、ロゴなどを写真の中心に持ってきたいです。
色々調べて実践してみましたが上手くいきません。初心者でお恥ずかしいのですが手助けしていただけるとありがたいです????
『HTML』
<!DOCTYPE html> <html lang="ja"> <head> <meta charset="utf-8"> <title>草津温泉</title> <meta name="description" content="草津温泉の思い出と美味しかったお肉の紹介"> <link rel="icon" type= href="/kusatu.png"></html> -----------------------------------------------------------------------------<!-- CSS --> <link rel="stylesheet" href="https://unpkg.com/ress/dist/ress.min.css"> <link href="https://fonts.googleapis.com/css?family=Philosopher" rel="stylesheet"> <link href="css/style.css" rel="stylesheet"> </head> <body> <div id="home" class="big-bg"> <!-- トップバナー --> <img src="kusatu.png" id="top-baner"> <header class="page-header wrapper"> <h1><a href="index.html"><img class="logo" src="./images/onsen.png" alt="草津温泉ホーム"></a></h1> <nav> <ul class="main-nav"> <li><a href="news.html">News</a></li> <li><a href="menu.html">Menu</a></li> <li><a href="contact.html">Contact</a></li> </ul> </nav> </header> <div class="home-content wrapper"> <h2 class="page-title">草津温泉ホームページ</h2> <p>草津温泉の思い出と美味しかったご飯</p> <a class="button" href="menu.html">メニュー</a> </div> </div> </body>
『CSS』
@charset "UTF-8";
/* 共通部分
------------------------------- */
html {
font-size: 100%;
}
body{
font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", sans-serif;
line-height: 1.7;
color: #432;
}
a {
text-decoration: none;
}
img {
max-width: 100%;
}
.wrapper {
max-width: 1100px;
margin: 0 auto;
padding: 0 4%;
}
/* 大きな背景画像 */
.big-bg {
background-size: cover;
background-position: center top;
background-repeat: no-repeat;
}
/* 見出し /
.page-title {
font-size: 5rem;
font-family: 'Philosopher', serif;
text-transform: uppercase;
font-weight: normal;
}
/ HOME
------------------------------- */
#home {
background-image: url(kusatu.png);
min-height: 100vh;
}
#home .page-title {
text-transform: none;
}
.home-content {
text-align: center;
margin-top: 10%;
}
.home-content p {
font-size: 1.125rem;
margin: 10px 0 42px;
}
.sub-title {
font-size: 1.375rem;
padding: 0 8px 8px;
border-bottom: 2px #0bd solid;
font-weight: normal;
}
/* ボタン */
.button {
font-size: 1.375rem;
background: #0bd;
color: #fff;
border-radius: 5px;
padding: 18px 32px;
}
.button:hover {
background: #0090aa;
}
/* iframe */
iframe {
width: 100%;
}
/* HEADER
------------------------------- */
.page-header {
display: flex;
justify-content: space-between;
}
.logo {
width: 210px;
margin-top: 14px;
}
.main-nav {
display: flex;
font-size: 1.25rem;
text-transform: uppercase;
margin-top: 34px;
list-style: none;
}
.main-nav li {
margin-left: 36px;
}
.main-nav a {
color: #432;
}
.main-nav a:hover {
color: #0bd;
}
/* HOME
------------------------------- */
#home {
background-image: url(../images/main-bg.jpg);
min-height: 100vh;
}
#home .page-title {
text-transform: none;
}
.home-content {
text-align: center;
margin-top: 10%;
}
.home-content p {
font-size: 1.125rem;
margin: 10px 0 42px;
}
お手数ですがよろしくお願い致します。
回答2件
あなたの回答
tips
プレビュー