-
Notifications
You must be signed in to change notification settings - Fork 0
/
problem4.css
126 lines (124 loc) Β· 2.41 KB
/
problem4.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
124
125
126
h1{
background-color:rgb(180, 238, 219); color:black;
text-align: center;
width: 50%;
border-bottom: 2px solid gray;
margin:0px auto 15px auto;
}
.totalsum{
border-radius:20px;
border: 5px solid black;
background-color: rgb(180, 238, 219); color:black;
text-align: center;
width:50%; height:100%;
margin:0 auto 0 auto;
}
.totalsum p{
font-size:40px;
margin-bottom:15px;
}
h3{
margin:5px 0 5px 0;
}
div.total
{
display: flex;
justify-content: space-evenly;
margin-bottom: 10px;
}
div.allincome{
color:blue;
}
span.plus-button {
display:inline-block;
width:20px;
height:20px;
border-radius: 100%;
border-color: black;
border: 1px solid;
font-size: 14px;
background-color: aliceblue;
}
div.alloutcome{
color:red;
}
span.minus-button {
display:inline-block;
width: 20px;
height: 20px;
border-radius: 100%;
border-color: black;
border: 1px solid;
font-size: 14px;
background-color: aliceblue;
}
div.date {
box-sizing: border-box;
width:50%; margin:30px auto 0 auto;
display:flex;
justify-content: center;
border-top: solid 2px;
border-color: gray;
padding:10px 0 20px 0;
}
button.left, .right{
border:none;
background-color: white;
}
section.main {
box-sizing: border-box;
width:50%;
margin:0 auto 0 auto;
display: flex;
flex-direction: row;
justify-content: space-between;
border-bottom: solid 1px;
padding-bottom: 20px;
border-color: rgb(190, 188, 188);
}
button.income, button.outcome {
border-radius: 10px;
background-color: rgb(17, 127, 90);
color:white;
}
button.income:hover, button.outcome:hover {
background-color:pink;
color:black;
}
div.item{
box-sizing: border-box;
width:50%;
margin:15px auto 10px auto;
display: flex;
justify-content: space-between;
border-radius: 30px;
background-color: rgb(180, 238, 219);
color:black; padding:15px;
}
.category{
font-size: 14px;
}
section.details{
height: 400px;
overflow-y: scroll;
width:50%;
margin:0 auto 0 auto;
}
.money_minus{
color:red;
}
.money_plus{
color:blue;
}
button.x{
border:none;
background-color: rgb(180, 238, 219);
}
footer.plus_button{
text-align: center;
}
button.last{
display:inline-block;
width:50%;
margin:0 auto 0 auto;
}