This commit is contained in:
AlxMedia 2021-08-22 22:30:44 +02:00
parent fb4b65f7df
commit dd84e6f158
2 changed files with 6 additions and 2 deletions

View file

@ -87,6 +87,9 @@ Sidebar images
== Changelog ==
= 1.0.4 - 2021-08-22 =
* Minor styling improvements to sidebar profile
= 1.0.3 - 2021-08-22 =
* Added profile block to top of sidebar

View file

@ -1,7 +1,7 @@
/*
Theme Name: Incolor
Theme URI: http://alx.media/themes/incolor/
Version: 1.0.3
Version: 1.0.4
Requires at least: 5.0
Requires PHP: 5.6
Tested up to: 5.8
@ -522,7 +522,8 @@ box-shadow: 0 0 2px rgba(255,255,255,0.4);
.search-trap-focus { float: right; }
}
#profile { background: #009ae4; position: relative; margin-bottom: 30px; text-align: center; }
#profile { background: #009ae4; position: relative; margin-bottom: 30px; text-align: center; transition: all 0.2s ease; }
#profile:hover { opacity: 0.9; }
#profile:after { content: ""; display: block; position: absolute; top: 0; bottom: 0; left: 0; right: 0; border: 1px solid hsla(0,0%,100%,.3); transition: color .2s,background-color .2s,border-color .2s; pointer-events: none; z-index: 1; }
#profile a { color: #fff; }
#profile a:hover { color: rgba(255,255,255,0.75); }