Make links green (make it consistent with forum and blog)
This commit is contained in:
parent
6da5db7a37
commit
b328da2adb
4 changed files with 39 additions and 13 deletions
|
@ -13,6 +13,15 @@ body {
|
|||
color: #000000;
|
||||
}
|
||||
|
||||
a {
|
||||
color: #007000;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
a:hover {
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
.translated-rtl {
|
||||
direction: rtl;
|
||||
}
|
||||
|
@ -166,11 +175,7 @@ pre {
|
|||
}
|
||||
|
||||
a {
|
||||
color: #ffffff;
|
||||
}
|
||||
|
||||
a:hover {
|
||||
color: #00ff00;
|
||||
color: #00b000;
|
||||
}
|
||||
|
||||
.sidenav {
|
||||
|
|
|
@ -24,6 +24,7 @@
|
|||
|
||||
.error404 p a {
|
||||
color: #ffffff;
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
.error404 p a:hover {
|
||||
|
|
|
@ -328,6 +328,7 @@ tr.comparison-table-mobile-feature td {
|
|||
|
||||
.command-tab:hover {
|
||||
background-color: #007000;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.command-tab.command-tab-selected:hover {
|
||||
|
@ -373,7 +374,6 @@ tr.comparison-table-mobile-feature td {
|
|||
display: inline;
|
||||
float: right;
|
||||
padding: 0.25em 0.4em;
|
||||
text-decoration: underline;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
|
@ -421,6 +421,17 @@ tr.comparison-table-mobile-feature td {
|
|||
box-shadow: 0 3px 6px 0 rgba(127, 127, 127, 0.2);
|
||||
}
|
||||
|
||||
.hero .otherdls a,
|
||||
.hero .hero-description a {
|
||||
color: #ffffff;
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
.hero .otherdls a:hover,
|
||||
.hero .hero-description a:hover {
|
||||
color: #00ff00;
|
||||
}
|
||||
|
||||
.hero-content-column {
|
||||
background-color: #006f00;
|
||||
}
|
||||
|
@ -555,13 +566,14 @@ tr.comparison-table-mobile-feature td {
|
|||
.hero .otherdls a,
|
||||
.hero .hero-description a {
|
||||
color: #ffffff;
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
.hero .otherdls a:hover,
|
||||
.hero .hero-description a {
|
||||
.hero .hero-description a:hover {
|
||||
color: #00ff00;
|
||||
}
|
||||
|
||||
|
||||
.hero .styled-button {
|
||||
background-color: #00b000;
|
||||
-webkit-box-shadow: 0 4px 8px 0 rgba(127, 127, 127, 0.25);
|
||||
|
|
|
@ -17,6 +17,15 @@ body {
|
|||
direction: rtl;
|
||||
}
|
||||
|
||||
a {
|
||||
color: #007000;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
a:hover {
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
.header {
|
||||
position: relative;
|
||||
position: -webkit-sticky;
|
||||
|
@ -173,6 +182,7 @@ body {
|
|||
|
||||
.styled-button:hover {
|
||||
background-color: #007000;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.styled-button.styled-button-disabled, .styled-button.styled-button-disabled:hover {
|
||||
|
@ -199,10 +209,12 @@ body {
|
|||
|
||||
.footer a {
|
||||
color: #ffffff;
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
.footer a:hover {
|
||||
color: #00ff00;
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
.footer-contents {
|
||||
|
@ -369,11 +381,7 @@ input[type=submit]:hover {
|
|||
}
|
||||
|
||||
a {
|
||||
color: #ffffff;
|
||||
}
|
||||
|
||||
a:hover {
|
||||
color: #00ff00;
|
||||
color: #00b000;
|
||||
}
|
||||
|
||||
.header {
|
||||
|
|
Reference in a new issue