77 lines
No EOL
1.2 KiB
CSS
77 lines
No EOL
1.2 KiB
CSS
body {
|
|
margin: 0;
|
|
padding: 0;
|
|
font-family: Arial, sans-serif;
|
|
background: linear-gradient(135deg, #1e90ff, #00bfff);
|
|
color: #fff;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
height: 100vh;
|
|
}
|
|
|
|
.coming-soon {
|
|
text-align: center;
|
|
max-width: 600px;
|
|
padding: 20px;
|
|
}
|
|
|
|
.logo img {
|
|
width: 150px;
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
h1 {
|
|
font-size: 2.5rem;
|
|
margin: 10px 0;
|
|
}
|
|
|
|
p {
|
|
font-size: 1.2rem;
|
|
margin: 10px 0 20px;
|
|
}
|
|
|
|
.countdown {
|
|
display: flex;
|
|
justify-content: space-around;
|
|
margin: 20px 0;
|
|
}
|
|
|
|
.countdown div {
|
|
text-align: center;
|
|
}
|
|
|
|
.countdown span {
|
|
display: block;
|
|
font-size: 2rem;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.subscription {
|
|
margin-top: 20px;
|
|
}
|
|
|
|
.subscription input {
|
|
padding: 10px;
|
|
font-size: 1rem;
|
|
width: calc(100% - 110px);
|
|
border: none;
|
|
border-radius: 10px;
|
|
outline: none;
|
|
}
|
|
|
|
.subscription button {
|
|
padding: 10px 20px;
|
|
font-size: 1rem;
|
|
background: #ff4500;
|
|
border: none;
|
|
border-radius: 10px;
|
|
color: #fff;
|
|
cursor: pointer;
|
|
outline: none;
|
|
margin-top: 10px;
|
|
}
|
|
|
|
.subscription button:hover {
|
|
background: #e03e00;
|
|
} |