Work on incomes & expanse
This commit is contained in:
30
resources/js/templates/home.css
Normal file
30
resources/js/templates/home.css
Normal file
@@ -0,0 +1,30 @@
|
||||
header {
|
||||
margin-bottom: 5px;
|
||||
background-color: rgb(0, 0, 0);
|
||||
padding: 10px;
|
||||
border-radius: 0 0 20px 20px;
|
||||
box-shadow: 0 5px 5px gray;
|
||||
}
|
||||
header a {
|
||||
color: white;
|
||||
text-decoration: none;
|
||||
width: 100%;
|
||||
}
|
||||
header a::before {
|
||||
content: "";
|
||||
display: block;
|
||||
width: 100%;
|
||||
height: 1px;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
background-color: #08d375;
|
||||
transform: scaleX(0);
|
||||
transition: transform 0.5s ease;
|
||||
}
|
||||
header a:hover {
|
||||
color: #08d375;
|
||||
transition: all ease 0.5s;
|
||||
}
|
||||
header a:hover::before {
|
||||
transform: scaleX(1);
|
||||
}/*# sourceMappingURL=home.css.map */
|
||||
Reference in New Issue
Block a user