- Timestamp:
- 01/23/2024 05:39:38 PM (22 months ago)
- Location:
- blogmate/1.0.4
- Files:
-
- 5 edited
- 1 copied
-
. (copied) (copied from blogmate/1.0.3)
-
changelog.txt (modified) (1 diff)
-
footer.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
-
screenshot.png (modified) (previous)
-
style.css (modified) (6 diffs)
Legend:
- Unmodified
- Added
- Removed
-
blogmate/1.0.4/changelog.txt
r213516 r215004 1 = 1.0.4 = 2 * Dark mode styling issue fixed. 3 1 4 = 1.0.3 = 2 5 * Added enable/disable background animation option. -
blogmate/1.0.4/footer.php
r213516 r215004 36 36 37 37 <div class="bloglo-waves-wrapper"> 38 <div class="square"></div> 39 <div class="square"></div> 40 <div class="square"></div> 41 <div class="square"></div> 42 <div class="square"></div> 43 <div class="square"></div> 44 <div class="square"></div> 45 <div class="square"></div> 46 <div class="square"></div> 47 <div class="square"></div> 38 <div class="squares"> 39 <div class="square"></div> 40 <div class="square"></div> 41 <div class="square"></div> 42 <div class="square"></div> 43 <div class="square"></div> 44 <div class="square"></div> 45 <div class="square"></div> 46 <div class="square"></div> 47 <div class="square"></div> 48 <div class="square"></div> 49 </div> 50 <div class="triangles"> 51 <div class="triangle"></div> 52 <div class="triangle"></div> 53 <div class="triangle"></div> 54 <div class="triangle"></div> 55 <div class="triangle"></div> 56 </div> 57 <div class="circles"> 58 <div class="circle"></div> 59 <div class="circle"></div> 60 <div class="circle"></div> 61 <div class="circle"></div> 62 <div class="circle"></div> 63 </div> 48 64 </div> 49 65 -
blogmate/1.0.4/readme.txt
r213516 r215004 7 7 License: GPLv2 or later 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html 9 Stable tag: 1.0. 39 Stable tag: 1.0.4 10 10 11 11 A lightweight and highly customizable multi-purpose blog theme that makes it easy for anyone to create their perfect website. … … 29 29 30 30 == Changelog == 31 32 = 1.0.4 = 33 * Dark mode styling issue fixed. 31 34 32 35 = 1.0.3 = -
blogmate/1.0.4/style.css
r213516 r215004 7 7 Author URI: https://peregrine-themes.com/ 8 8 Theme URI: https://peregrine-themes.com/blogmate/ 9 Version: 1.0. 39 Version: 1.0.4 10 10 Requires at least: 5.0 11 11 Tested up to: 6.4 … … 103 103 body.bloglo-menu-animation-squarebox:not(.bloglo-is-mobile) #bloglo-header-inner .bloglo-nav>ul>li>a:hover, 104 104 body.bloglo-menu-animation-squarebox:not(.bloglo-is-mobile).using-keyboard #bloglo-header-inner .bloglo-nav>ul>li>a:focus { 105 color: #fff !important; 105 106 box-shadow: 0 10px 18px 0 var(--bloglo-primary_27); 106 107 } … … 169 170 line-height: 1.2; 170 171 display: inline-block; 171 padding: 7px 25px 7px;172 padding: 8px 25px 7px; 172 173 background-color: #fff; 173 174 border-radius: 10rem; … … 182 183 html[data-theme="dark"] .is-section-heading-init-s2:not(.bloglo-sidebar-style-1) #secondary .bloglo-widget .wp-block-search .wp-block-search__label, 183 184 html[data-theme="dark"] .is-section-heading-init-s2:not(.bloglo-sidebar-style-1) #secondary .bloglo-widget .wp-block-heading { 184 background-color: rgba(0, 0, 0, 0.3); 185 background-color: rgba(0, 0, 0, 0.75); 186 border: 0.1rem solid rgba(190, 190, 190, 0.3); 185 187 } 186 188 … … 229 231 } 230 232 233 .bloglo-waves-wrapper .circle, 234 .bloglo-waves-wrapper .triangle, 231 235 .bloglo-waves-wrapper .square { 232 236 position: absolute; … … 319 323 } 320 324 325 .bloglo-waves-wrapper .triangle { 326 clip-path: polygon(50% 0%, 0% 100%, 100% 100%); 327 } 328 329 .bloglo-waves-wrapper .triangle:nth-child(1) { 330 width: 20px; 331 height: 22px; 332 left: 50%; 333 animation-delay: 0s; 334 } 335 336 .bloglo-waves-wrapper .triangle:nth-child(2) { 337 width: 30px; 338 height: 28px; 339 left: 25%; 340 animation-delay: 12s; 341 } 342 343 .bloglo-waves-wrapper .triangle:nth-child(3) { 344 width: 30px; 345 height: 28px; 346 left: 80%; 347 animation-delay: 4s; 348 } 349 350 .bloglo-waves-wrapper .triangle:nth-child(4) { 351 width: 40px; 352 height: 38px; 353 left: 30%; 354 animation-delay: 18s; 355 } 356 357 .bloglo-waves-wrapper .triangle:nth-child(5) { 358 width: 50px; 359 height: 40px; 360 left: 70%; 361 animation-delay: 1s; 362 } 363 364 .bloglo-waves-wrapper .circle { 365 border-radius: 100%; 366 } 367 368 .bloglo-waves-wrapper .circle:nth-child(1) { 369 width: 22px; 370 height: 20px; 371 left: 10%; 372 animation-delay: 0s; 373 } 374 375 .bloglo-waves-wrapper .circle:nth-child(2) { 376 width: 84px; 377 height: 80px; 378 left: 45%; 379 animation-delay: 12s; 380 } 381 382 .bloglo-waves-wrapper .circle:nth-child(3) { 383 width: 53px; 384 height: 50px; 385 left: 90%; 386 animation-delay: 4s; 387 } 388 389 .bloglo-waves-wrapper .circle:nth-child(4) { 390 width: 53px; 391 height: 50px; 392 left: 60%; 393 animation-delay: 18s; 394 } 395 396 .bloglo-waves-wrapper .circle:nth-child(5) { 397 width: 43px; 398 height: 40px; 399 left: 90%; 400 animation-delay: 1s; 401 } 402 403 321 404 @keyframes rise { 322 405 0% {
Note: See TracChangeset
for help on using the changeset viewer.