source: firmaeventos/static/css/style.css @ 3996539

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

Renombrado utils como base, cambiado el template, quitados modelos no usados, agregado materialize

  • 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: #ff5722;
13}
14
15.input-field input[type=text]:focus + label,
16.input-field input[type=password]:focus + label
17{
18  color: #ff5722;
19}
20.input-field input[type=text]:focus,
21.input-field input[type=password]:focus
22{
23  border-bottom: 1px solid #ff5722;
24  box-shadow: 0 1px 0 0 #ff5722;
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: #ff7043;
51}
Note: See TracBrowser for help on using the repository browser.