mirror of
https://github.com/scratchfoundation/scratch-www.git
synced 2025-02-18 09:00:30 -05:00
Remove Red Outline on "href='''
This commit is contained in:
parent
d36c020b8f
commit
4a51ffeb59
3 changed files with 11 additions and 18 deletions
|
@ -46,13 +46,6 @@ a:hover {
|
||||||
text-decoration: underline;
|
text-decoration: underline;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Adds Red outline to Links with no href */
|
|
||||||
|
|
||||||
a[href=""] {
|
|
||||||
$fail-red: #ff0000;
|
|
||||||
outline: 1px solid $fail-red;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Classes */
|
/* Classes */
|
||||||
.inner {
|
.inner {
|
||||||
margin: 0 auto;
|
margin: 0 auto;
|
||||||
|
|
|
@ -38,9 +38,9 @@ var View = React.createClass({
|
||||||
|
|
||||||
<ul className="sub-nav">
|
<ul className="sub-nav">
|
||||||
<li className="info">Find out more:</li>
|
<li className="info">Find out more:</li>
|
||||||
<a href=""><li className="link">About Scratch</li></a>
|
<a href="#"><li className="link">About Scratch</li></a>
|
||||||
<a href=""><li className="link">For Parents</li></a>
|
<a href="#"><li className="link">For Parents</li></a>
|
||||||
<a href=""><li className="link">For Educators</li></a>
|
<a href="#"><li className="link">For Educators</li></a>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
@ -50,27 +50,27 @@ var View = React.createClass({
|
||||||
<div className="column">
|
<div className="column">
|
||||||
<h3>Related Resources</h3>
|
<h3>Related Resources</h3>
|
||||||
<p>Below are some resources to help explore Scratch by yourself or to assist groups in
|
<p>Below are some resources to help explore Scratch by yourself or to assist groups in
|
||||||
workshops and classrooms <a href="">Find out more</a></p>
|
workshops and classrooms <a href="#">Find out more</a></p>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div className="resource">
|
<div className="resource">
|
||||||
<img src="/svgs/tips-card.svg" />
|
<img src="/svgs/tips-card.svg" />
|
||||||
<div className="resource-info">
|
<div className="resource-info">
|
||||||
<a href="">Hide & Seek Tip Cards</a>
|
<a href="#">Hide & Seek Tip Cards</a>
|
||||||
<div className="file-size">13mbs</div>
|
<div className="file-size">13mbs</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div className="resource">
|
<div className="resource">
|
||||||
<img src="/svgs/tips-card.svg" />
|
<img src="/svgs/tips-card.svg" />
|
||||||
<div className="resource-info">
|
<div className="resource-info">
|
||||||
<a href="">Dance Tip Cards</a>
|
<a href="#">Dance Tip Cards</a>
|
||||||
<div className="file-size">5mbs</div>
|
<div className="file-size">5mbs</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div className="resource">
|
<div className="resource">
|
||||||
<img src="/svgs/tips-card.svg" />
|
<img src="/svgs/tips-card.svg" />
|
||||||
<div className="resource-info">
|
<div className="resource-info">
|
||||||
<a href="">Name Tip Cards</a>
|
<a href="#">Name Tip Cards</a>
|
||||||
<div className="file-size">11mbs</div>
|
<div className="file-size">11mbs</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -80,7 +80,7 @@ var View = React.createClass({
|
||||||
<div className="column">
|
<div className="column">
|
||||||
<h3>Tips Window</h3>
|
<h3>Tips Window</h3>
|
||||||
<p>New to Scratch or haven’t heard of the Tips Window? Check out interactive tutorials,
|
<p>New to Scratch or haven’t heard of the Tips Window? Check out interactive tutorials,
|
||||||
handy block information, and other helpful hints all in the new 2015 <a href="">Tips
|
handy block information, and other helpful hints all in the new 2015 <a href="#">Tips
|
||||||
Window</a></p>
|
Window</a></p>
|
||||||
</div>
|
</div>
|
||||||
<div className="column">
|
<div className="column">
|
||||||
|
@ -92,7 +92,7 @@ var View = React.createClass({
|
||||||
<div className="column">
|
<div className="column">
|
||||||
<h3>Still Want More?</h3>
|
<h3>Still Want More?</h3>
|
||||||
<p><strong>Awesome!</strong> Here are some addtional tutorials
|
<p><strong>Awesome!</strong> Here are some addtional tutorials
|
||||||
from the Tips Window. <a href="">See all tips</a></p>
|
from the Tips Window. <a href="#">See all tips</a></p>
|
||||||
</div>
|
</div>
|
||||||
</section>
|
</section>
|
||||||
</Box>
|
</Box>
|
||||||
|
|
|
@ -179,10 +179,10 @@ $base-bg: $ui-white;
|
||||||
width: inherit;
|
width: inherit;
|
||||||
|
|
||||||
text-transform: uppercase;
|
text-transform: uppercase;
|
||||||
letter-spacing: 1px;
|
letter-spacing: .5px;
|
||||||
color: $ui-orange;
|
color: $ui-orange;
|
||||||
font-size: .7em;
|
font-size: .7em;
|
||||||
font-weight: 700;
|
font-weight: 500;
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue