Skip to content

Commit

Permalink
make about page also mobile friendly
Browse files Browse the repository at this point in the history
Signed-off-by: vsoch <vsoch@users.noreply.github.com>
  • Loading branch information
vsoch committed Apr 26, 2022
1 parent e33e957 commit 95158c6
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 6 deletions.
2 changes: 1 addition & 1 deletion _includes/graphs/languages.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<svg height="100%" width="100%" id="languages"></svg>
<svg class="radiuss-graph" height="100%" width="100%" id="languages"></svg>
<script src="{{ site.baseurl }}/assets/js/extractors/languages.js"></script>

<script>
Expand Down
2 changes: 1 addition & 1 deletion _includes/graphs/licenses.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<svg height="100%" width="100%" id="licenses"></svg>
<svg class="radiuss-graph" height="100%" width="100%" id="licenses"></svg>
<script src="{{ site.baseurl }}/assets/js/extractors/licenses.js"></script>

<script>
Expand Down
2 changes: 1 addition & 1 deletion _includes/graphs/topics.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<svg id="topics"></svg>
<svg class="radiuss-graph" id="topics"></svg>
<script src="{{ site.baseurl }}/assets/js/extractors/topics.js"></script>

<script>
Expand Down
4 changes: 2 additions & 2 deletions _layouts/home.html
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,11 @@
<div class="inner-header flex">
<div class="flex-column">
<div class="item">
<h1 class="radiuss">radiuss</h1>
<h1 class="radiuss homeradiuss">radiuss</h1>
<h2>Rapid Application Development via an Institutional Universal Software Stack</h2>
</div>
<div class="item abstract">
<p>
<p class="homep">
RADIUSS aims to develop and deploy a common base of foundational
scientific software with opt-in adoption from Lawrence Livermore
National Laboratory applications in order to reduce long-term software
Expand Down
5 changes: 5 additions & 0 deletions assets/css/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,7 @@ body div {
flex-wrap: wrap;
margin-left: -8px;
}

.card-tag {
margin-top: 8px;
margin-left: 8px;
Expand All @@ -97,4 +98,8 @@ body div {
.cards {
padding: 0px;
}
.radiuss-graph {
display: none;
}

}
8 changes: 7 additions & 1 deletion assets/css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -144,9 +144,15 @@ a {
.waves {
display:none;
}
.homeradiuss {
padding-bottom:25px;
}
.homep {
width: 75%;
}
p {
letter-spacing: 0px;
width: 75%;
width: 100%;
margin: auto;
padding-bottom:30px;
}
Expand Down

0 comments on commit 95158c6

Please sign in to comment.