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
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.input-field input[type=email]:focus + label
18{
19  color: #4caf50;
20}
21.input-field input[type=text]:focus,
22.input-field input[type=password]:focus,
23.input-field input[type=email]:focus 
24{
25  border-bottom: 1px solid #4caf50;
26  box-shadow: 0 1px 0 0 #4caf50;
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 {
39    color: #1e88e5;
40}
41
42[type="checkbox"]:checked+label:before {
43    border-right: 2px solid #1e88e5;
44    border-bottom: 2px solid #1e88e5;
45}
46
47#tiny{
48    font-size: 1rem;
49}
50
51a{
52    color: #1e88e5;
53}
Note: See TracBrowser for help on using the repository browser.