Client - underline links
This commit is contained in:
parent
9300e3b2f3
commit
774df3a00d
@ -51,10 +51,6 @@
|
|||||||
color: var(--footer-color);
|
color: var(--footer-color);
|
||||||
font-size: 0.9em;
|
font-size: 0.9em;
|
||||||
|
|
||||||
a {
|
|
||||||
text-decoration: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
.footer-items {
|
.footer-items {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-wrap: wrap;
|
flex-wrap: wrap;
|
||||||
|
@ -200,6 +200,10 @@
|
|||||||
display: flex;
|
display: flex;
|
||||||
padding: 15px 10px;
|
padding: 15px 10px;
|
||||||
|
|
||||||
|
a {
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
|
||||||
.nav-container {
|
.nav-container {
|
||||||
display: flex;
|
display: flex;
|
||||||
|
|
||||||
|
@ -216,6 +216,7 @@
|
|||||||
.workout-user-name {
|
.workout-user-name {
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
padding-left: 5px;
|
padding-left: 5px;
|
||||||
|
text-decoration: none;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
.workout-date {
|
.workout-date {
|
||||||
|
@ -47,7 +47,11 @@ body {
|
|||||||
|
|
||||||
a {
|
a {
|
||||||
color: var(--app-a-color);
|
color: var(--app-a-color);
|
||||||
text-decoration: none;
|
text-decoration-color: var(--app-a-text-decoration-color);
|
||||||
|
|
||||||
|
&:hover {
|
||||||
|
text-decoration-color: var(--app-a-color);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
img {
|
img {
|
||||||
|
@ -6,6 +6,7 @@
|
|||||||
--app-color: var(--light-grey);
|
--app-color: var(--light-grey);
|
||||||
--app-color-light: #6f7070;
|
--app-color-light: #6f7070;
|
||||||
--app-a-color: var(--light-grey);
|
--app-a-color: var(--light-grey);
|
||||||
|
--app-a-text-decoration-color: #494949;
|
||||||
--app-shadow-color: #383d3f;
|
--app-shadow-color: #383d3f;
|
||||||
--app-loading-color: #f3f3f3;
|
--app-loading-color: #f3f3f3;
|
||||||
--app-loading-top-color: var(--app-color);
|
--app-loading-top-color: var(--app-color);
|
||||||
|
@ -3,6 +3,7 @@
|
|||||||
--app-color: #2c3e50;
|
--app-color: #2c3e50;
|
||||||
--app-color-light: #6f7070;
|
--app-color-light: #6f7070;
|
||||||
--app-a-color: #40578a;
|
--app-a-color: #40578a;
|
||||||
|
--app-a-text-decoration-color: #d2d2d2;
|
||||||
--app-shadow-color: lightgrey;
|
--app-shadow-color: lightgrey;
|
||||||
--app-loading-color: #f3f3f3;
|
--app-loading-color: #f3f3f3;
|
||||||
--app-loading-top-color: var(--app-color);
|
--app-loading-top-color: var(--app-color);
|
||||||
|
Loading…
Reference in New Issue
Block a user