initial commit

This commit is contained in:
i2p
2026-08-27 10:50:54 -06:00
commit 97a5f0aa12
3172 changed files with 570428 additions and 0 deletions
+102
View File
@@ -0,0 +1,102 @@
html {
height: 100%;
width: 100%;
}
body {
font-family: sans-serif;
margin: 0;
padding: 0;
background: #fff;
color: #000;
}
.header {
background: #850035;
padding: 10px;
border-bottom: 1px solid #671a3c;
font-weight: 100;
color: #fff;
font-size: 16px;
}
#form {
padding: 20px;
color: #000;
}
.booting.on {
top: 0;
}
.text-center {
text-align: center;
}
.booting {
position: absolute;
z-index: 100;
top: -100%;
-webkit-transition: all .5s ease;
transition: all .5s ease;
background-size: cover;
background-repeat: no-repeat;
background-position: center;
overflow: auto;
text-align: center;
}
.booting.on .booting-logo {
-webkit-animation: booting-animation;
animation: booting-animation;
animation-duration: 0s;
animation-iteration-count: 1;
-webkit-animation-duration: 2s;
animation-duration: 2s;
-webkit-animation-iteration-count: infinite;
animation-iteration-count: infinite;
}
label {
color: #000;
font-weight: 100;
margin-top: 9px;
}
.input {
width: 100%;
background: #fff;
padding: 7px;
border: 0;
border-bottom: 1px solid #A8A8A8;
border-radius: 0;
margin-bottom: 15px;
color: #000;
transition: border-color 0.2s ease-in, color 0.2s ease-in;
}
.input:focus {
width: 100%;
background: #fff;
padding: 7px;
border: 0;
border-bottom: 1px solid #850035;
border-radius: 0;
margin-bottom: 15px;
color: #000;
transition: border-color 0.2s ease-in, color 0.2s ease-in;
}
.button {
border: 1px solid #850035;
width: 100%;
background: #850035;
margin-top: 15px;
color: #fff;
float: right;
border-radius: 4px;
padding: 10px;
font-size: 18px;
font-weight: 100;
}