Страница подписок должно хорошо отображаться на всех устройствах.
Для экранов с шириной до 1280px
элемент .wrapper
должен содержать две колонки шириной 300px
.
Для экранов с шириной до 740px
элемент .wrapper
должен содержать одну колонку шириной 300px
.
Также во втором случае надо добавить вертикальные отступы 40px
.
Не изменяй начальные стили, используй встроенные стили.
Эта задача — часть курса по Full-Stack JavaScript
Ты можешь задать свой вопрос в комментариях под постом
Если ты уже решил задачу, то не стесняйся помочь другим
index.html
<!DOCTYPE html>
<html>
<head>
<title>Subscription</title>
<meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1" />
<style>
body {
font-family: monospace;
margin: 0;
background-color: #E4D9FF;
}
.wrapper {
height: 100vh;
display: grid;
place-content: center;
gap: 16px;
grid-template-columns: repeat(4, 300px);
}
.card {
width: 300px;
box-sizing: border-box;
background: #fff;
border-radius: 16px;
padding: 15px 30px;
box-shadow: 10px 10px 15px rgba(0,0,0,0.05);
}
.price-details {
text-align: center;
margin-bottom: 15px;
padding-bottom: 15px;
border-bottom: 1px solid #e6e6e6;
}
.price{
font-size: 35px;
font-weight: 600;
position: relative;
}
.price-details .price::before,
.price-details .price::after{
position: absolute;
font-weight: 400;
}
.price-details .price::before{
content: "$";
left: -13px;
top: 6px;
font-size: 14px;
}
.price-details .price::after{
content: "/mon";
right: -33px;
bottom: 6px;
font-size: 13px;
}
.price-details p{
font-size: 14px;
margin-top: 5px;
margin-bottom: 0;
}
.features {
list-style: none;
padding: 0;
}
.features li span {
padding-right: 15px;
font-size: 16px;
color: #018E42;
}
button {
width: 100%;
border-radius: 25px;
border: none;
outline: none;
height: 50px;
font-size: 18px;
color: #fff;
cursor: pointer;
margin-top: 20px;
background-color: #7D82B8;
transition: background-color 0.3s ease;
}
button:hover {
background-color: #613F75;
}
@media screen and (max-width: 1280px) {
.wrapper {
grid-template-columns: repeat(2, 300px);
}
}
@media screen and (max-width: 740px) {
body {
padding: 40px 0;
}
.wrapper {
grid-template-columns: repeat(1, 300px);
}
}
</style>
</head>
<body>
<div class="wrapper">
<div class="card">
<div class="price-details">
<span class="price">19</span>
<p>For beginner use</p>
</div>
<ul class="features">
<li><span>✓</span>100 GB Premium Bandwidth</li>
<li><span>✓</span>FREE 50+ Installation Scripts WordPress Supported</li>
</ul>
<button>Choose plan</button>
</div>
<div class="card">
<div class="price-details">
<span class="price">49</span>
<p>For beginner use</p>
</div>
<ul class="features">
<li><span>✓</span>200 GB Premium Bandwidth</li>
<li><span>✓</span>FREE 100+ Installation Scripts WordPress Supported</li>
</ul>
<button>Choose plan</button>
</div>
<div class="card">
<div class="price-details">
<span class="price">99</span>
<p>For beginner use</p>
</div>
<ul class="features">
<li><span>✓</span>300 GB Premium Bandwidth</li>
<li><span>✓</span>FREE 300+ Installation Scripts WordPress Supported</li>
</ul>
<button>Choose plan</button>
</div>
<div class="card">
<div class="price-details">
<span class="price">199</span>
<p>For beginner use</p>
</div>
<ul class="features">
<li><span>✓</span>1000 GB Premium Bandwidth</li>
<li><span>✓</span>FREE 600+ Installation Scripts WordPress Supported</li>
</ul>
<button>Choose plan</button>
</div>
</div>
</body>
</html>