Last active
August 8, 2022 04:57
-
-
Save maheshwaghmare/5c25e7eb3b3701383ecba29a2d4a1d2a to your computer and use it in GitHub Desktop.
Astra Portfolio: Styling - Screenshot - http://tinyurl.com/yc9kbzkh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Styling the WP Portfolio grid. | |
* | |
* 1. Filters - Category & Other Category | |
* 2. Single Portfolio Item | |
* 3. Quick View | |
* 4. Portfolio Title | |
*/ | |
/** | |
* 1. Filters - Category & Other Category | |
*/ | |
/** Filter background */ | |
.astra-portfolio-wrap .astra-portfolio-filters { | |
background: #3b3e46; | |
} | |
/** Filter link */ | |
.astra-portfolio-wrap .filter-links li a { | |
color: #fff; | |
} | |
/** Filter active link */ | |
.astra-portfolio-wrap .filter-links li .active { | |
color: #03A9F4; | |
} | |
/** | |
* 2. Single Portfolio Item | |
*/ | |
/** Single Portfolio */ | |
.astra-portfolio-wrap .site-single .inner { | |
border: 5px solid #03A9F4; | |
} | |
/** Hover on Single Portfolio */ | |
.astra-portfolio-wrap .site-single:hover .view-demo-wrap { | |
background: rgba(255, 255, 255, 0.6784313725490196); | |
} | |
/** | |
* 3. Quick View | |
*/ | |
/** Quick view */ | |
.astra-portfolio-wrap .view-demo { | |
background: #33a9f4; | |
color: #fff; | |
border-radius: 20px; | |
} | |
/** Hover on Quick view */ | |
.astra-portfolio-wrap .view-demo:hover { | |
box-shadow: 0 0 3px 3px rgba(0, 0, 0, 0.23); | |
} | |
/** | |
* 4. Portfolio Title | |
*/ | |
.astra-portfolio-wrap .template-meta { | |
background: #33a9f4; | |
color: #fff; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment