-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Module 4 of CS added and some changes in BG ETC..
- Loading branch information
shad
committed
Nov 17, 2024
1 parent
04996e5
commit e75e421
Showing
8 changed files
with
87 additions
and
7 deletions.
There are no files selected for viewing
Binary file not shown.
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 |
---|---|---|
@@ -1,12 +1,23 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
|
||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>ComputerScience</title> | ||
<link rel="stylesheet" href="style.css"> | ||
</head> | ||
<body> | ||
|
||
|
||
<body> | ||
<h1 class="title">Computer Science</h1> | ||
<div class="bg-text"> | ||
<h1><a href="./Sem-01/Module 1 - Part 1.pdf">Module 1.1 </a></h1> | ||
<h1><a href="./Sem-01/Module 1 - Part 2.pdf">Module 1.2 </a></h1> | ||
<h1><a href="./Sem-01/Module 2.pdf">Module 2 </a></h1> | ||
<h1><a href="./Sem-01/Module 3.pdf">Module 3 </a></h1> | ||
<h1><a href="./Sem-01/Module 4.pdf">Module 4 </a></h1> | ||
</div> | ||
</body> | ||
</html> | ||
|
||
</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,63 @@ | ||
|
||
|
||
body::before { | ||
content: ""; /* Important */ | ||
z-index: -1; /* Important */ | ||
position: inherit; | ||
left: inherit; | ||
top: inherit; | ||
width: inherit; | ||
height: inherit; | ||
background-image: inherit; | ||
background-size: cover; | ||
filter: blur(2px); | ||
} | ||
|
||
body { | ||
background-image: url("https://wallpapercave.com/wp/wp2099950.png"); | ||
background-size: 0 0; /* Image should not be drawn here */ | ||
width: 100%; | ||
height: 100%; | ||
position: fixed; /* Or absolute for scrollable backgrounds */ | ||
} | ||
|
||
* { | ||
box-sizing: border-box; | ||
} | ||
.title{ | ||
background-color: rgb(0,0,0); /* Fallback color */ | ||
background-color: rgba(0,0,0, 0.4); /* Black w/opacity/see-through */ | ||
color: white; | ||
font-weight: bold; | ||
border: 3px solid #f1f1f1; | ||
text-align: center; | ||
} | ||
|
||
|
||
|
||
.bg-text { | ||
background-color: rgb(0,0,0); /* Fallback color */ | ||
background-color: rgba(0,0,0, 0.4); /* Black w/opacity/see-through */ | ||
color: white; | ||
font-weight: bold; | ||
border: 3px solid #f1f1f1; | ||
position: absolute; | ||
top: 50%; | ||
left: 50%; | ||
transform: translate(-50%, -50%); | ||
z-index: 2; | ||
width: 80%; | ||
padding: 20px; | ||
text-align: center; | ||
} | ||
a{ | ||
color: white; | ||
text-decoration: none; | ||
font-size: 25px; | ||
|
||
} | ||
|
||
a:hover{ | ||
color: #fca2a2; | ||
font-size: 25px; | ||
} |
Binary file not shown.
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 |
---|---|---|
|
@@ -18,6 +18,10 @@ | |
<br> | ||
<br> | ||
<a href="">Module 03</a> | ||
<br> | ||
<br> | ||
|
||
<a href="./module4.pdf">Module 04</a> | ||
</div> | ||
|
||
|
||
|
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