63 lines
1.2 KiB
CSS
63 lines
1.2 KiB
CSS
body {
|
|
background-color: aliceblue;
|
|
margin: 0px;
|
|
}
|
|
.background_text {
|
|
width: 100%;
|
|
color: rgba(255, 239, 213, 0.3);
|
|
font-style: italic;
|
|
font-family: sans-serif;
|
|
font-size: 125px;
|
|
position: relative;
|
|
top: 120px;
|
|
|
|
/* 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: rgba(255, 239, 213);
|
|
height: 40px;
|
|
width: 40px;
|
|
border: none;
|
|
border-radius: 100%;
|
|
font-size: 22px;
|
|
color: white;
|
|
padding: 0;
|
|
outline: none;
|
|
}
|
|
#submit:hover {
|
|
width: 45px;
|
|
height: 45px;
|
|
background-color: rgba(255, 239, 213, 0.582);
|
|
}
|