Skip to content

Commit

Permalink
accessibility updates
Browse files Browse the repository at this point in the history
  • Loading branch information
dnoneill committed Mar 22, 2023
1 parent 353d9f3 commit 99b0df3
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 7 deletions.
Binary file modified public/favicon.ico
Binary file not shown.
2 changes: 1 addition & 1 deletion public/index.html
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<!DOCTYPE html>
<html lang="">
<html lang="en">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta charset="utf-8">
Expand Down
Binary file removed src/assets/logo.png
Binary file not shown.
25 changes: 19 additions & 6 deletions src/components/tftf.vue
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,15 @@
<div class="wrapper">
<div class="box a">
<p> ARC </p>
<h4>{{ arccards[0] }}</h4>
<h3>{{ arccards[0] }}</h3>
</div>
<div class="box b">
<p> OBJECT </p>
<h4> there is a <br><em>{{ objectcards[0] }}</em></h4>
<h3> there is a <br><em>{{ objectcards[0] }}</em></h3>
</div>
<div class="box c">
<p> TERRAIN </p>
<h4> related to <br><em>{{ terraincards[0] }}</em>.</h4>
<h3> related to <br><em>{{ terraincards[0] }}</em>.</h3>
</div>


Expand All @@ -37,8 +37,8 @@
Use <a href="https://docs.google.com/presentation/d/1VoBZTmjG2UpjqwyJLg8GF4JeLEkhmag5Ru-uG4kXxes/copy">this template</a> to respond to the prompt.
<br>
</p>
<h3> </h3>
<h3> About the card decks: </h3>
<br/>
<h2> About the card decks: </h2>
<ul class="list-group">
<li v-for="(deck, index) in card_decks" :key="index">{{deck.desc}}</li>
<br>
Expand Down Expand Up @@ -118,7 +118,8 @@ export default {
</script>

<style scoped>
h3 {
h4 {
margin: 40px 0 0;
}
ul {
Expand All @@ -130,6 +131,18 @@ li {
margin: 0 10px;
}
.box h3 {
font-size: 1.5rem;
}
a {
color: #004C9E;
}
.btn-primary {
background-color: #004C9E;
border-color: #004C9E;
}
@media screen and (min-width: 601px){
.wrapper {
display: grid;
Expand Down

0 comments on commit 99b0df3

Please sign in to comment.