forked from CyC2018/CyC2018.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
34 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
a.btn.btn-md.btn-white-outline.display-4 { | ||
display: none !important; | ||
} | ||
|
||
img[src="assets/images/logomakr-0zpezn-563x600.png"] { | ||
width: 300px; | ||
} | ||
|
||
/* DEMO-SPECIFIC STYLES */ | ||
p.mbr-text.align-center.display-5.pb-3.mbr-fonts-style { | ||
color: #fff; | ||
font-family: monospace; | ||
overflow: hidden; /* Ensures the content is not revealed until the animation */ | ||
border-right: .15em solid orange; /* The typwriter cursor */ | ||
white-space: nowrap; /* Keeps the content on a single line */ | ||
margin: 0 auto; /* Gives that scrolling effect as the typing happens */ | ||
letter-spacing: .15em; /* Adjust as needed */ | ||
animation: | ||
typing 3.5s steps(30, end), | ||
blink-caret .5s step-end infinite; | ||
} | ||
|
||
/* The typing effect */ | ||
@keyframes typing { | ||
from { width: 0 } | ||
to { width: 100% } | ||
} | ||
|
||
/* The typewriter cursor effect */ | ||
@keyframes blink-caret { | ||
from, to { border-color: transparent } | ||
50% { border-color: orange } | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters