madebydanny.uk written in html, css, and a lot of JavaScript I don't understand madeydanny.uk
html css javascript

hgyuijn

+20 -13
+20 -13
css/index.css
··· 1 1 body { 2 - background-color: black; 3 - color: white; 4 - background-image: url("http://upcloud.madebydanny.uk/cdn/madebydanny.uk/site-files/wallpaperflare.com_wallpaper.jpg"); 5 - background-position: center center; 6 - background-size: cover; 7 - background-attachment: fixed; 8 - font-family: "Itim", cursive; 9 - font-weight: 400; 10 - font-style: normal; 11 - margin: 0; 12 - padding: 20px 0; 13 - line-height: 1.6; 14 - } 2 + background-color: black; 3 + color: white; 4 + background-image: url("https://upcloud.madebydanny.uk/cdn/madebydanny.uk/site-files/wallpaperflare.com_wallpaper.jpg"); 5 + background-position: center center; 6 + background-size: cover; 7 + background-attachment: scroll; /* Changed from fixed - fixes mobile issues */ 8 + font-family: "Itim", cursive; 9 + font-weight: 400; 10 + font-style: normal; 11 + margin: 0; 12 + padding: 20px 0; 13 + line-height: 1.6; 14 + } 15 + 16 + /* Optional: Keep fixed effect on desktop only */ 17 + @media (min-width: 768px) { 18 + body { 19 + background-attachment: fixed; 20 + } 21 + } 15 22 16 23 /* Main content container with improved contrast */ 17 24 .center {