Links
This commit is contained in:
parent
7637b4d9f3
commit
79941d0b59
51
css/not_ready.css
Normal file
51
css/not_ready.css
Normal 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
18
html/about.html
Normal 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
18
html/articles.html
Normal 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>
|
@ -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>
|
||||
|
62
scss/not_ready.scss
Normal file
62
scss/not_ready.scss
Normal 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);
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user