-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest1.css
More file actions
126 lines (101 loc) · 1.58 KB
/
test1.css
File metadata and controls
126 lines (101 loc) · 1.58 KB
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
* {
margin: 0;
font-family: 'Inter', sans-serif;
}
a {
text-decoration: none;
}
#container {
display: flex;
}
#sidebar {
flex-basis: 18%;
height: 100vh;
position: sticky;
top: 0;
background-color: #DFF9FB;
}
#sidebar-controller {
display: flex;
flex-direction: column;
height: inherit;
}
#logo {
display: flex;
flex-direction: column;
justify-content: center;
flex-basis: 20%;
text-align: center;
}
#logo-text {
font-family: 'Labrada', serif;
font-size: 4rem;
}
#logo-slogan {
font-weight: bold;
letter-spacing: 2px;
color: #9AA8CD;
}
#sidebar-menu {
flex-grow: 1;
}
.sidebar-link {
display: block;
color: rgb(80, 80, 83);
padding: 10px 2rem;
}
.active {
box-shadow: 0px 4px 10px 2px rgba(154, 168, 205, 0.25);
}
#dashboard {
flex-basis: 80%;
z-index: 2;
}
#profile {
display: flex;
flex-wrap: wrap;
margin: 3rem 7rem;
}
#info {
flex: 60%;
display: flex;
flex-direction: column;
padding: 1.5rem 0;
margin-left: 3rem;
justify-content: space-between;
}
#location {
padding-top: 0.5rem;
color: #9AA8CD;
}
.spacer {
margin: 2.5rem 0;
flex: 100%;
background-color: #9AA8CD;
height: 1.5px;
border: none;
}
#profile > img {
flex: 20%;
max-width: 200px;
border-radius: 22px;
}
#socials > img {
padding-left: 1.2rem;
}
#expenses {
flex: 1;
}
#expenses > img {
padding-top: 2rem;
}
#usage {
flex: 1;
}
#usage > img {
padding-top: 2rem;
}
#map {
height: 400px;
width: 800px;
}