-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
100 lines (91 loc) · 1.48 KB
/
index.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
body,
html {
margin: 0%;
background: #2e3035;
font-family: Proxima Nova Regular, Helvetica Neue, Helvetica, Arial,
sans-serif;
}
/* Header starts */
header {
background: #171544;
height: 200px;
width: 100%;
}
.navbar {
padding-top: 20px;
}
.logo > img {
width: 20%;
margin-left: 10px;
background: transparent;
}
.flex {
display: flex;
/* justify-content: flex-start; */
}
.tagline {
display: flex;
justify-content: center;
color: #aed8ea;
align-items: center;
}
.headers {
display: flex;
justify-content: space-between;
margin: 0 8%;
color: #6e6c8a;
}
.new-post_btn {
padding: 5px 10px;
position: relative;
right: 14%;
background: #33be7d;
display: flex;
gap: 10px;
color: #ffff;
border-radius: 3px;
/* margin-right: 20%; */
}
.search-bar {
margin-left: 10%;
width: 28%;
height: 35px;
background: #454469;
color: grey;
border: none;
border-radius: 5px;
font-size: 16px;
}
.search-icon {
color: #ffff;
position: relative;
right: 30px;
top: 5px;
}
.right-side_btns {
position: absolute;
right: 0;
margin-right: 25px;
}
.right-side_btns > span {
color: #ffff;
}
.right-side_btns button {
width: 97px;
height: 35px;
color: #ffff;
border: none;
font-size: 14px;
}
.right-side_btns button:nth-last-child(1) {
background: #1bb76e;
}
.right-side_btns button:nth-last-child(2) {
background: #161541;
}
.right-side_btns button:nth-last-child(3) {
background: #6432f9;
}
.images > img {
width: 10%;
}