mirror of
https://github.com/pyscript/pyscript.git
synced 2026-02-13 07:01:00 -05:00
* Move tests, create makefile action to run tests on examples * Correct import file for html files * Build environment for tests * Fix the CI * rearrange CI * fix find cmd and make sure we don't delete the folder implicitly * more rearranging * fix folder permissions and custom sed for subfolders * add toga wheels files * re-add missing file * mirror latest changes in alpha ci * fix find cmd * try different fix for find * remove redundant build Co-authored-by: mariana <marianameireles@protonmail.com> Co-authored-by: pww217 <pwilson@anaconda.com> Co-authored-by: Fabio Pliger <fabio.pliger@gmail.com>
54 lines
954 B
CSS
54 lines
954 B
CSS
body {
|
|
margin: 0;
|
|
text-align: center;
|
|
background-color: black;
|
|
cursor: crosshair;
|
|
}
|
|
canvas {
|
|
display: block;
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
.header {
|
|
/*top:45%;*/
|
|
top: 45%;
|
|
color: #DDDDDD;
|
|
}
|
|
.footer {
|
|
bottom:3%;
|
|
}
|
|
.description {
|
|
color: gray;
|
|
padding-top: 50px;
|
|
}
|
|
.btn {
|
|
border-radius: 30px;
|
|
padding: 10px 30px;
|
|
}
|
|
a, a:hover, a:visited {
|
|
color: red;
|
|
text-decoration: none;
|
|
}
|
|
.disable-selection {
|
|
-moz-user-select: none; /* Firefox */
|
|
-ms-user-select: none; /* Internet Explorer */
|
|
-khtml-user-select: none; /* KHTML browsers (e.g. Konqueror) */
|
|
-webkit-user-select: none; /* Chrome, Safari, and Opera */
|
|
-webkit-touch-callout: none; /* Disable Android and iOS callouts*/
|
|
}
|
|
h1::after {
|
|
content: ' V 2.0';
|
|
font-size: 12px;
|
|
position:absolute;
|
|
top: 3px;
|
|
padding-left: 5px;
|
|
font-weight: 400;
|
|
}
|
|
h2::after {
|
|
content: '2';
|
|
font-size: 12px;
|
|
position:absolute;
|
|
top: 14px;
|
|
padding-left: 5px;
|
|
}
|