108 lines
1.5 KiB
CSS
108 lines
1.5 KiB
CSS
body
|
|
{
|
|
background-color: #1d1919;
|
|
font-size: 150%;
|
|
font-family: "Asap","Calibri", "Arial";
|
|
color: #fff1f1;
|
|
animation-name: HG;
|
|
animation-duration: 20s;
|
|
animation-iteration-count: infinite
|
|
}
|
|
|
|
input {
|
|
width: 150px;
|
|
height: 50px
|
|
}
|
|
|
|
input[type=url], input[type=email], input[type=password] {
|
|
width: 500px;
|
|
}
|
|
|
|
select {
|
|
width: 150px;
|
|
height: 50px
|
|
}
|
|
|
|
.cs
|
|
{
|
|
|
|
position: absolute;
|
|
top: 38%;
|
|
left:12%;
|
|
margin: 0;
|
|
width: 75%;
|
|
/*border: 3px solid red;*/
|
|
}
|
|
|
|
.cs h1, .cs h2, .cs form
|
|
{
|
|
display: flex;
|
|
text-align: center;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
height: 200%;
|
|
/*border: 3px solid green;*/
|
|
}
|
|
h1
|
|
{
|
|
text-align: center;
|
|
font-weight: bold;
|
|
font-family: "Asap","Calibri","Arial";
|
|
font-size: 300%;
|
|
color: #e7dbdb;
|
|
}
|
|
|
|
h2
|
|
{
|
|
font-size: 100%;
|
|
position: sticky;
|
|
bottom: 0;
|
|
text-align: left;
|
|
}
|
|
|
|
p
|
|
{
|
|
line-height: 150%;
|
|
}
|
|
|
|
a:link
|
|
{
|
|
font-style: italic;
|
|
text-decoration: none;
|
|
font-weight: bolder;
|
|
color: #adadad
|
|
}
|
|
|
|
a:visited
|
|
{
|
|
color: #9e9393;
|
|
}
|
|
|
|
a:hover
|
|
{
|
|
color: #726868;
|
|
font-size: 105%;
|
|
transition: font-size 100ms ease-in;
|
|
}
|
|
|
|
a, img
|
|
{
|
|
transition: 100ms ease-out
|
|
}
|
|
|
|
img
|
|
{
|
|
width: 30%;
|
|
height: auto
|
|
}
|
|
|
|
img:hover
|
|
{
|
|
width: 32%;
|
|
height: auto;
|
|
opacity: 75%;
|
|
transition: 100ms ease-in;
|
|
}
|
|
|