source: firmaeventos/static/css/style.css @ 2f56f4e

Last change on this file since 2f56f4e was 2f56f4e, checked in by rudmanmrrod <rudman22@…>, 7 years ago

Agregados estilos de formularios, agregado form de errores, acomodado login

  • Property mode set to 100644
File size: 870 bytes
Line 
1 body {
2     display: flex;
3     min-height: 100vh;
4     flex-direction: column;
5 }
6 main {
7     flex: 1 0 auto;
8 }
9 
10/* Input colors */
11.input-field .prefix.active{
12    color: #4caf50;
13}
14
15.input-field input[type=text]:focus + label,
16.input-field input[type=password]:focus + label
17{
18  color: #4caf50;
19}
20.input-field input[type=text]:focus,
21.input-field input[type=password]:focus
22{
23  border-bottom: 1px solid #4caf50;
24  box-shadow: 0 1px 0 0 #4caf50;
25}
26
27.invalid input {
28    border-bottom: 1px solid #F44336;
29    box-shadow: 0 1px 0 0 #F44336;
30}
31
32.invalid label,.invalid  i, .errorlist, .danger {
33    color: #F44336;
34}
35
36.dropdown-content li>a, .dropdown-content li>span {
37    color: #ff5722;
38}
39
40[type="checkbox"]:checked+label:before {
41    border-right: 2px solid #ff5722;
42    border-bottom: 2px solid #ff5722;
43}
44
45#tiny{
46    font-size: 1rem;
47}
48
49a{
50    color: #E53935;
51}
Note: See TracBrowser for help on using the repository browser.