-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
112 lines (91 loc) · 1.7 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
* {
box-sizing: border-box;
}
body {
font-family: Arial, Helvetica, sans-serif;
margin: 0;
background-color: rgb(177, 172, 164);
}
.header-container{
width: 100%;
display: flex;
color: white;
background-color: #424052;
padding: 1rem;
padding-bottom: 0;
box-shadow: inset 0 12px 12px -12px rgba(0, 0, 0, 0.5);
}
.logo{
margin-bottom: .5rem;
max-width: 10rem;
margin-left: 1rem;
}
.header-links{
margin: auto;
display: flex;
flex-direction:row;
}
.header-link{
text-decoration: none;
background-color: #424052;
color: white;
margin-right: 1rem;
margin-left: 1rem;
padding:1em;
}
.header-login {
align-self:flex-start;
}
.header-link:hover{
background-color: #BE886E;
color: #424052;
}
hr {
height: 12px;
border: 0;
}
/*Body*/
/**********************/
.main-body{
max-width: 1200px;
margin: auto;
display: flex;
flex-direction: row;
}
/*Account lists*/
/**********************/
.account-list{
display: flex;
flex-direction: column;
position: relative;
}
.account-list-card{
border-radius: .5rem;
height: fit-content;
background-color: white;
color: #424052;
display: flex;
align-content: center;
padding: .5rem;
margin: .5rem;
box-shadow: 0 5px 5px -5px rgba(0, 0, 0, 0.5);
}
.account-info-main{
margin-right: 1rem;
}
.account-info-aside{
margin-left: 1rem;
}
/*Expense*/
/**********************/
.expense-list{
display: flex;
flex-direction: column;
position: relative;
}
.expense-list-card{
background-color: white;
color: #424052;
padding-left: 1rem;
box-shadow: 0 5px 5px -5px rgba(0, 0, 0, 0.5);
}