Skip to content

Commit

Permalink
Add static and update config
Browse files Browse the repository at this point in the history
  • Loading branch information
rantahar committed May 27, 2024
1 parent fde7251 commit dd8149a
Show file tree
Hide file tree
Showing 6 changed files with 101 additions and 3 deletions.
2 changes: 1 addition & 1 deletion config.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# The URL the site will be built for
base_url = "https://nordic-rse.org/conference/"
base_url = "https://nordic-rse.org/nordic-rse-2025/"

# Whether to automatically compile all Sass files in the sass directory
compile_sass = false
Expand Down
2 changes: 2 additions & 0 deletions content/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,5 @@

# Nordic RSE 2025 Conference

There is content here

Binary file added public/img/nordic-rse-logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
93 changes: 93 additions & 0 deletions static/css/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,93 @@
* { font-family: 'Roboto', sans-serif; }

body {
background: #ffffff;
margin: 0;
height: 100%;
color: #384452;
font-size: 16px;
font-weight: 300;
padding-bottom: 100px;
}

h1, h2, h3, h4, h5, h6 {
font-weight: 500;
margin-top: 1.5em;
}

p {
padding: 0;
margin-bottom: 12px;
font-weight: 400;
line-height: 24px;
color: #384452;
margin-top: 10px;
}

.top-buffer { margin-top: 100px; }

.navbar-nav {
float:none;
margin:0 auto;
display: block;
text-align: center;
}

.navbar-nav > li {
display: inline-block;
float:none;
}

.nav-collink {
color: #822361;
}

blockquote {
border-left: .25em solid #dfe2e5;
color: #808080;
padding: 0 1em;
}

blockquote p {
color: #808080;
}

.teaser-container {
display: flex;
width: 100%;
flex-flow: row wrap;
background-color: #702552;
color: #FFFFFF;
align-items: baseline;
justify-content: space-around;
text-align: center;
padding-bottom: 2rem;
}

.teaser-child {
flex-basis: 30%;
}

.teaser-child p {
color: #FFFFFF !important;
}

.teaser-child a {
color: #FFFFFF !important;
text-decoration: none;
}
.teaser-title {
flex-basis: 100%;
}

@media (max-width: 64rem) {
.teaser-child {
flex-basis: 48%;
}
}

@media (max-width: 48rem) {
.teaser-child {
flex-basis: 90%;
}
}
Binary file added static/img/favicon.ico
Binary file not shown.
7 changes: 5 additions & 2 deletions templates/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,12 @@

<body>

<div class="container">

<div class="row top-buffer">
{% block content %}
{% endblock content %}
<div class="col">
{{ section.content | safe }}
</div>
</div>

<footer>
Expand Down

0 comments on commit dd8149a

Please sign in to comment.