-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathoverlap.css
103 lines (103 loc) · 1.78 KB
/
overlap.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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
*:focus {
outline: none;
}
body {
width: 100%;
background-color: #fafafa;
position: relative;
font-family: BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial,
sans-serif;
}
.navbar {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 59px;
background-color: #ffffff;
border-bottom: 1px solid #dfdfdf;
display: flex;
justify-content: center;
padding: 5px 0;
}
.navbar-wrapper {
width: 70%;
max-width: 1000px;
height: 100%;
display: flex;
justify-content: space-between;
align-items: center;
}
.logo {
height: 85%;
margin-top: 5px;
cursor: pointer;
}
.search {
position: absolute;
left: 50%;
transform: translateX(-50%);
width: 267px;
height: 36px;
background-color: #efefef;
border: none;
border-radius: 7px;
color: rgba(0, 0, 0, 0.5);
/* text-align: left; */
}
.search::placeholder {
font-size: 16px;
padding-left: 15px;
}
.nav-items {
height: 24px;
position: relative;
}
.icons {
height: 100%;
cursor: pointer;
margin: 0 10px;
display: inline-block;
}
.user-accoount {
width: 23px;
border-radius: 50%;
background-image: url(assets/images/nav-items/user.png);
background-size: cover;
}
.main {
width: 100%;
padding: 40px 0;
display: flex;
justify-content: center;
margin-top: 50px;
}
.wrapper {
width: 70%;
max-width: 1000px;
display: grid;
grid-template-columns: 60% 40%;
grid-row-gap: 30px;
/* margin-top: 35px; */
}
.left-col {
display: flex;
flex-direction: column;
}
.status-wrapper {
width: 100%;
height: 117px;
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: center;
position: relative;
z-index: -1;
background: #fff;
border: 1px solid #dfdfdf;
border-radius: 8px;