tangled
alpha
login
or
join now
danielmorrisey.com
/
website
1
fork
atom
madebydanny.uk written in html, css, and a lot of JavaScript I don't understand
madeydanny.uk
html
css
javascript
1
fork
atom
overview
issues
pulls
pipelines
hgyuijn
Daniel Morrisey
4 months ago
38385476
35c15296
+20
-13
1 changed file
expand all
collapse all
unified
split
css
index.css
+20
-13
css/index.css
···
1
1
body {
2
2
-
background-color: black;
3
3
-
color: white;
4
4
-
background-image: url("http://upcloud.madebydanny.uk/cdn/madebydanny.uk/site-files/wallpaperflare.com_wallpaper.jpg");
5
5
-
background-position: center center;
6
6
-
background-size: cover;
7
7
-
background-attachment: fixed;
8
8
-
font-family: "Itim", cursive;
9
9
-
font-weight: 400;
10
10
-
font-style: normal;
11
11
-
margin: 0;
12
12
-
padding: 20px 0;
13
13
-
line-height: 1.6;
14
14
-
}
2
2
+
background-color: black;
3
3
+
color: white;
4
4
+
background-image: url("https://upcloud.madebydanny.uk/cdn/madebydanny.uk/site-files/wallpaperflare.com_wallpaper.jpg");
5
5
+
background-position: center center;
6
6
+
background-size: cover;
7
7
+
background-attachment: scroll; /* Changed from fixed - fixes mobile issues */
8
8
+
font-family: "Itim", cursive;
9
9
+
font-weight: 400;
10
10
+
font-style: normal;
11
11
+
margin: 0;
12
12
+
padding: 20px 0;
13
13
+
line-height: 1.6;
14
14
+
}
15
15
+
16
16
+
/* Optional: Keep fixed effect on desktop only */
17
17
+
@media (min-width: 768px) {
18
18
+
body {
19
19
+
background-attachment: fixed;
20
20
+
}
21
21
+
}
15
22
16
23
/* Main content container with improved contrast */
17
24
.center {