good at the end I could make my web responsive, I thought that those things were done manually, and it turns out that there were framework ufff, well anyway, I have some doubts that remained pending:
For example in my forms when I have text fields or other things, like "checkbox" when I press them they turn green, how can I change that?
Here is a picture so you can see what I'm talking about:
<form method="POST" class="col s12 m12 l12 offset-l0 m0 s0 white blue-text" name="formulario"> <!-- Tamano del form responsive, color de texto y de fondo-->
<div class="row">
<div class="input-field col s12 m12 l12"> <!-- Tamano del input-field Titulo-->
<i class="material-icons prefix waves-effect waves-light-blue lighten-1">perm_identity</i>
<input id="icon_prefix" type="email" class="validate" name="txtCorreo">
<label for="icon_prefix">Correo</label>
</div>
</div>
<div class="row">
<div class="input-field col s12 m12 l12"> <!-- Tamano del input-field Titulo-->
<i class="material-icons prefix">lock_outline</i>
<input id="icon_prefix" type="password" class="validate" name="txtPassword">
<label for="icon_prefix">Contraseña</label>
</div>
</div>
<div class="row">
<div class="input-field col s12 m12 l12 center"> <!-- Tamano del boton enviar-->
<button class="btn waves-effect waves-light blue" type="submit" name="action" class="submit">Acceder
<i class="material-icons right">send</i></button>
</div>
</div>
</form>