PHP鼠标滑过变色命令,WordPress鼠标悬停变色的修改方法

原创内容,转载请注明出处:https://www.myzhenai.com.cn/post/3253.html

关键词:wordpress 鼠标 悬停 变色

我总是觉得我两个WordPress博客的主题里使用的鼠标悬停变色的颜色不太喜欢,就是当鼠标划过或停留在某一个链接上的时候,该链接会改变颜色,只不过那种颜色不是我喜欢的,我就想改变更换其他颜色。

方法也很简单,修改当前主题下的style.css文件就可以了。使用关键词是 hover

一、获取颜色代码

可以使用photoshop或gimp等图像处理软件里的颜色吸管或颜色面板来获得某个颜色的html编码,例如我使用的是 #2cc1a4

二、修改style.css文件

查找hover关键词,替换该项的color值即可。

例如我的两个博客的修改内容,在这里做个记录,免得以后升级的时候又要重新折腾。

b82d3b213f8f5f962ddc7a43d1cd8558.png

mybabya.com 替换 #ff4b33

small {

font-size: smaller;

}

input[type="text"],

input[type="password"],

input[type="email"],

input[type="url"],

input[type="number"],

textarea {

background: #f9f9f9;

border: 1px solid #ccc;

box-shadow: inset 1px 1px 1px rgba(0,0,0,0.1);

-moz-box-shadow: inset 1px 1px 1px rgba(0,0,0,0.1);

-webkit-box-shadow: inset 1px 1px 1px rgba(0,0,0,0.1);

padding: 2px;

}

a:link {

color: #0066cc;

}

a:visited {

color: #2cc1a4;

}

a:active,

a:hover {

color: #2cc1a4;

}

.page-title a:active,

.page-title a:hover {

color: #2cc1a4;

}

.entry-title a:active,

.entry-title a:hover {

color: #2cc1a4;

}

.page-link a:active,

.page-link a:hover {

color: #2cc1a4;

}

.entry-meta a:hover,

.entry-utility a:hover {

color: #2cc1a4;

}

.navigation a:active,

.navigation a:hover {

color: #2cc1a4;

}

.comment-meta a:active,

.comment-meta a:hover {

color: #2cc1a4;

}

.reply a:hover,

a.comment-edit-link:hover {

color: #2cc1a4;

}

#respond .required {

color: #2cc1a4;

font-weight: bold;

}

a:link {

color: #0066cc;

}

a:visited {

color: #2cc1a4;

}

a:active,

a:hover {

color: #2cc1a4;

}

a:link {

color: #0066cc;

}

a:visited {

color: #2cc1a4;

}

a:active,

a:hover {

color: #2cc1a4;

3ba0716c13a500ebcbaf71be65c82a99.png

myzhenai.com.cn

.search-form input {

width: 100%;

border: 1px solid #423c37;

border-radius: 15px;

padding: 5px 15px;

font-family: "Titillium Web", sans-serif;

font-size: 0.75em;

text-transform: uppercase;

color: #2cc1a4;

background: #ffffff;

box-shadow: inset 0px 1px 3px rgba(0,0,0,0.4);

}

.search-form .search-icon i {

font-size: 14px;

color: #2cc1a4;

-webkit-transition: all 0.250s ease-in-out;

-moz-transition: all 0.250s ease-in-out;

-o-transition: all 0.250s ease-in-out;

transition: all 0.250s ease-in-out;

}

#slider .slide .slide-description .inner-sd {

border: 1px solid #2cc1a4;

border-radius: 5px;

height: 100%;

padding: 20px 30px;

}

/* Slider Meta */

#slider .sd-meta {

border: 1px solid #2cc1a4;

border-radius: 3px;

padding: 10px;

margin-top: 15px;

}

#slider .sd-meta .read-more:hover {

color: #2cc1a4;

}

.featured-carousel .slide .article-content header a:hover {

color: #2cc1a4;

}

.article-container article header .title:hover {

color: #2cc1a4;

}

.article-container article header .meta .categ a:hover {

color: #2cc1a4;

}

#latest-reviews-block .lrb-navigation .article-link {

border-bottom: 1px dotted #2cc1a4;

}

#latest-reviews-block .article-link.active, #latest-reviews-block .article-link:hover {

background: #2cc1a4;

cursor: pointer;

}

#latest-reviews-block .article-link.active .article-title a, #latest-reviews-block .article-link:hover .article-title a {

color: #2cc1a4;

}

#latest-reviews-block .article-link .article-title {

margin: 0;

padding: 0;

font-family: "Arvo", sans-serif;

color: #2cc1a4;

font-size: 1.250em;

font-weight: normal;

line-height: 1;

}

#latest-reviews-block .article-link .article-title a {

color: #2cc1a4;

-webkit-transition: all 0.250s ease-in-out;

-moz-transition: all 0.250s ease-in-out;

-o-transition: all 0.250s ease-in-out;

transition: all 0.250s ease-in-out;

}

#latest-reviews-block .article-link .article-meta .categ a {

font-family: "Titillium Web", sans-serif;

text-transform: uppercase;

display: block;

font-size: 0.750em;

color: #2cc1a4;

font-weight: 600;

margin-top: 5px;

margin-bottom: -6px;

}

#latest-reviews-block .article-link .article-meta .date {

color: #2cc1a4;

font-size: 0.750em;

font-family: "Titillium Web", sans-serif;

text-transform: uppercase;

line-height: 1;

}

#latest-reviews-block .lrb-navigation .nav-top:hover, #latest-reviews-block .lrb-navigation .nav-bottom:hover {

cursor: pointer;

color: #2cc1a4;

}

#latest-reviews-block .article-display .article-title a:hover {

color: #2cc1a4;

}

#latest-reviews-block .article-display .a-details .category a:hover {

color: #2cc1a4;

}

#highlight-day .title a:hover {

color: #2cc1a4;

}

#highlight-day .meta .categ a:hover {

color: #2cc1a4;

}

nav.navigation .page-numbers {

display: inline-block;

text-align: center;

border-radius: 3px;

font-family: "Arvo", sans-serif;

margin-right: 5px;

background: #2cc1a4;

color: #fff;

line-height: 2;

-webkit-transition: all 0.250s ease-in-out;

-moz-transition: all 0.250s ease-in-out;

-o-transition: all 0.250s ease-in-out;

transition: all 0.250s ease-in-out;

padding: 0em 0.7em;

}

nav.navigation .page-numbers:not(.current):hover{

background: #2cc1a4;

}

.widget ul li a:hover {

color: #2cc1a4;

}

.widget .tagcloud a:hover {

color: #2cc1a4;

}

.topbooks .title a:hover {

color: #2cc1a4;

}

.topbooks .meta .categ a:hover {

color: #2cc1a4;

;

}

.latest-comments .widget h4 a:hover {

color: #2cc1a4;

;

}

#main-footer .widget .comment a:hover, #main-footer .widget .article a {

color: #2cc1a4;

}

#main-footer .widget ul .recentcomments a:hover {

color: #2cc1a4;

}

.widget.latest-articles .article a:hover {

color: #2cc1a4 !important;

}

.article-container.post > header .article-details .categ a:hover {

color: #2cc1a4;

}

.article-container.post #wrap-up .review-header .categories a:hover {

color: #2cc1a4;

}

#author-box .author-details h3 a:hover {

color: #2cc1a4;

}

#comments-section #comments-container .comment .author-name a:hover {

color: #2cc1a4;

}

#inner-header .logo a{

color: #18bfef;

}

#inner-header .logo a:hover{

color: #2cc1a4;

}

#slider .slide .slide-description .sd-title a {

font-family: "Arvo", sans-serif;

color: #18bfef;

font-size: 1.3em;

font-weight: normal;

-webkit-transition: all 0.250s ease-in-out;

-moz-transition: all 0.250s ease-in-out;

-o-transition: all 0.250s ease-in-out;

transition: all 0.250s ease-in-out;

}

#slider .sd-meta .read-more {

float: right;

padding: 0;

font-family: "Titillium Web", sans-serif;

text-transform: uppercase;

font-weight: bold;

font-size: 1em;

color: #18bfef;

line-height: 1.5;

-webkit-transition: all 0.250s ease-in-out;

-moz-transition: all 0.250s ease-in-out;

-o-transition: all 0.250s ease-in-out;

transition: all 0.250s ease-in-out;

}

#slider .sd-meta .read-more:hover {

color: #2cc1a4;

}

#slider .sd-meta span a, #slider .sd-meta span {

color: #18bfef;

font-family: "Titillium Web", sans-serif;

-webkit-transition: all 0.250s ease-in-out;

-moz-transition: all 0.250s ease-in-out;

-o-transition: all 0.250s ease-in-out;

transition: all 0.250s ease-in-out;

}

#slider .sd-meta span a:hover {

color: #2cc1a4;

}

.article-container article header .title {

color: #18bfef;

font-family: "Arvo", sans-serif;

font-weight: normal;

font-size: 1.438em;

-webkit-transition: all 0.250s ease-in-out;

-moz-transition: all 0.250s ease-in-out;

-o-transition: all 0.250s ease-in-out;

transition: all 0.250s ease-in-out;

}

.article-container article .feat-img {

width: 150px;

height: 150px;

overflow: hidden;

border-radius: 50%;

position: relative;

float: left;

margin-right: 20px;

background-color: #ddd;

}

/* Featured Carousel - Content */

.featured-carousel .slide .feat-img {

float: left;

width: 150px;

height: 150px;

border-radius: 50%;

overflow: hidden;

margin-right: 2.5%;

position: relative;

}

.featured-carousel .slide .feat-img img {

width: 100%;

height: 100%;

}

sicnature ---------------------------------------------------------------------

Your current IP address is: 112.194.65.118

Your IP address location: 四川省南充市联通

Your IP address country and region: 中国

3211c715c0bf352c3fa72980bf0cc419.png

Your current browser is:

b2cb575f9cbd2e36961b3bf406c3355c.png

Your current system is:

mac.png

Original content, please indicate the source:

同福客栈论坛 | 蟒蛇科普 | 海南乡情论坛 | JiaYu Blog

sicnature ---------------------------------------------------------------------

Welcome to reprint. Please indicate the source https://www.myzhenai.com/post/3253.html

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/411485.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

圆面积异常

package zengliang;import java.util.*;public class Suv {public static void main(String[] args) {// TODO 自动生成的方法存根try{double r,s;final double PI 3.14;Scanner scnew Scanner(System.in);System.out.println("输入圆的半径:");r sc.ne…

SpringBoot学习笔记(9)----SpringBoot中使用关系型数据库以及事务处理

在实际的运用开发中,跟数据库之间的交互是必不可少的,SpringBoot也提供了两种跟数据库交互的方式。 1. 使用JdbcTemplate 在SpringBoot中提供了JdbcTemplate模板类,JdbcTemplate提供的方法进行增删改查的操作。 首先需要在pom文件中添加依赖:…

Processes

转载于:https://www.cnblogs.com/EMH899/p/10844709.html

[html] 说说video标签中预加载视频用到的属性是什么?

[html] 说说video标签中预加载视频用到的属性是什么? 个人简介 我是歌谣,欢迎和大家一起交流前后端知识。放弃很容易, 但坚持一定很酷。欢迎大家一起讨论 主目录 与歌谣一起通关前端面试题

CodeSmith 5.0工具实例篇系列4——根据表生成修改的存储过程,针对MS Sqlserver

运行该模板时,只需要选择单个表即可。 申明:该系列案例已通过CodeSmith Professional 5.0.1 Revision 4983版本的测试,以及生成的存储过程是针对MS Sqlserver。 操作说明 :运行CodeSmith Studio工具 ,创建Blank Templa…

差分放大电路单端输出和双端输出区别以及应用(转载)

来自:http://www.elecfans.com/news/dianzi/20171118581901_a.html 什么是差分放大电路 差分放大电路利用电路参数的对称性和负反馈作用,有效地稳定静态工作点,以放大差模信号抑制共模信号为显著特征,广泛应用于直接耦合电路和测量…

Flash 缓存问题的解决(转)

Flash 缓存问题的解决 作者:wangwaizi 时间: 2003-12-27 文档类型:翻译 来自:蓝色理想 原文是Flash支持中心的两篇文章.解决Flash缓存问题 | 解决载入变量缓存问题 使用以下的方法,使SWF文件强制不从浏览器读本地…

matlab可以使用词云分析吗,利用豆瓣短评数据生成词云

在之前的文章中,我们获得了豆瓣爬取的短评内容,汇总到了一个文件中,但是,没有被利用起来的数据是没有意义的。前文提到,有一篇微信推文的关于词云制作的一个实践记录,准备照此试验一下。思路分析读文件利用…

第一阶段冲刺08

1、整个项目的预期任务量(任务量所有工作的预期时间)和目前已经花的时间(所有记录的‘已经花费的时间’),还剩余的时间(所有工作的‘剩余时间’)。第一阶段工作预期任务:完成整个App…

matlab中腐蚀图像的编写,Matlab实现二值图像的腐蚀算法源代码

标签:1、二值图像的腐蚀原理:我们知道,二值图像就是0和1组成的矩阵,0为黑1为白,腐蚀作用在1上面也就是图像高光白色部分,然后白色部分往外收缩。腐蚀就是类似于黑色军队反攻白色军队,最终把自己…

第五次实训作业继承

1、实现如下类之间的继承关系,并编写Music类来测试这些类。 2、编写一个Java应用程序,该程序包括3个类:Monkey类、People类和主类E。要求: (1) Monkey类中有个构造方法:Monkey (String s),并且有个public v…

Chrome 过滤广告插件暂替办法

由于Chrome暂无广告过滤插件,我们只能通过其他方法是实现Google Chrome的广告过滤。 这里我们需要用到Privoxy这款软件!由于Privoxy是通过本地代理来实现广告过滤的,所以用chrome也通过Privoxy实现广告过滤。 Privoxy是款免费软件&#xff0c…

JavaScript调用WebServices

经过几天研究,终于可以再单个js文件(纯JavaScript,不涉及AJax控件)调用WebServices了。现将调用方法及注意事项分享给大家 1、WebServices文件源码WebService.asmx usingSystem;usingSystem.Collections;usingSystem.Linq;usingSystem.Web;usingSystem.W…

oracle11g和12c安装区别,Oracle下载与Oracle安装图解(Oracle19c,Oracle18c,Oracle12c,Oracle11g)...

oracle下载与oracle安装图解(oracle19c,oracle18c,oracle12c,oracle11g)1、oracle下载(oracle11g)oracle下载方法,请根据以下步骤与图示来下载oracle11g版本:oracle11g下载第1步:打开oracle官方网站oracle11g下载第2步:打开菜单-支…

nodejs+supertest+mocha 接口测试环境搭建

系统接口自动化测试 该框架用于对系统的接口自动化测试(nodejssupertestmocha)Homebrew 安装: ruby -e "$(curl -fsSL {}https://raw.githubusercontent.com/Homebrew/install/master/install)" 安装nodejs:brew instal…

初探postman

第一种:安装postman 扩展程序 第二种:本地 安装postman 登陆进来postman的界面 发送第一个postman请求 将请求保存到集合 未完,待续... 转载于:https://www.cnblogs.com/smart-girl/p/10865386.html

oracle dw报告,讲解Oracle数据库的全文索引设置步骤

在执行一个SQL之前,首先要分析一下语句的执行计划,然后再按执行计划去执行。分析语句的执行计划的工作是由优化器(Optimizer)来完成的。不同的情况,一条SQL可能有多种执行计划,但在某一时点,一定只有一种执行计划是最优的,花费时间是最少的。相信你一定会用Pl/sql Developer、T…

C# 控制台 模拟时间一秒一秒走动,直到按Esc键,时间静止,退出!

Codeusing System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading; //延迟函数必备namespace ConsoleApplication2 { class Program { static void Main(string[] args) { DateTime dt n…

[html] 页面上如何显示特殊字符?

[html] 页面上如何显示特殊字符? 个人简介 我是歌谣,欢迎和大家一起交流前后端知识。放弃很容易, 但坚持一定很酷。欢迎大家一起讨论 主目录 与歌谣一起通关前端面试题

Python——Django框架——django-simple-captcha(验证码)

一、引用 包 pip install django-simple-captcha 二、将captcha加入setting的 INSTALLED_APPS 三、运行python manager.py migrations 和 python manage.py migrate 四、加入路径 path(captcha/,include(captcha.urls)) 五、引入Form表单 from captcha.fields import CaptchaFi…