forked from Laboratoria/MEX008-hackathon-Interna-SF
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathstyle.css
123 lines (104 loc) · 1.82 KB
/
style.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
*{
margin:0;
padding:0;
/* background: #BFD8D2; */
font-family: Helvetica, sans-serif;
}
body{
background: #BFD8D2;
}
.header{
background: #FEDCD2;
font-size: 18pt;
color: #DF744A;
}
.header img{
background: #FEDCD2;
height: 50px;
width: auto;
}
.button-style{
background:#FEDCD2;
color: #DF744A;
padding: 10px;
margin:5px;
border: none;
border-radius: 5px;
}
.button-style2{
background:#DCB239;
color: #DF744A;
padding: 10px;
margin:5px;
border: none;
border-radius: 5px;
}
.monthly-expenses img{
background:#FEDCD2;
}
.monthly-expenses input{
background:#FEDCD2;
}
.register{
width: 100vw;
/* height: 100vh; */
/* background-image: url('/images/ibrahim-rifath-OApHds2yEGQ-unsplash.jpg');
background-size: 100% 100%;
background-repeat: no-repeat;
background-position:
*/
}
.main{
width: 100vw;
}
.income-and-salary{
display:grid;
grid-template-columns: repeat(3,33%);
grid-template-rows: repeat(2,auto);
}
.movimientos1{
grid-column-start: 1;
grid-column-end: 2;
margin: 5px;
}
.movimientos2{
grid-column-start: 2;
grid-column-end: 3;
margin: 5px;
}
.movimientos3{
grid-column-start: 3;
grid-column-end: 4;
margin: 5px;
}
.income-and-salary .date p{
grid-column-start: 1;
grid-column-end: 4;
color: #DF744A;
background: #BFD8D2;
padding: 10px;
}
/* .expenses{
border: solid 2px brown;
} */
/* .daily-expenses{
border: solid 2px gold;
} *//*
.weekly-expenses{
border: solid 2px green ;
}
.monthly-expenses{
border: solid 2px pink;
} */
.expense-card-month{
background-color:#FEDCD2;
margin: 20px;
width: 60%;
}
.expense-card-week{
background-color:#DCB239;
margin: 20px;
}
.desaparecer{
display:none;
}