This commit is contained in:
Candifloss 2024-12-11 18:53:50 +05:30
parent 7637b4d9f3
commit 79941d0b59
7 changed files with 154 additions and 5 deletions

View File

@ -19,7 +19,7 @@ body {
align-items: center;
height: 100vh;
margin: 0;
font-family: "IosevkaTermSlab NerdFont Mono";
font-family: "IosevkaTermSlab Nerd Font Mono";
}
body .container {
text-align: center;

51
css/not_ready.css Normal file
View File

@ -0,0 +1,51 @@
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: "Helvetica Neue", Arial, sans-serif;
background-color: #f4f4f4;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
color: #333;
}
body .container {
text-align: center;
padding: 40px;
background-color: #fff;
border-radius: 10px;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
max-width: 400px;
}
body .container h1 {
font-size: 3rem;
color: #333;
margin-bottom: 20px;
font-weight: bold;
}
body .container h1:hover {
color: #007BFF;
cursor: pointer;
}
body .container p {
font-size: 1.2rem;
color: #777;
line-height: 1.6;
}
body .container p::first-letter {
font-size: 1.5rem;
font-weight: bold;
color: #333;
}
body .container p::after {
content: "...";
color: #333;
font-weight: bold;
}
body .container:focus-within {
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

18
html/about.html Normal file
View File

@ -0,0 +1,18 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Coming Soon</title>
<link rel="stylesheet" href="../css/not_ready.css">
</head>
<body>
<div class="container">
<h1>This page is not ready yet!</h1>
<p>Working hard to bring you something amazing. Stay tuned!</p>
</div>
</body>
</html>

18
html/articles.html Normal file
View File

@ -0,0 +1,18 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Coming Soon</title>
<link rel="stylesheet" href="../css/not_ready.css">
</head>
<body>
<div class="container">
<h1>Coming soon!</h1>
<p>Working hard to bring you something amazing. Stay tuned!</p>
</div>
</body>
</html>

View File

@ -12,9 +12,9 @@
<nav>
<ul>
<li><a href="https://git.candifloss.cc/candifloss" title="Git repos">code</a></li>
<li><a href="#art" title="Art works">art</a></li>
<li><a href="#articles" title="Wiki and how to-s">articles</a></li>
<li><a href="#about" title="About me">about</a></li>
<li><a href="https://www.instagram.com/candifloss__/" title="Art works">art</a></li>
<li><a href="articles.html" title="Wiki and how to-s">articles</a></li>
<li><a href="about.html" title="About me">about</a></li>
</ul>
</nav>
</div>

View File

@ -29,7 +29,7 @@ body {
align-items: center;
height: 100vh;
margin: 0;
font-family: "IosevkaTermSlab NerdFont Mono";
font-family: "IosevkaTermSlab Nerd Font Mono";
.container {
text-align: center;

62
scss/not_ready.scss Normal file
View File

@ -0,0 +1,62 @@
// General Reset
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Helvetica Neue', Arial, sans-serif;
background-color: #f4f4f4;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
color: #333;
.container {
text-align: center;
padding: 40px;
background-color: #fff;
border-radius: 10px;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
max-width: 400px;
h1 {
font-size: 3rem;
color: #333;
margin-bottom: 20px;
font-weight: bold;
// Nested styling within h1
&:hover {
color: #007BFF;
cursor: pointer;
}
}
p {
font-size: 1.2rem;
color: #777;
line-height: 1.6;
// Nested styling within p
&::first-letter {
font-size: 1.5rem;
font-weight: bold;
color: #333;
}
&::after {
content: '...';
color: #333;
font-weight: bold;
}
}
// Additional styling for the container when it's in focus (or other possible states)
&:focus-within {
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}
}
}