Skip to content

Instantly share code, notes, and snippets.

@CuzImBisonratte
Last active October 19, 2022 17:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save CuzImBisonratte/a13f4e5b513e22352b1a62b432fc33ca to your computer and use it in GitHub Desktop.
Save CuzImBisonratte/a13f4e5b513e22352b1a62b432fc33ca to your computer and use it in GitHub Desktop.
Structures
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title></title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<script src="script.js"></script>
</body>
</html>
<?php
?>
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title></title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<script src="script.js"></script>
</body>
</html>
/* Import the font "Dosis" that's used */
@import url('https://fonts.googleapis.com/css2?family=Dosis:wght@800&display=swap');
/* Theme switch */
#themeToggleButton {
color: var(--font-color);
background: var(--color-primary);
padding: 2vh 2vw;
border-radius: 1vh;
}
#themeButton {
position: fixed;
top: 2vh;
right: 2vh;
}
/* text */
span {
text-align: center;
margin: auto;
cursor: pointer;
}
/* everything on the page */
* {
box-sizing: border-box;
font-size: 2.3vh;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
transition: 0.5s;
}
body,
html {
background-color: #282C36;
font-family: Dosis;
transition: 1s;
height: 100%;
width: 100%;
top: 0;
left: 0;
margin: 0;
font-size: 100%;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment