-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add a coming soon message to each lang page
- Loading branch information
1 parent
d408682
commit fbf48f3
Showing
10 changed files
with
163 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>Css | Coding Notes</title> | ||
<link rel="stylesheet" href="../../Prism/prism.css"> | ||
<script src="../../Prism/prism.js"></script> | ||
<link rel="stylesheet" href="../../Stylesheets/utils.css"> | ||
<link rel="stylesheet" href="../../Stylesheets/style.css"> | ||
<link rel="stylesheet" href="../../Stylesheets/language.css"> | ||
<link rel="stylesheet" href="../../Stylesheets/css.css"> | ||
</head> | ||
<body> | ||
<header class="header"> | ||
<div class="heading"> | ||
<a href="../../index.html"><h1>Coding Notes</h1></a> | ||
</div> | ||
<div class="navigation-bar"> | ||
<a href="../python/python.html">Python</a> | ||
<a href="../java/java.html">Java</a> | ||
<a href="../cpp/cpp.html">C++</a> | ||
<a href="../clang/clang.html">C-Lang</a> | ||
</div> | ||
</header> | ||
<main> | ||
<div class="coming-soon"> | ||
<h1>Support For Css is Coming Soon!!!!</h1> | ||
</div> | ||
</main> | ||
</body> | ||
<script src="../../Scripts/script.js"></script> | ||
<script src="../../Scripts/language.js"></script> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>Html | Coding Notes</title> | ||
<link rel="stylesheet" href="../../Prism/prism.css"> | ||
<script src="../../Prism/prism.js"></script> | ||
<link rel="stylesheet" href="../../Stylesheets/utils.css"> | ||
<link rel="stylesheet" href="../../Stylesheets/style.css"> | ||
<link rel="stylesheet" href="../../Stylesheets/language.css"> | ||
<link rel="stylesheet" href="../../Stylesheets/html.css"> | ||
</head> | ||
<body> | ||
<header class="header"> | ||
<div class="heading"> | ||
<a href="../../index.html"><h1>Coding Notes</h1></a> | ||
</div> | ||
<div class="navigation-bar"> | ||
<a href="../python/python.html">Python</a> | ||
<a href="../java/java.html">Java</a> | ||
<a href="../cpp/cpp.html">C++</a> | ||
<a href="../clang/clang.html">C-Lang</a> | ||
</div> | ||
</header> | ||
<main> | ||
<div class="coming-soon"> | ||
<h1>Support For Html is Coming Soon!!!!</h1> | ||
</div> | ||
</main> | ||
</body> | ||
<script src="../../Scripts/script.js"></script> | ||
<script src="../../Scripts/language.js"></script> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
.hero-section { | ||
margin: auto; | ||
width: 90vw; | ||
height: min(300px,90vh); | ||
display: flex; | ||
align-items: center; | ||
justify-content: center; | ||
flex-direction: column; | ||
} | ||
|
||
.hero-section h1{ | ||
font-size: max(30px,5vw); | ||
letter-spacing: -0.3vw; | ||
word-spacing: -0.5vw; | ||
text-shadow: 3px 3px var(--text-shadow-color); | ||
} | ||
|
||
.hero-section p{ | ||
font-size: max(1vw,6px); | ||
} | ||
|
||
.container { | ||
display: flex; | ||
flex-wrap: wrap; | ||
justify-content: space-around; | ||
} | ||
|
||
.item { | ||
width: max(400px,40vw); | ||
height: 60vh; | ||
margin: 10px; | ||
border-radius: 30px; | ||
padding: 10px; | ||
background-color: var(--primary-color); | ||
overflow: hidden; | ||
transition-property: transform box-shadow background-color; | ||
transition-duration: 0.4s; | ||
} | ||
|
||
.item:hover { | ||
transform: translate(-10px,-5px); | ||
box-shadow: 5px 10px var(--box-shadow-color); | ||
background-color: var(--secondary-color); | ||
} | ||
|
||
.item h2{ | ||
text-align: center; | ||
font-size: min(40px,max(4vw,28px)); | ||
color: var(--primary-text-color); | ||
} | ||
|
||
.item p{ | ||
text-align: left; | ||
font-size: max(15px,2vw,20px); | ||
color: var(--primary-text-color); | ||
} | ||
|
||
@media (max-width: 460px) { | ||
.item { | ||
width: max(200px,40vw); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters