Skip to content

Commit d936a1c

Browse files
committed
fix: shorten download links. revert back the blue links
1 parent 1ad8639 commit d936a1c

File tree

4 files changed

+17
-13
lines changed

4 files changed

+17
-13
lines changed

_sass/elements.scss

+1-5
Original file line numberDiff line numberDiff line change
@@ -13,18 +13,14 @@ body {
1313
}
1414

1515
a {
16-
color: inherit;
16+
color: #00a4ca;
1717
text-decoration: none;
1818
}
1919

2020
a:hover {
2121
text-decoration: underline;
2222
}
2323

24-
div.text a {
25-
font-weight: bold;
26-
}
27-
2824
div.button a div {
2925
word-break:break-all;
3026
margin: 2%;

_sass/footer.scss

+8-2
Original file line numberDiff line numberDiff line change
@@ -73,11 +73,13 @@ footer {
7373
.copyright {
7474
font-size: .8em;
7575
margin: 0 auto;
76-
76+
7777
@media #{$tablet} {
7878
text-align: center;
7979
}
80-
80+
a {
81+
color: #999;
82+
}
8183
}
8284

8385
h2 {
@@ -90,6 +92,10 @@ footer {
9092
@extend %flexbox;
9193
@include flex-flow(wrap);
9294
margin: -10px -10px 10px -10px;
95+
96+
a {
97+
color: #fff;
98+
}
9399
}
94100

95101
.legal-line {

_sass/landing-page.scss

+6-2
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,10 @@
3939
}
4040
}
4141

42+
.releases {
43+
color: inherit;
44+
}
45+
4246
.bottom-cta {
4347
background: linear-gradient(to bottom, $brand-color 0%, $middle-gradient-color 100%);
4448
color: #fff;
@@ -52,8 +56,8 @@
5256

5357
.feature-list {
5458
max-width: fit-content;
55-
margin-left: auto;
56-
margin-right: auto;
59+
margin-left: auto;
60+
margin-right: auto;
5761
display: flex;
5862
justify-content: center;
5963

index.html

+2-4
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,12 @@ <h2 class="app-subtitle">A powerful build planner for Path of Exile</h2>
1616
<img class="social-icon" src="{{ site.baseurl }}/images/poe2_icon.png" alt="Path of Exile 1 logo"/>
1717
<div>
1818
<span>Download</span>
19-
<span>Path of Building 2</span>
2019
<span>for</span>
2120
<span>Path of Exile 2!</span>
2221
</div>
2322
</a>
2423
</div>
25-
<a href="https://github.com/PathOfBuildingCommunity/PathOfBuilding-PoE2/releases">
24+
<a href="https://github.com/PathOfBuildingCommunity/PathOfBuilding-PoE2/releases" class="releases">
2625
See all releases
2726
</a>
2827
</div>
@@ -35,13 +34,12 @@ <h2 class="app-subtitle">A powerful build planner for Path of Exile</h2>
3534
<img class="social-icon" src="{{ site.baseurl }}/images/poe1_icon.png" alt="Path of Exile 2 logo"/>
3635
<div>
3736
<span>Download</span>
38-
<span>Path of Building</span>
3937
<span>for</span>
4038
<span>Path of Exile!</span>
4139
</div>
4240
</a>
4341
</div>
44-
<a href="https://github.com/PathOfBuildingCommunity/PathOfBuilding/releases">
42+
<a href="https://github.com/PathOfBuildingCommunity/PathOfBuilding/releases" class="releases">
4543
See all releases
4644
</a>
4745
</div>

0 commit comments

Comments
 (0)