レスポンシブデザイン 余白を調整したい
問題
現在iSaraの模写をしています。
windowのサイズを変更した際に、
header部分に関してロゴの左側とボタンの右側の余白を調整したいです。
下記の挙動を目指しています。
— 霧崎さくや (@Sakuya_wd) October 15, 2020
下記は現状です。
— 霧崎さくや (@Sakuya_wd) October 15, 2020
ソースコード
html
<div id="wrapper">
<!-- ヘッダー -->
<div class= "header">
<div class="headerLogo">
<img src ="./image/isaralogo.png">
</div>
<div class="headerTitle">
<p>バンコクのノマドエンジニア育成講座</p>
</div>
<div class="headerContact">
<a href="#nineteenthSection-link">お問い合わせ / 資料請求はこちら</a>
</div>
</div>
</div>
css
*{
margin: 0;
padding: 0;
}
.wrapper{
width: 100%;
}
/* ヘッダー */
.header{
display: flex;
height: 75px;
width: 100%;
position: fixed;
z-index: 10;
background-color: #FFFFFF;
}
.headerLogo img{
padding: 15px 0px 0px 130px;
width: 130px;
height: 50px;
}
.headerTitle p{
padding: 37px 0px 0px 0px;
margin: 0px 0px 0px 13px;
font-style: normal;
font-weight: 600;
font-family: "Hiragino Kaku Gothic Pro";
font-size: 14px;
line-height: 22px;
color: #333333;
letter-spacing: 1px;
}
.headerContact {
margin-left: auto;
padding: 25px 90px 0px 0px;
}
.headerContact a{
text-decoration: none;
font-style: normal;
font-weight: 300;
font-family: "Hiragino Kaku Gothic Pro";
font-size: 14px;
line-height: 22px;
color: #ffffff;
letter-spacing: 1px;
background-color: #DA6A64;
border-radius: 30px;
padding: 15px 45px 15px 40px;
}
0