Skip to content

Commit

Permalink
colores
Browse files Browse the repository at this point in the history
  • Loading branch information
Fabian-Martinez-Rincon committed Jan 15, 2022
1 parent c1215e0 commit f12e310
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 17 deletions.
16 changes: 9 additions & 7 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -19,22 +19,24 @@
<h2>PUNTO FIJO </h2>
<div class="form-row">
<form>
<div class="field">
<label class="salidas">
<div class="field2">

BINARIO: <label class="salidas">

<input type="text" name="bin" id="input_binario" autocomplete="off" placeholder="Ingrese un Binario">

</label>
</div>

<div class="field">
<label class="salidas">
<input type="text" name="bin" id="input_decimal" autocomplete="off" placeholder="Ingrese un Decimal">
<div class="field2">
DECIMAL: <label class="salidas">
<input type="text" name="bin" id="input_decimal" autocomplete="off" placeholder="Ingrese un Decimal">

</label>
</div>

<div class="field">
<label class="salidas">
<div class="field2">
BITS: <label class="salidas">
<input type="text" name="bin" id="input_bit" autocomplete="off" placeholder="Restriccion de Bits para Decimales (opcional)">

</label>
Expand Down
29 changes: 19 additions & 10 deletions style.css
Original file line number Diff line number Diff line change
Expand Up @@ -74,18 +74,22 @@ body {
.field2 {
margin-bottom: 7px;
display: inline-block;
color: #000;
font-size: 1.3rem;

}
.field label {
position: relative;
}

.field2 label {
position: relative;

}
.field label input {
font-size: 1rem;
font-size: 1.1rem;
color: rgb(0, 0, 0);
background: rgba(0, 0, 0, 0.192);
background: rgba(139, 139, 139, 0.192);


padding: 1rem 1.2rem;
Expand All @@ -107,19 +111,18 @@ body {

border-radius: 0.2rem;
height: 0.1px;

text-transform: uppercase;

}
.salidas{

background: rgb(8, 8, 8);
background: #2195f394;
border-radius: 5px;
display:inline-block;
width: 554px;
color: #000;



width: 404px;
color: rgb(255, 251, 251);
font-size: 1.1rem;
text-transform: uppercase;
}
.salidas2{

Expand All @@ -128,14 +131,16 @@ body {
width: 154px;
display:inline-block;
color: #000;
font-size: 1.1rem;
text-transform: uppercase;

}
.salidas3{

background: #2195f394;
width: 154px;
color: rgb(0, 0, 0);

font-size: 1.1rem;

}

Expand All @@ -145,6 +150,8 @@ body {
width: 314px;
color: rgb(0, 0, 0);
height: 30.1px;
font-size: 1.1rem;
text-transform: uppercase;
}


Expand Down Expand Up @@ -172,6 +179,7 @@ body {
}
.field label input:not(:focus) + p {
color: #000000;

}


Expand Down Expand Up @@ -243,6 +251,7 @@ h4 {
top:1%;
left: -20%;
transform: scale(0.67);

}
.binary_to_decimal2 {

Expand Down

0 comments on commit f12e310

Please sign in to comment.