Skip to content

Commit

Permalink
Brute Ratel Parser Alpha & Custom Parser Foundation (cisagov#143)
Browse files Browse the repository at this point in the history
Co-authored-by: Austin Golding <austin.golding@pnnl.gov>
Co-authored-by: Courtney Carpenter <ccarpenter28@gmail.com>
Co-authored-by: Sebastian Ang <dajian.ang@pnnl.gov>
  • Loading branch information
4 people committed Jul 31, 2023
0 parents commit d01d6e4
Show file tree
Hide file tree
Showing 2 changed files with 483 additions and 0 deletions.
105 changes: 105 additions & 0 deletions assets/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,105 @@
.currentTab:where(.astro-PUX6A34N) {
color: #fff !important;
}
.nav-wrapper:where(.astro-3EF6KSR2) {
display: flex;
align-items: flex-start;
justify-content: space-between;
}
.download:where(.astro-3EF6KSR2) {
display: flex;
padding: 16px;
}
html {
font-family: sans-serif;
}
body {
margin: 0 auto;
padding: 1rem 2rem;
line-height: 1.5;
background-color: #1f1f1f;
color: #fff;
max-width: 1200px;
}
.container {
max-width: 1000px !important;
margin: auto;
}
* {
box-sizing: border-box;
}
a {
color: #2f81f7;
text-decoration: none;
}
h1 {
margin: 1rem 0;
font-size: 2.5rem;
}
.button a {
background-color: #1064fe;
text-decoration: none;
color: #fff !important;
padding: 0.25rem 0.75rem;
border-radius: 5px;
}
.button a:hover {
background-color: #0a49bd;
}
.menu {
cursor: pointer;
padding: 16px;
}
.menu:hover .line {
background-color: #fff;
}
.menu .line {
display: block;
width: 30px;
height: 3px;
margin-bottom: 10px;
background-color: #4f4f4f;
}
.nav-links {
width: 100%;
top: 5rem;
left: 48px;
display: none;
margin: 0;
}
.nav-links a {
display: block;
text-align: center;
padding: 10px 0;
color: #4f4f4f;
font-size: 1.2rem;
font-weight: 700;
text-transform: uppercase;
}
.nav-links a:hover {
color: #fff;
}
@media screen and (max-width: 500px) {
.expanded {
display: flex;
align-items: start;
padding-left: 16px;
flex-direction: column;
}
}
@media screen and (min-width: 500px) {
.nav-links {
display: flex;
position: static;
width: auto;
background: none;
justify-content: flex-start;
}
.nav-links a {
display: inline-block;
padding: 1rem;
}
.menu {
display: none;
}
}

0 comments on commit d01d6e4

Please sign in to comment.