Initial commit
This commit is contained in:
27
html/styles/introduction.css
Normal file
27
html/styles/introduction.css
Normal file
@@ -0,0 +1,27 @@
|
||||
#introduction .content {
|
||||
flex: 5;
|
||||
width: 25%;
|
||||
}
|
||||
|
||||
#introduction footer {
|
||||
flex : 1;
|
||||
transition: transform 0.5s ease-in-out;
|
||||
}
|
||||
|
||||
footer:hover{
|
||||
transform: translateY(-20px);
|
||||
}
|
||||
|
||||
hr {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.typer::after {
|
||||
content: '|';
|
||||
animation: blink 800ms infinite;
|
||||
}
|
||||
|
||||
@keyframes blink {
|
||||
from { opacity: 0; }
|
||||
to { opacity: 1; }
|
||||
}
|
||||
Reference in New Issue
Block a user