diff --git a/assets/css/main.css b/assets/css/main.css index 672af17..b5a0cb2 100644 --- a/assets/css/main.css +++ b/assets/css/main.css @@ -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; diff --git a/one.org b/one.org index e2f914f..396a03c 100644 --- a/one.org +++ b/one.org @@ -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.