1
0
mirror of https://github.com/danbee/tube-status-server synced 2025-03-04 08:39:12 +00:00

Add hover/focus styles to refresh button.

This commit is contained in:
Dan Barber 2013-01-28 08:41:34 +00:00
parent c468063f1c
commit 9f1d3d4ba9
2 changed files with 10 additions and 0 deletions

View File

@ -98,6 +98,10 @@ header {
color: white;
font-family: "fontawesome";
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.5); }
header #refresh:focus {
background: rgba(255, 255, 255, 0.2); }
header #refresh:active {
background: rgba(255, 255, 255, 0.3); }
footer {
position: fixed;

View File

@ -57,6 +57,12 @@ header {
color: white;
font-family: "fontawesome";
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.5);
&:focus {
background: rgba(255, 255, 255, 0.2);
}
&:active {
background: rgba(255, 255, 255, 0.3);
}
}
}