style box caption and title

master
David Kebler 2017-04-03 06:59:44 -07:00
parent 55c43e6fe4
commit a41d9cf8ff
2 changed files with 25 additions and 1 deletions

View File

@ -4,7 +4,7 @@
### TL;DR
For those who are Hugo experienced and know what they are doing and are able to “figure out” the details simply clone the [starter repo](https://dkebler.github.io/landingpage-starter). Edit the markdown files in the /sections directory and settings in config.toml. To start from scratch by all means just clone (or submodule) this theme into an existing hugo projects themes folder. If you need to cheat and see ths guide it's [here](https://dkebler.github.io/landingpage-guide/#tldr)
For those who are Hugo experienced and know what they are doing and are able to “figure out” the details simply clone the [guide repo](https://dkebler.github.io/landingpage-guide). Edit the markdown files in the /sections directory and settings in config.toml. To start from scratch by all means just clone (or submodule) this theme into an existing hugo projects themes folder. If you need to cheat and see ths guide it's [here](https://dkebler.github.io/landingpage-guide/#tldr)
### About

View File

@ -168,6 +168,18 @@ img.avatar {
align-items: center;
}
.box__caption {
padding-bottom: .75em;
text-transform: capitalize;
font-style: italic;
}
.box__title {
text-transform: uppercase;
font-weight: bold;
padding-top: 0.75em;
}
.box__embed--disqus {
width: 90vw;
max-width: 800px;
@ -198,3 +210,15 @@ img.avatar {
.box--gallery__item li::before {
display: none;
}
code {
font-size: 0.8em;
background-color: grey;
border-radius: 0.2em;
color: white;
padding-left: 0.2em;
padding-right: 0.2em;
padding-top: 0.05em;
padding-bottom: 0.05em;
}