style box caption and title
parent
55c43e6fe4
commit
a41d9cf8ff
|
@ -4,7 +4,7 @@
|
||||||
|
|
||||||
### TL;DR
|
### 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 project’s 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 project’s themes folder. If you need to cheat and see ths guide it's [here](https://dkebler.github.io/landingpage-guide/#tldr)
|
||||||
|
|
||||||
### About
|
### About
|
||||||
|
|
||||||
|
|
|
@ -168,6 +168,18 @@ img.avatar {
|
||||||
align-items: center;
|
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 {
|
.box__embed--disqus {
|
||||||
width: 90vw;
|
width: 90vw;
|
||||||
max-width: 800px;
|
max-width: 800px;
|
||||||
|
@ -198,3 +210,15 @@ img.avatar {
|
||||||
.box--gallery__item li::before {
|
.box--gallery__item li::before {
|
||||||
display: none;
|
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;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in New Issue