Ooof, got the dependencies all up to date as well
Lots of tests needed fixing, but it seemed to be a whitespace parsing
error in the view files 🤔
This commit is contained in:
parent
ec01b3c6a2
commit
b2b6693aec
61 changed files with 2057 additions and 1441 deletions
13
resources/sass/_base.scss
vendored
Normal file
13
resources/sass/_base.scss
vendored
Normal file
|
@ -0,0 +1,13 @@
|
|||
body {
|
||||
font-family: var(--font-stack-body);
|
||||
font-size: 2rem;
|
||||
}
|
||||
|
||||
h1,
|
||||
h2,
|
||||
h3,
|
||||
h4,
|
||||
h5,
|
||||
h6 {
|
||||
font-family: var(--font-stack-headings);
|
||||
}
|
68
resources/sass/_layout-main.scss
vendored
Normal file
68
resources/sass/_layout-main.scss
vendored
Normal file
|
@ -0,0 +1,68 @@
|
|||
body {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
#top-header {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: center;
|
||||
|
||||
h1 {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
nav {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
|
||||
a {
|
||||
margin: 0 0.5rem;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.h-feed {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
margin: auto;
|
||||
|
||||
@media screen and (min-width: 700px) {
|
||||
max-width: 700px;
|
||||
|
||||
> .note,
|
||||
> .h-entry {
|
||||
padding: 0 1rem;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.note {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
|
||||
.note-metadata {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
justify-content: space-between;
|
||||
|
||||
.syndication-links {
|
||||
svg {
|
||||
height: 1em;
|
||||
width: 1em;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.personal-bio {
|
||||
padding: 0 2rem;
|
||||
}
|
||||
|
||||
footer {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
margin-top: 1.5rem;
|
||||
}
|
11
resources/sass/_link-styles.scss
vendored
Normal file
11
resources/sass/_link-styles.scss
vendored
Normal file
|
@ -0,0 +1,11 @@
|
|||
.post-info {
|
||||
a {
|
||||
text-decoration: none;
|
||||
}
|
||||
}
|
||||
|
||||
.syndication-links {
|
||||
.u-syndication {
|
||||
text-decoration: none;
|
||||
}
|
||||
}
|
4
resources/sass/_posse.scss
vendored
Normal file
4
resources/sass/_posse.scss
vendored
Normal file
|
@ -0,0 +1,4 @@
|
|||
.p-bridgy-facebook-content,
|
||||
.p-bridgy-twitter-content {
|
||||
display: none;
|
||||
}
|
4
resources/sass/_variables.scss
vendored
Normal file
4
resources/sass/_variables.scss
vendored
Normal file
|
@ -0,0 +1,4 @@
|
|||
:root {
|
||||
--font-stack-body: montserrat, sans-serif;
|
||||
--font-stack-headings: bebas-neue, sans-serif;
|
||||
}
|
8
resources/sass/app.scss
vendored
8
resources/sass/app.scss
vendored
|
@ -1,3 +1,5 @@
|
|||
body {
|
||||
font-family: "Comic Sans MS", cursive;
|
||||
}
|
||||
@import "variables";
|
||||
@import "base";
|
||||
@import "layout-main";
|
||||
@import "link-styles";
|
||||
@import "posse";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue