This commit is contained in:
Andros Fenollosa 2024-03-13 17:32:16 +01:00
parent 41fed983e6
commit e11a032cc3
2 changed files with 11 additions and 1 deletions

View File

@ -313,6 +313,9 @@ a:hover,
font-weight: bold;
/* Animate Background Image */
-webkit-text-fill-color: transparent;
text-fill-color: transparent;
-webkit-text-stroke: 1px;
text-stroke: 1px;
animation: aniTitle 10s linear infinite;
/* Activate hardware acceleration for smoother animations */
transform: translate3d(0, 0, 0);
@ -320,6 +323,13 @@ a:hover,
z-index: -1;
}
@media (width < 600px) {
.hero__title {
text-align: center;
}
}
/* Docs */
.docs {
display: grid;

View File

@ -22,7 +22,7 @@ Django LiveView is a framework for creating Realtime SPAs using HTML over the Wi
It allows you to create interactive web applications using only HTML, CSS and Python. JavaScript ONLY is used to capture events, send and receive strings over a WebSockets channel.
Let's illustrate with an example. I want to render article number 2.
Let's illustrate with an example. I want to print article number 2.
1- A WebSockets connection, a channel, is established between the client and the server.