mirror of
https://github.com/ilyakooo0/urbit.git
synced 2024-12-02 15:13:25 +03:00
208d8cebf9
Splits herm and the webterm interface out into their own directories for separate distribution. Webterm glob pending.
24 lines
348 B
CSS
24 lines
348 B
CSS
body, #root {
|
|
height: 100vh;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
input#term {
|
|
background-color: inherit;
|
|
color: inherit;
|
|
border: none;
|
|
}
|
|
|
|
.blink {
|
|
animation: 4s ease-in-out infinite opacity_blink;
|
|
}
|
|
|
|
@keyframes opacity_blink {
|
|
0% { opacity: 0; }
|
|
10% { opacity: 1; }
|
|
80% { opacity: 1; }
|
|
90% { opacity: 0; }
|
|
100% { opacity: 0; }
|
|
}
|