Skip to content

Commit ecb0605

Browse files
committed
redesign for color grade
1 parent 1eb1f74 commit ecb0605

File tree

138 files changed

+127
-74904
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

138 files changed

+127
-74904
lines changed

Diff for: color/script.js renamed to CNAME

File renamed without changes.

Diff for: assets/css/styles.css

+52
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
body {
2+
font-family: Arial, sans-serif;
3+
background-color: #121212;
4+
color: #ffffff;
5+
text-align: center;
6+
}
7+
8+
header {
9+
background-color: #1e1e1e;
10+
padding: 20px;
11+
}
12+
13+
nav a {
14+
color: #00bcd4;
15+
text-decoration: none;
16+
margin: 0 15px;
17+
}
18+
19+
section {
20+
margin: 50px 0;
21+
}
22+
23+
form {
24+
background: #1e1e1e;
25+
padding: 20px;
26+
border-radius: 10px;
27+
width: 300px;
28+
margin: auto;
29+
}
30+
31+
input, textarea {
32+
width: 100%;
33+
margin: 10px 0;
34+
padding: 10px;
35+
border-radius: 5px;
36+
border: none;
37+
}
38+
39+
button {
40+
background: #00bcd4;
41+
color: #121212;
42+
border: none;
43+
padding: 10px;
44+
cursor: pointer;
45+
border-radius: 5px;
46+
}
47+
48+
nav a.active {
49+
font-weight: bold;
50+
color: #ffffff;
51+
text-decoration: underline;
52+
}

Diff for: assets/js/script.js

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
document.addEventListener("DOMContentLoaded", function () {
2+
let currentPage = window.location.pathname.split("/").pop(); // Get current file name
3+
let navLinks = document.querySelectorAll("nav a");
4+
5+
navLinks.forEach(link => {
6+
if (link.getAttribute("href") === currentPage) {
7+
link.classList.add("active");
8+
}
9+
});
10+
});

Diff for: cinematography/css/.DS_Store

-6 KB
Binary file not shown.

0 commit comments

Comments
 (0)