-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
90 lines (82 loc) · 3.48 KB
/
index.html
File metadata and controls
90 lines (82 loc) · 3.48 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Soapy's Cave</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN" crossorigin="anonymous">
<link rel="stylesheet" href="style.css">
<style>
/* Common styling for all corner divs */
.corner-div {
position: fixed; /* Fixed position for each div */
left: 0; /* Align to the left */
bottom: 0; /* Align to the bottom */
transform-origin: bottom left; /* Scale from the bottom left */
border-radius: 10px; /* Rounded corners */
opacity: 0.8; /* Optional: for layering transparency */
}
/* Different sizes for each div */
.scale-1 {
width: 200px;
height: 200px;
background-color: #62ff00; /* Color for scale 2 */
margin-bottom: 10px; /* Space between divs */
margin-left: 10px; /* Space to the left */
}
.scale-2 {
width: 300px;
height: 300px;
background-color: #41f755 ; /* Color for scale 2 */
margin-bottom: 10px; /* Space between divs */
margin-left: 10px; /* Space to the left */
}
.scale-3 {
width: 400px;
height: 400px;
background-color: #20efaa; /* Color for scale 3 */
margin-bottom: 10px; /* Space between divs */
margin-left: 10px; /* Space to the left */
}
.scale-4 {
width: 500px;
height: 500px;
background-color: #00e7ff ; /* Color for scale 4 */
margin-bottom: 10px; /* Space between divs */
margin-left: 10px; /* Space to the left */
}
</style>
</head>
<body style="background-color: #7DE2D1;">
<!-- Navbar -->
<nav class="navbar navbar-expand-lg bg-body-tertiary">
<div class="container-fluid">
<a class="navbar-brand" href="/index.html">Home</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarText"
aria-controls="navbarText" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarText">
<ul class="navbar-nav me-auto mb-2 mb-lg-0">
<li class="nav-item">
<a class="nav-link" href="pro.html">Project Gallery</a>
</li>
</ul>
<span class="nav-item">
<a class="nav-link" href="rss.xml">RSS Feed</a>
</span>
</div>
</div>
</nav>
<!-- Main Content -->
<div style="margin-top: 50px; background-color: #CEF9F2; padding: 20px; border-radius: 15px; width: 80%; max-width: 600px; margin: auto; z-index: 5;">
<h1>Hi, I'm Soapy</h1>
<h2>Passionate About Electronics & Programming (:</h2>
</div>
<!-- Corner Divs -->
<div class="corner-div scale-1" style="z-index: 4;"></div>
<div class="corner-div scale-2" style="z-index: 3;"></div>
<div class="corner-div scale-3" style="z-index: 2;"></div>
<div class="corner-div scale-4" style="z-index: 1;"></div>
</body>
</html>