64 lines
1.2 KiB
CSS
64 lines
1.2 KiB
CSS
.div_input{
|
|
padding: 10px;
|
|
}
|
|
|
|
body {
|
|
background-color: cornflowerblue;
|
|
margin: 2px;
|
|
font-family: Arial, sans-serif;
|
|
}
|
|
button {
|
|
color: white;
|
|
background-color: cornflowerblue;
|
|
border-radius: 24px;
|
|
border: 2px solid black;
|
|
height: 50px;
|
|
width: 90px;
|
|
text-align: center;
|
|
}
|
|
button:hover{
|
|
background-color: white;
|
|
color: cornflowerblue;
|
|
cursor: pointer;
|
|
height: 57px;
|
|
width: 98px;
|
|
}
|
|
input {
|
|
background-color: white;
|
|
border: 5px outset black;
|
|
border-radius: 24px;
|
|
width: 180px;
|
|
height: 20px;
|
|
box-shadow: 0px 0px 5px 5px blue;
|
|
margin-left: 10px;
|
|
}
|
|
.main {
|
|
border: 5px;
|
|
border-style: dashed;
|
|
border-color: black;
|
|
padding-top: 10px;
|
|
padding-left: 15px;
|
|
padding-bottom: 10px;
|
|
border-radius: 24px;
|
|
margin-top: 10px;
|
|
}
|
|
.main2 {
|
|
border: 5px;
|
|
border-style: dashed;
|
|
border-color: cornflowerblue;
|
|
padding-top: 10px;
|
|
padding-left: 15px;
|
|
padding-bottom: 10px;
|
|
border-radius: 24px;
|
|
margin-top: 10px;
|
|
}
|
|
.dr {
|
|
color: white;
|
|
font-weight: bold;
|
|
text-decoration: underline;
|
|
}
|
|
p {
|
|
font-size: 16px;
|
|
color: black;
|
|
margin-bottom: 10px;
|
|
} |