Add hover effect on rooms

This commit is contained in:
Adrien Vannson 2021-10-12 15:17:58 +02:00
parent d70402ec56
commit 9b06a9d1ce
2 changed files with 8 additions and 0 deletions

View File

@ -1,4 +1,5 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?> <?xml version="1.0" encoding="UTF-8" standalone="no"?>
<?xml-stylesheet type="text/css" href="../resources/svg.css" ?>
<svg <svg
xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#" xmlns:cc="http://creativecommons.org/ns#"

Before

Width:  |  Height:  |  Size: 310 KiB

After

Width:  |  Height:  |  Size: 310 KiB

7
resources/svg.css Normal file
View File

@ -0,0 +1,7 @@
.svg-salle {
transition: fill .3s;
}
.svg-salle:hover {
fill: red !important;
}