73 lines
1.5 KiB
CSS
73 lines
1.5 KiB
CSS
body {
|
|
background-color: papayawhip;
|
|
margin: 0px;
|
|
}
|
|
.background_text {
|
|
width: 100%;
|
|
color: rgb(255, 183, 124,0.3);
|
|
font-style: italic;
|
|
font-family: sans-serif;
|
|
font-size: 125px;
|
|
position: relative;
|
|
top: 120px;
|
|
user-select: none;
|
|
-moz-user-select: none;
|
|
-ms-user-select: none;
|
|
-webkit-user-select: none;
|
|
|
|
/* background-color: yellow; */
|
|
}
|
|
#title_1 {
|
|
width: 100%;
|
|
color: slategray;
|
|
font-family: youyuan;
|
|
font-size: 30px;
|
|
text-align: center;
|
|
position: absolute;
|
|
top: 100px;
|
|
}
|
|
#name {
|
|
/* width: 120px; */
|
|
width: 100%;
|
|
color: slategray;
|
|
font-family: youyuan;
|
|
font-size: 24px;
|
|
text-align: center;
|
|
position: absolute;
|
|
/* left: 490px; */
|
|
top: 230px;
|
|
}
|
|
input[name] {
|
|
background-color: rgba(240, 248, 255, 0);
|
|
height: 30px;
|
|
border: 0.5px solid rgba(128, 128, 128, 0.5);
|
|
border-radius: 15px;
|
|
position: relative;
|
|
font-family: youyuan;
|
|
text-align: center;
|
|
font-size: 18px;
|
|
outline: none;
|
|
}
|
|
#submit {
|
|
background-color: rgb(255, 183, 124);
|
|
height: 40px;
|
|
width: 40px;
|
|
border: none;
|
|
border-radius: 100%;
|
|
font-size: 22px;
|
|
color: white;
|
|
padding: 0;
|
|
outline: none;
|
|
}
|
|
#submit:hover {
|
|
transform: translate(0,-1px);
|
|
-ms-transform: translate(0,-1px);
|
|
-webkit-transform: translate(0,-1px);
|
|
-o-transform: translate(0,-1px);
|
|
-moz-transform: translate(0,-1px);
|
|
box-shadow: 3px 3px 3px rgba(192, 192, 192, 0.801);
|
|
}
|
|
#submit:active {
|
|
background-color: rgba(255, 183, 124, 0.5);
|
|
}
|