Skip to content

Commit

Permalink
move all static files here
Browse files Browse the repository at this point in the history
  • Loading branch information
jeroen committed Aug 27, 2024
1 parent 5d75e51 commit 39d3163
Show file tree
Hide file tree
Showing 16 changed files with 2,283 additions and 13 deletions.
4 changes: 2 additions & 2 deletions app.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ app.use(logger('dev'));
app.use(express.json());
app.use(express.urlencoded({ extended: false }));
app.use(cookieParser());
app.use(express.static(path.join(__dirname, 'static')));
app.use('/_global', express.static(path.join(__dirname, 'static')))
app.use(express.static(path.join(__dirname, 'static'))); //TODO: remove?
app.use('/_global/static', express.static(path.join(__dirname, 'static')))

// remove trailing slashes
app.use((req, res, next) => {
Expand Down
132 changes: 132 additions & 0 deletions static/R.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,132 @@
/*
* R.css
*
* Copyright (C) 2022 by Posit Software, PBC
*
* Unless you have received this program directly from Posit Software pursuant
* to the terms of a commercial license agreement with Posit Software, then
* this program is licensed to you under the terms of version 3 of the
* GNU Affero General Public License. This program is distributed WITHOUT
* ANY EXPRESS OR IMPLIED WARRANTY, INCLUDING THOSE OF NON-INFRINGEMENT,
* MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. Please refer to the
* AGPL (http://www.gnu.org/licenses/agpl-3.0.txt) for more details.
*
*/

body, td {
font-family: sans-serif;
font-size: 10pt;
}

body.macintosh, body.macintosh td {
font-family: "SF Pro Text", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

body.macintosh code,
body.macintosh pre {
font-family: Courier, monospace;
}

::selection {
background: rgb(181, 213, 255);
}

::-moz-selection{
background: rgb(181, 213, 255);
}

a:visited {
color: rgb(50%, 0%, 50%);
}

h1 {
font-size: x-large;
}

h2 {
font-size: x-large;
font-weight: normal;
}

h3 {
color: rgb(35%, 35%, 35%);
}

h4 {
color: rgb(35%, 35%, 35%);
font-style: italic;
}

h5 {
color: rgb(35%, 35%, 35%);
}

h6 {
color: rgb(35%, 35%, 35%);
font-style: italic;
}

.rstudio-themes-dark-grey h1,
.rstudio-themes-dark-grey h2,
.rstudio-themes-dark-grey h3,
.rstudio-themes-dark-grey h4,
.rstudio-themes-dark-grey h5,
.rstudio-themes-dark-grey h6 {
color: inherit;
}

.rstudio-themes-dark-grey *::selection,
.rstudio-themes-dark-grey *::selection {
background: rgba(255, 255, 255, 0.15);
color: #FFF;
}

img.toplogo {
max-width: 4em;
vertical-align: middle;
}

img.arrow {
width: 30px;
height: 30px;
border: 0;
}

span.acronym {
font-size: small;
}

span.env {
font-family: monospace;
}

span.file {
font-family: monospace;
}

span.option {
font-family: monospace;
}

span.pkg {
font-weight: bold;
}

span.samp {
font-family: monospace;
}

div.vignettes a:hover {
background: rgb(85%, 85%, 85%);
}

table p {
margin-top: 0;
margin-bottom: 6px;
}

h3.r-arguments-title + table tr td:first-child {
vertical-align: top;
min-width: 24px;
padding-right: 12px;
}
Loading

0 comments on commit 39d3163

Please sign in to comment.