forked from Decentrala/website
		
	feat: theme button
This commit is contained in:
		@@ -22,7 +22,7 @@ if (theme !== null) {
 | 
				
			|||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
theme_switcher.addEventListener("click", () => {
 | 
					theme_switcher.addEventListener("click", () => {
 | 
				
			||||||
  if (theme_switcher.textContent.indexOf("off") !== -1) {
 | 
					  if (theme_switcher.getAttribute("title").indexOf("off") !== -1) {
 | 
				
			||||||
    changeToDarkTheme();
 | 
					    changeToDarkTheme();
 | 
				
			||||||
  } else {
 | 
					  } else {
 | 
				
			||||||
    changeToLightTheme();
 | 
					    changeToLightTheme();
 | 
				
			||||||
@@ -30,7 +30,7 @@ theme_switcher.addEventListener("click", () => {
 | 
				
			|||||||
});
 | 
					});
 | 
				
			||||||
 | 
					
 | 
				
			||||||
function changeToDarkTheme() {
 | 
					function changeToDarkTheme() {
 | 
				
			||||||
  theme_switcher.textContent = "turn the light on";
 | 
					  theme_switcher.setAttribute("title", "turn the light on");
 | 
				
			||||||
  document.documentElement.style.setProperty("--border", "var(--dark-border)");
 | 
					  document.documentElement.style.setProperty("--border", "var(--dark-border)");
 | 
				
			||||||
  document.documentElement.style.setProperty("--text", "var(--dark-text)");
 | 
					  document.documentElement.style.setProperty("--text", "var(--dark-text)");
 | 
				
			||||||
  document.documentElement.style.setProperty("--bg", "var(--dark-bg)");
 | 
					  document.documentElement.style.setProperty("--bg", "var(--dark-bg)");
 | 
				
			||||||
@@ -41,7 +41,7 @@ function changeToDarkTheme() {
 | 
				
			|||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
function changeToLightTheme() {
 | 
					function changeToLightTheme() {
 | 
				
			||||||
  theme_switcher.textContent = "turn the light off";
 | 
					  theme_switcher.setAttribute("title", "turn the light off");
 | 
				
			||||||
  document.documentElement.style.setProperty("--border", "var(--light-border)");
 | 
					  document.documentElement.style.setProperty("--border", "var(--light-border)");
 | 
				
			||||||
  document.documentElement.style.setProperty("--text", "var(--light-text)");
 | 
					  document.documentElement.style.setProperty("--text", "var(--light-text)");
 | 
				
			||||||
  document.documentElement.style.setProperty("--bg", "var(--light-bg)");
 | 
					  document.documentElement.style.setProperty("--bg", "var(--light-bg)");
 | 
				
			||||||
@@ -84,12 +84,10 @@ window.addEventListener("resize", () => {
 | 
				
			|||||||
  }
 | 
					  }
 | 
				
			||||||
});
 | 
					});
 | 
				
			||||||
 | 
					
 | 
				
			||||||
main.addEventListener("click", (event) => {
 | 
					main.addEventListener("click", () => {
 | 
				
			||||||
  if (sections_button.getAttribute("opened") === "true") {
 | 
					  if (sections_button.getAttribute("opened") === "true") {
 | 
				
			||||||
    closeMenu();
 | 
					    closeMenu();
 | 
				
			||||||
  }
 | 
					  }
 | 
				
			||||||
});
 | 
					});
 | 
				
			||||||
 | 
					
 | 
				
			||||||
// DEBUG;
 | 
					
 | 
				
			||||||
console.log(window.innerWidth);
 | 
					 | 
				
			||||||
console.log(window.innerHeight);
 | 
					 | 
				
			||||||
 
 | 
				
			|||||||
@@ -40,7 +40,6 @@ h2 {
 | 
				
			|||||||
    font-size: 2rem;
 | 
					    font-size: 2rem;
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					 | 
				
			||||||
p {
 | 
					p {
 | 
				
			||||||
    font-size: 1.5rem;
 | 
					    font-size: 1.5rem;
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -86,10 +86,24 @@ a:focus {
 | 
				
			|||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#logo {
 | 
					#logo {
 | 
				
			||||||
  font-size: 3rem;
 | 
					  font-size: 2.5rem;
 | 
				
			||||||
  font-weight: bold;
 | 
					  font-weight: bold;
 | 
				
			||||||
 | 
					  font-variant: small-caps;
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					#theme-switcher {
 | 
				
			||||||
 | 
					  border: 3px solid var(--border);
 | 
				
			||||||
 | 
					  width: 1.5rem;
 | 
				
			||||||
 | 
					  height: 1.5rem;
 | 
				
			||||||
 | 
					  border-radius: 3rem;
 | 
				
			||||||
 | 
					  margin-left: auto;
 | 
				
			||||||
 | 
					  background: linear-gradient(90deg, var(--border) 0%, var(--border) 50%, var(--bg) 51%, var(--bg) 100%);
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					#theme-switcher:hover {
 | 
				
			||||||
 | 
					  border-color: var(--hightlight);
 | 
				
			||||||
 | 
					  background: linear-gradient(90deg, var(--hightlight) 0%, var(--hightlight) 50%, var(--bg) 51%, var(--bg) 100%);
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
.account,
 | 
					.account,
 | 
				
			||||||
.sections,
 | 
					.sections,
 | 
				
			||||||
#sections-menu {
 | 
					#sections-menu {
 | 
				
			||||||
@@ -150,6 +164,7 @@ button {
 | 
				
			|||||||
  background: var(--bg);
 | 
					  background: var(--bg);
 | 
				
			||||||
  color: var(--text);
 | 
					  color: var(--text);
 | 
				
			||||||
  margin: 0 2rem 0 0;
 | 
					  margin: 0 2rem 0 0;
 | 
				
			||||||
 | 
					  cursor: pointer;
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@media screen and (max-height: 860px),
 | 
					@media screen and (max-height: 860px),
 | 
				
			||||||
@@ -177,4 +192,9 @@ screen and (max-width: 1500px) {
 | 
				
			|||||||
  .links {
 | 
					  .links {
 | 
				
			||||||
    display: none;
 | 
					    display: none;
 | 
				
			||||||
  }
 | 
					  }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  header,
 | 
				
			||||||
 | 
					  footer {
 | 
				
			||||||
 | 
					    padding: 0 1rem;
 | 
				
			||||||
 | 
					  }
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
		Reference in New Issue
	
	Block a user