source: firmaeventos/static/css/style.css @ 4db73c3

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

Agregados archivos necesarios, modificada la interfaz

  • Property mode set to 100644
File size: 956 bytes
RevLine 
[3996539]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{
[2f56f4e]12    color: #4caf50;
[3996539]13}
14
15.input-field input[type=text]:focus + label,
[7cad786]16.input-field input[type=password]:focus + label,
17.input-field input[type=email]:focus + label
[3996539]18{
[2f56f4e]19  color: #4caf50;
[3996539]20}
21.input-field input[type=text]:focus,
[7cad786]22.input-field input[type=password]:focus,
23.input-field input[type=email]:focus 
[3996539]24{
[2f56f4e]25  border-bottom: 1px solid #4caf50;
26  box-shadow: 0 1px 0 0 #4caf50;
[3996539]27}
28
29.invalid input {
30    border-bottom: 1px solid #F44336;
31    box-shadow: 0 1px 0 0 #F44336;
32}
33
34.invalid label,.invalid  i, .errorlist, .danger {
35    color: #F44336;
36}
37
38.dropdown-content li>a, .dropdown-content li>span {
[4db73c3]39    color: #1e88e5;
[3996539]40}
41
42[type="checkbox"]:checked+label:before {
[4db73c3]43    border-right: 2px solid #1e88e5;
44    border-bottom: 2px solid #1e88e5;
[3996539]45}
46
47#tiny{
48    font-size: 1rem;
49}
50
51a{
[4db73c3]52    color: #1e88e5;
[56a25a3]53}
Note: See TracBrowser for help on using the repository browser.