Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Accessibility improvements
  • Loading branch information
gpotter2 committed Sep 3, 2023
commit ffdcb67b180c34fb649ce87a1be27d4906b25aea
26 changes: 22 additions & 4 deletions src/views/Home.vue
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,10 @@
<v-row>
<!-- What is Scapy -->
<v-col cols="12" lg="7" class="d-flex">
<v-card variant="tonal" title="What is Scapy?">
<v-card variant="tonal">
<v-card-title>
<h4>What is Scapy?</h4>
</v-card-title>
<v-card-text>
<v-row>
<v-col cols="12" sm="4">
Expand Down Expand Up @@ -79,7 +82,10 @@
</v-col>
<!-- Documentation -->
<v-col cols="12" lg="8">
<v-card variant="tonal" title="Documentation">
<v-card variant="tonal">
<v-card-title>
<h4>Documentation</h4>
</v-card-title>
<v-card-text class="text-body-2 align-content-center">
<p>
The official Scapy documentation can be found online on readthedocs:
Expand Down Expand Up @@ -153,7 +159,10 @@
</v-col>
<!-- Maintainers -->
<v-col cols="12" lg="4" class="d-flex flex-column">
<v-card variant="tonal" title="Maintainers" class="flex-grow-1 flex-shrink-1">
<v-card variant="tonal" class="flex-grow-1 flex-shrink-1">
<v-card-title>
<h4>Maintainers</h4>
</v-card-title>
<v-card-text class="text-body-2">
<v-row>
<v-col cols="6" sm="4" lg="6">
Expand All @@ -175,7 +184,10 @@
<!-- Downloads -->
<v-col cols="12">
<div ref="downloads_section">
<v-card variant="tonal" title="Downloads & Installation">
<v-card variant="tonal">
<v-card-title>
<h4>Downloads & Installation</h4>
</v-card-title>
<v-card-text class="text-body-2">
<p>
There are several ways of installing Scapy, depending on your plateform.
Expand Down Expand Up @@ -340,4 +352,10 @@ a:visited {
code.bash:before {
content: '$ ';
}

/* Thinner h4 titles */
h4 {
font-weight: 500;
padding: 2px 0px 2px 0px;
}
</style>