我一直在更新我的網站,特別是試圖讓它在手機上看起來更好。理想情況下,我想做的是精確定義桌面和手機的字體大小。我對桌面上的字體大小很滿意,但是在移動設備上,它有點太小了。我嘗試過使用“響應文本”代碼和viewport標簽,但是沒有一個是我喜歡的(邊距被壓縮,文本在一種格式下看起來很好,但在另一種格式下不好看,等等。).我能定義:(1)在桌面上,字體大小是x,和(2)在移動上,字體大小是y嗎?下面是網站URL和CSS代碼。提前感謝。
網址:https://www.domenictroiano.com/test.html
CSS:
@media screen and (min-width: 900px) {
p.text {
font-size: 30px;
}
}
@media screen and (max-width: 899px) {
p.text {
font-size: 60px;
}
}
#menu__toggle {
opacity: 0;
}
#menu__toggle:checked + .menu__btn > span {
transform: rotate(45deg);
}
#menu__toggle:checked + .menu__btn > span::before {
top: 0;
transform: rotate(0deg);
}
#menu__toggle:checked + .menu__btn > span::after {
top: 0;
transform: rotate(90deg);
}
#menu__toggle:checked ~ .menu__box {
left: 0 !important;
}
.menu__btn {
position: fixed;
top: 30px;
left: 30px;
width: 25px;
height: 30px;
cursor: pointer;
z-index: 1;
}
.menu__btn > span,
.menu__btn > span::before,
.menu__btn > span::after {
display: block;
position: absolute;
width: 100%;
height: 2px;
background-color: #616161;
transition-duration: .5s;
}
.menu__btn > span::before {
content: '';
top: -8px;
}
.menu__btn > span::after {
content: '';
top: 8px;
}
.menu__box {
display: block;
position: fixed;
top: 0;
left: -100%;
width: 250px;
height: 100%;
margin: 0;
padding: 80px 0;
list-style: none;
background-color: #f0e68c;
box-shadow: 2px 2px 6px rgba(0, 0, 0, .4);
transition-duration: .5s;
}
.menu__item {
display: block;
padding: 12px 24px;
color: #333;
font-family: 'Arial', sans-serif;
font-size: 20px;
font-weight: 600;
text-decoration: none;
transition-duration: .5s;
}
.menu__item:hover {
background-color: #f9f5d1;
}