-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathApp.css
More file actions
89 lines (75 loc) · 1.27 KB
/
App.css
File metadata and controls
89 lines (75 loc) · 1.27 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
.data-section {
background-color: #df4782;
}
.search-wrapper {
display: flex;
justify-content: space-between;
align-items: center;
}
.section-title {
font-size: 0.9rem;
text-transform: uppercase;
padding: 0.3rem 0.7rem;
}
.section-title span {
font-size: inherit;
}
.search-wrapper form {
padding: 0 0.3rem;
}
.navbar {
display: flex;
flex-wrap: wrap;
flex-direction: row;
justify-content: space-between;
align-items: center;
margin: 0 auto;
width: 100%;
}
.navbar .nav-item {
color: #fff;
text-decoration: none;
background-color: #ce4277;
padding: 0.5rem;
width: 50%;
}
.nav-item:first-child,
.nav-item:nth-child(4n),
.nav-item:nth-child(4n+1) {
background-color: #dc4681;
}
.nav-item:hover {
background-color: #ff5294;
transform: scale(0.99);
}
.right-arrow {
width: 100%;
display: flex;
justify-content: right;
}
.right-arrow svg {
font-size: 1.3rem;
cursor: pointer;
}
.content-wrapper {
display: flex;
align-items: flex-end;
justify-content: space-between;
text-transform: uppercase;
}
.map {
opacity: 0.3;
margin-top: -1rem;
height: 10rem;
width: 58%;
}
.content {
display: flex;
flex-direction: column;
align-items: flex-end;
width: 42%;
}
.sub-heading {
font-size: 1.1rem;
text-align: end;
}