diff options
| author | emilybrooks <emilybrooksemilybrooks@gmail.com> | 2024-07-19 12:28:05 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-07-19 12:28:05 -0700 |
| commit | 9fd21791f1141b6e19f022767b2a56e817642860 (patch) | |
| tree | bd4d23c86835d53b72e6f57acc31fade81e86b55 | |
| parent | b11600b26cf594f8e4b54bba3f99a39eaa554942 (diff) | |
(website) fix incorrect tiling (#200)
* fix incorrect tiling
* newline
| -rw-r--r-- | docs/autumn.css | 2 | ||||
| -rw-r--r-- | docs/spring.css | 2 | ||||
| -rw-r--r-- | docs/style.css | 20 | ||||
| -rw-r--r-- | docs/summer.css | 2 | ||||
| -rw-r--r-- | docs/winter.css | 2 |
5 files changed, 14 insertions, 14 deletions
diff --git a/docs/autumn.css b/docs/autumn.css index fdf93e8..f8c525d 100644 --- a/docs/autumn.css +++ b/docs/autumn.css @@ -1,4 +1,4 @@ -body
+#wrapper
{
background: #14504a url(website_assets/bg_autumn.webp);
background-attachment: fixed;
diff --git a/docs/spring.css b/docs/spring.css index 0f60eb2..0b6f525 100644 --- a/docs/spring.css +++ b/docs/spring.css @@ -1,4 +1,4 @@ -body
+#wrapper
{
background: #14504a url(website_assets/bg_spring.webp);
background-attachment: fixed;
diff --git a/docs/style.css b/docs/style.css index 25bd87e..2a56984 100644 --- a/docs/style.css +++ b/docs/style.css @@ -7,16 +7,6 @@ padding: 0;
}
-body
-{
- background: #14504a url(website_assets/bg_autumn.webp);
- background-attachment: fixed;
- background-position-x: 50%;
- background-position-y: 100%;
- background-repeat: no-repeat;
- background-size: cover;
-}
-
.navBar
{
width: auto;
@@ -139,6 +129,12 @@ body {
width: auto;
padding: 1vw;
+ background: #14504a url(website_assets/bg_autumn.webp);
+ background-attachment: fixed;
+ background-position-x: 50%;
+ background-position-y: 100%;
+ background-repeat: no-repeat;
+ background-size: cover;
}
#letterTop
@@ -146,6 +142,7 @@ body width: auto;
height: 34px;
background-image: url(website_assets/letter_top.svg);
+ background-repeat: repeat-x;
}
#letterBottom
@@ -153,6 +150,7 @@ body width: auto;
height: 34px;
background-image: url(website_assets/letter_bottom.svg);
+ background-repeat: repeat-x;
}
#ribbon
@@ -312,6 +310,7 @@ body border-style: none;
background-color: transparent;
background-image: url(website_assets/graph_window.svg);
+ background-repeat: no-repeat;
padding-top: 25px;
margin-bottom: 20px;
}
@@ -340,6 +339,7 @@ body {
background-color: transparent;
background-image: url(website_assets/letter.svg);
+ background-repeat: no-repeat;
width: 560px;
height: 407px;
padding: 70px;
diff --git a/docs/summer.css b/docs/summer.css index 5a2572d..b7a1087 100644 --- a/docs/summer.css +++ b/docs/summer.css @@ -1,4 +1,4 @@ -body
+#wrapper
{
background: #14504a url(website_assets/bg_summer.webp);
background-attachment: fixed;
diff --git a/docs/winter.css b/docs/winter.css index bf80325..4368128 100644 --- a/docs/winter.css +++ b/docs/winter.css @@ -1,4 +1,4 @@ -body
+#wrapper
{
background: #14504a url(website_assets/bg_winter.webp);
background-attachment: fixed;
|
