Intro_basicos_HTML_CSS/Simple_IOT_WebServer/estilo2.css

85 lines
1.5 KiB
CSS
Raw Normal View History

2020-11-18 02:09:41 -03:00
body {
background-color: lightgreen;
}
h1 {
font-family: verdana;
color: darkgreen;
text-align: center;
}
p {
font-family: helvetica;
font-size: 20px;
color: darkblue;
}
h2 {
font-family: verdana;
color: darkgreen;
}
h3 {
font-family: verdana;
color: darkgreen;
}
input[type=text], select {
/*width: 100%;*/
padding: 12px 20px;
margin: 8px 0;
display: inline-block;
border: 2px solid #ccc;
border-radius: 4px;
width: 300px;
box-sizing: content-box;
}
input[type=number], select {
padding: 6px 8px;
margin: 2px 0;
display: inline-block;
border: 1px solid #ccc;
border-radius: 8px;
width: 40px;
box-sizing: content-box;
}
input[type=descripcion], select {
/*width: 100%;*/
padding: 12px 20px;
margin: 8px 0;
display: inline-block;
border: 1px solid #ccc;
border-radius: 4px;
width: 300px;
box-sizing: content-box;
}
input[type=submit], select {
width: 200px;
background-color: #4CAF50;
color: white;
padding: 14px 20px;
margin: 8px 0;
border: none;
border-radius: 4px;
cursor: pointer;
}
input[type=password], select {
/*width: 100%;*/
padding: 12px 20px;
margin: 8px 0;
display: inline-block;
border: 1px solid #ccc;
border-radius: 4px;
width: 300px;
box-sizing: content-box;
}
input[type=submit]:hover {
background-color: #45a049;
}