右側に謎の隙間と、レスポンシブの色は適応されるのですがlistsのところが適応されません。
何故でしょうか?
全くわかりません。
@charset "UTF-8";
@import url('https://fonts.googleapis.com/css?family=Lobster&display=swap');
*{
box-sizing: border-box;
}
body {
width: 100%;
margin: 0;
padding: 0;
font-family: 'Lobster', cursive;
}
#hoge {
margin: 0;
padding: 10px;
background-color: #181818;
background-size: cover;
z-index: 1;
position: relative;
text-align: center;
font-family: 'Lobster', cursive;
}
.clear{
float: none;
}
/* タブレット */
@media (max-width:1000px) {
h1 {
font-size: 50px;
color: blue;
position: absolute;
transform: translate(-50%, -50%);
letter-spacing: 10px;
}
a {
width: 50% ;
}
}
/* スマホ*/
@media (max-width:670px) {
.title h1 {
color: green;
font-size: 60px;
letter-spacing: 8px;
}
.lists a{
width: 100% ;
}
}
.title {
font-size: 70px;
color: #fff;
text-align: center;
position: absolute;
top: 40%;
left: 50%;
transform: translate(-50%, -50%);
letter-spacing: 5px;
}
.lists {
position: absolute;
top: 80%;
width:100%;
}
.list a{
color: red;
font-size: 30px;
width: 25%;
display:inline-block;
text-align: center;
float: left;
}
.plofile a{
color: aqua;
}
.skill a{
color: coral;
}
.portfolio a{
color: chartreuse
}
.otoiawase a{
color: red;
}
.plofile-container{
position: relative;
padding: 16px 0 24px;
background: black;
color: #fff;
text-align: center;
}
.area h2{
margin: 1px;
letter-spacing: 5px;
}
.area p{
font-size: 3px;
}
右側というか、listsの左側ですかね、?
どなたか回答お願いします。。。
回答1件
あなたの回答
tips
プレビュー