Skip to content

Commit 08f6a5d

Browse files
Update JS.html
1 parent 0ad3fcb commit 08f6a5d

1 file changed

Lines changed: 50 additions & 1 deletion

File tree

JS/JS.html

Lines changed: 50 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,56 @@
55
<meta charset="UTF-8" />
66
<title>Shivam Maurya JS Notes</title>
77
<style>
8-
8+
body,
9+
html {
10+
height: 100%;
11+
margin: 0;
12+
}
13+
14+
.container {
15+
display: flex;
16+
height: 100vh;
17+
}
18+
19+
#left-aside {
20+
width: 230px;
21+
background-color: #d3d6da;
22+
padding: 10px;
23+
overflow-y: auto;
24+
height: 100%;
25+
position: fixed;
26+
font-family: 'Times New Roman';
27+
}
28+
29+
.asideLink a {
30+
line-height: 1.3;
31+
font-size: 18px;
32+
font-weight: 600;
33+
text-decoration: none;
34+
color: #464646;
35+
transition: color 0.3s ease;
36+
display: block;
37+
margin-bottom: 6px;
38+
}
39+
40+
.asideLink a.active {
41+
color: rgba(158, 9, 9, 0.82);
42+
font-weight: bold;
43+
}
44+
45+
main {
46+
margin-left: 245px;
47+
flex-grow: 1;
48+
overflow-y: auto;
49+
}
50+
51+
iframe {
52+
width: 100%;
53+
height: 1500px;
54+
border: none;
55+
}
56+
57+
.highlight { font-weight: bold; }
958
</style>
1059
</head>
1160
<body>

0 commit comments

Comments
 (0)