Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 478985acf4 | |||
| d19adc8f5a | |||
| e753cf25f8 | |||
| 7da42268cc |
@@ -158,4 +158,4 @@ deploy:production:
|
||||
|
||||
only:
|
||||
- main
|
||||
when: manual
|
||||
# when: manual
|
||||
|
||||
@@ -1 +0,0 @@
|
||||
test
|
||||
@@ -1 +0,0 @@
|
||||
test
|
||||
@@ -1 +0,0 @@
|
||||
staging
|
||||
171
public/css/comingsoon.css
Normal file
171
public/css/comingsoon.css
Normal file
@@ -0,0 +1,171 @@
|
||||
/* Base layout */
|
||||
* {
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
body {
|
||||
margin: 0;
|
||||
font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
|
||||
background:
|
||||
radial-gradient(circle at top left, rgba(0, 81, 255, 0.35), transparent 55%),
|
||||
radial-gradient(circle at bottom right, rgba(200, 203, 208, 0.25), transparent 55%),
|
||||
#0b0b0d;
|
||||
color: #FFFFFF;
|
||||
min-height: 100vh;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
/* Page wrapper */
|
||||
.page {
|
||||
position: relative;
|
||||
width: 100%;
|
||||
max-width: 960px;
|
||||
padding: 24px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
/* Subtle background glow */
|
||||
.glow {
|
||||
position: absolute;
|
||||
inset: 0;
|
||||
pointer-events: none;
|
||||
background:
|
||||
radial-gradient(circle at 10% 10%, rgba(0, 81, 255, 0.35), transparent 55%),
|
||||
radial-gradient(circle at 90% 90%, rgba(3, 193, 96, 0.20), transparent 50%);
|
||||
opacity: 0.75;
|
||||
z-index: 0;
|
||||
}
|
||||
|
||||
/* Card container */
|
||||
.card {
|
||||
position: relative;
|
||||
z-index: 1;
|
||||
max-width: 720px;
|
||||
width: 100%;
|
||||
padding: 32px 32px 28px;
|
||||
border-radius: 18px;
|
||||
background: linear-gradient(
|
||||
135deg,
|
||||
rgba(26, 26, 26, 0.96),
|
||||
rgba(11, 11, 13, 0.98)
|
||||
);
|
||||
box-shadow:
|
||||
0 18px 45px rgba(0, 0, 0, 0.65),
|
||||
0 0 0 1px rgba(200, 203, 208, 0.08);
|
||||
text-align: left;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
/* Accent bar oben */
|
||||
.card::before {
|
||||
content: "";
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 12%;
|
||||
right: 12%;
|
||||
height: 3px;
|
||||
border-radius: 999px;
|
||||
background: linear-gradient(90deg, #0051FF, #03C160);
|
||||
opacity: 0.9;
|
||||
}
|
||||
|
||||
/* Logo */
|
||||
.logo {
|
||||
display: block;
|
||||
max-width: 260px;
|
||||
width: 60%;
|
||||
margin-bottom: 24px;
|
||||
filter:
|
||||
drop-shadow(0 8px 24px rgba(0, 0, 0, 0.6))
|
||||
drop-shadow(0 0 14px rgba(200, 203, 208, 0.45));
|
||||
}
|
||||
|
||||
/* Heading & text */
|
||||
h1 {
|
||||
font-family: 'Montserrat', system-ui, sans-serif;
|
||||
font-weight: 700; /* Montserrat Bold */
|
||||
font-size: clamp(2.1rem, 2.6vw, 2.6rem);
|
||||
margin: 0 0 12px;
|
||||
letter-spacing: 0.04em;
|
||||
color: #FFFFFF;
|
||||
}
|
||||
|
||||
.lead {
|
||||
margin: 0 0 22px;
|
||||
font-size: 1.05rem;
|
||||
line-height: 1.7;
|
||||
color: #F4F4F4;
|
||||
}
|
||||
|
||||
/* Pills / Badges */
|
||||
.pill-row {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
gap: 10px;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
|
||||
.pill {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
padding: 6px 12px;
|
||||
border-radius: 999px;
|
||||
font-size: 0.82rem;
|
||||
font-family: 'Montserrat', system-ui, sans-serif;
|
||||
font-weight: 600; /* Montserrat SemiBold */
|
||||
letter-spacing: 0.02em;
|
||||
border: 1px solid rgba(200, 203, 208, 0.28);
|
||||
background: rgba(26, 26, 26, 0.85);
|
||||
color: #FFFFFF;
|
||||
backdrop-filter: blur(8px);
|
||||
}
|
||||
|
||||
.pill-safe {
|
||||
border-color: rgba(3, 193, 96, 0.55);
|
||||
box-shadow: 0 0 12px rgba(3, 193, 96, 0.45);
|
||||
}
|
||||
|
||||
.pill-size {
|
||||
border-color: rgba(0, 81, 255, 0.6);
|
||||
box-shadow: 0 0 12px rgba(0, 81, 255, 0.45);
|
||||
}
|
||||
|
||||
.pill-fake {
|
||||
border-color: rgba(230, 57, 70, 0.6);
|
||||
box-shadow: 0 0 12px rgba(230, 57, 70, 0.45);
|
||||
}
|
||||
|
||||
/* Footer note */
|
||||
.note {
|
||||
margin: 0;
|
||||
font-size: 0.9rem;
|
||||
line-height: 1.6;
|
||||
color: #C8CBD0; /* silver */
|
||||
}
|
||||
|
||||
/* Responsive tweaks */
|
||||
@media (max-width: 640px) {
|
||||
.card {
|
||||
padding: 24px 20px 22px;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
.card::before {
|
||||
left: 16px;
|
||||
right: 16px;
|
||||
}
|
||||
|
||||
.logo {
|
||||
max-width: 220px;
|
||||
width: 70%;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
|
||||
.pill-row {
|
||||
flex-direction: row;
|
||||
}
|
||||
}
|
||||
@@ -1 +0,0 @@
|
||||
demo
|
||||
@@ -1,3 +1,47 @@
|
||||
<?php
|
||||
echo "site in development";
|
||||
?>
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>usbcheck.it – Coming Soon</title>
|
||||
|
||||
<!-- Google Fonts -->
|
||||
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700&family=Inter:wght@300;400&display=swap" rel="stylesheet">
|
||||
|
||||
<!-- Main CSS -->
|
||||
<link rel="stylesheet" href="css/comingsoon.css">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<div class="page">
|
||||
<div class="glow"></div>
|
||||
|
||||
<main class="card">
|
||||
<img
|
||||
src="img/logo_slogan.png"
|
||||
alt="usbcheck.it – Test USB drives for fakes"
|
||||
class="logo"
|
||||
>
|
||||
|
||||
<h1>Coming soon.</h1>
|
||||
|
||||
<p class="lead">
|
||||
Soon you’ll be able to verify if your USB drives are genuine –
|
||||
with quick online checks and deeper tests using our desktop tool.
|
||||
</p>
|
||||
|
||||
<div class="pill-row">
|
||||
<span class="pill pill-safe">Secure checks</span>
|
||||
<span class="pill pill-size">Real capacity tests</span>
|
||||
<span class="pill pill-fake">Detect fake USB sticks</span>
|
||||
</div>
|
||||
|
||||
<p class="note">
|
||||
This service is currently under development.
|
||||
Stay tuned – usbcheck.it will be online shortly.
|
||||
</p>
|
||||
</main>
|
||||
</div>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
|
||||
@@ -1 +0,0 @@
|
||||
Das ist eine mit vs code erstellte Demoseite
|
||||
Reference in New Issue
Block a user