Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/eddiewebb/hugo-resume.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/static
diff options
context:
space:
mode:
authorEddie Webbinaro <ollitech@gmail.com>2021-07-30 19:34:40 +0300
committerGitHub <noreply@github.com>2021-07-30 19:34:40 +0300
commit62a65018fe0bdd8da1b2277ecf7620dbf65f49ba (patch)
tree76dd4080587dc683b08e6d0374f26b288efa3dfa /static
parentcd8970ab61c579215f78f50319aea8493627db94 (diff)
Adds secondary Blog and Certifications
* Blog pages can now declare a teaser image resrouce * added ADV riding support for eddie * allow teaser or map image * fix archetype * separate adv from blog as types * fix adv preview responsive layout * optional elements * adv teaser are links also * show map hovering anywhere over summary * add certifications
Diffstat (limited to 'static')
-rw-r--r--static/css/resume.css4
-rw-r--r--static/css/tweaks.css25
2 files changed, 24 insertions, 5 deletions
diff --git a/static/css/resume.css b/static/css/resume.css
index f37e8ba..0ed743e 100644
--- a/static/css/resume.css
+++ b/static/css/resume.css
@@ -149,7 +149,3 @@ a {
a:hover, a:focus, a:active {
color: #824027;
}
-
-img {
- max-width:80%;
-}
diff --git a/static/css/tweaks.css b/static/css/tweaks.css
index 692566a..46b1857 100644
--- a/static/css/tweaks.css
+++ b/static/css/tweaks.css
@@ -104,4 +104,27 @@ div.skills-heading{
/* Fix responsive width for blog posts */
.my-auto {
width: 100%
-} \ No newline at end of file
+}
+
+ .advteaser-container{
+
+ }
+
+ .advteaser {
+ width: 250px;
+ height: 250px;
+ position: relative;
+ display: inline-block;
+ }
+ .advteaser img {
+ position: absolute;
+ top: 0;
+ left: 0;
+ }
+ .advteaser .img-top {
+ display: none;
+ z-index: 99;
+ }
+ .advteaser-container:hover .img-top {
+ display: inline;
+ } \ No newline at end of file