Skip to content

Commit

Permalink
themefisher#16 Fixing style: il dropdown non è più con il grigio "win…
Browse files Browse the repository at this point in the history
…dows 95"
  • Loading branch information
Marco Visin committed Dec 13, 2020
1 parent 6581cd1 commit 7bd5e96
Showing 1 changed file with 13 additions and 11 deletions.
24 changes: 13 additions & 11 deletions assets/css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@
--color-light-blu: #24dbfb;
--color-select: #1294e5;
--color-hover: #1294e590;
--color-navbar: #707d8f;
--color-navbar: #4c4c4c;
--color-grey: #777;
}

body {
Expand All @@ -16,7 +17,7 @@ body {

p {
font-family: "Titillium Web", sans-serif;
color: #9a9a9a;
color: var(--color-grey);
font-size: 15px;
}

Expand Down Expand Up @@ -388,7 +389,7 @@ a:focus, a:hover {
}

.color-gray {
color: #777;
color: var(--color-navbar);
}

.shadow {
Expand Down Expand Up @@ -1084,7 +1085,6 @@ a:focus, a:hover {
}

.portfolio-filter button {
font-weight: 500;
cursor: pointer;
display: inline-block;
font-size: 14px;
Expand All @@ -1093,7 +1093,7 @@ a:focus, a:hover {
font-weight: 600;
text-transform: uppercase;
border: none;
color: #777;
color: var(--color-grey);
outline: none;
background: none;
}
Expand Down Expand Up @@ -1213,7 +1213,7 @@ a:focus, a:hover {
}

.services .service-block p {
color: #777;
color: var(--color-grey);
}

/*=================================================================
Expand Down Expand Up @@ -1418,7 +1418,7 @@ a:focus, a:hover {
}

.team-member .member-content p {
color: #777;
color: var(--color-grey);
margin-top: 10px;
padding: 0 15px;
}
Expand Down Expand Up @@ -1848,6 +1848,7 @@ a:focus, a:hover {
.dropdown {
position: relative;
display: inline-block;
border-radius: 15px;
}

/* Dropdown Content (Hidden by Default) */
Expand Down Expand Up @@ -1879,16 +1880,17 @@ a:focus, a:hover {
border-top-right-radius: 15px;
}


/* Change color of dropdown links on hover */
.dropdown-content a:hover {
background-color: #ddd;
background-color: var(--color-hover);
}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
display: block;
}

/* Change the background color of the dropdown button when the dropdown content is shown
.dropdown:hover .dropbtn {background-color: #3e8e41;}*/
/* Change the background color of the dropdown button when the dropdown content is shown*/
.dropdown:hover .dropbtn {
color: var(--color-select);
}

0 comments on commit 7bd5e96

Please sign in to comment.