some site updates
All checks were successful
ClarkeIS Build / Build-Docker-Image (push) Successful in 42s
All checks were successful
ClarkeIS Build / Build-Docker-Image (push) Successful in 42s
This commit is contained in:
23
output/main.css
Executable file
23
output/main.css
Executable file
@@ -0,0 +1,23 @@
|
||||
body {
|
||||
margin: 0px;
|
||||
padding: 0px;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
#header {
|
||||
position: sticky;
|
||||
top: 0px;
|
||||
padding: 10px;
|
||||
background-color: white;
|
||||
box-shadow: 0px 0px 5px 5px black;
|
||||
transition: transform 0.5s;
|
||||
}
|
||||
|
||||
#footer {
|
||||
margin-top: auto;
|
||||
}
|
||||
|
||||
#header.hide {
|
||||
transform: translateY(-100%);
|
||||
}
|
||||
Reference in New Issue
Block a user