-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathflexbox.css
More file actions
115 lines (99 loc) · 1.48 KB
/
flexbox.css
File metadata and controls
115 lines (99 loc) · 1.48 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
/* RESET */
* {
margin: 0;
padding: 0;
}
*,
*::before,
*::after {
box-sizing: inherit;
}
html {
box-sizing: border-box;
font-size: 62.5%;
height: 100%;
}
body {
height: 100%;
font-family: 'Rockwell';
}
#app {
height: 100%;
}
/* HEADER */
.header {
display: flex;
align-items: center;
height: 8%;
min-height: 6rem;
background-color: #756bb1;
}
.logo {
height: 100%;
width: 4%;
min-width: 6rem;
display: flex;
justify-content: center;
align-items: center;
background-color: #f1a340;
}
.title {
width: 90%;
padding-left: 2rem;
font-size: 3rem;
color: #f1a340;
}
.user {
width: 6%;
min-width: 8rem;
display: flex;
justify-content: space-evenly;
}
/* CONTAINER */
.container {
display: flex;
height: 89%;
}
/* TOOLBAR */
.toolbar {
flex: 0 0 4%;
display: flex;
flex-direction: column;
justify-content: space-between;
align-items:center;
min-width: 6rem;
padding-bottom: 2rem;
background-color: #333;
}
.tools {
display: flex;
flex-direction: column;
justify-content: space-evenly;
height: 30%;
min-height: 14rem;
}
#map {
flex: 1;
}
/* FOOTER */
.footer {
height: 3%;
min-height: 2rem;
background-color: #756bb1;
}
/* ICONS */
img {
cursor: pointer;
}
.icon {
width: 2.5rem;
height: 2.5rem;
}
.icons-logo {
width: 5rem;
height: 5rem;
}
.icon-toolbar {
width: 3.5rem;
height: 3.5rem;
}