-
Notifications
You must be signed in to change notification settings - Fork 2
/
invest.css
143 lines (131 loc) · 2.49 KB
/
invest.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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
*{
font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
color: white;
letter-spacing: 2px;
line-height: 1.2;
}
.navbar{
display: flex;
gap: 50px;
}
.logo{
width: 300px;
height: auto;
}
.menu_items{
display: flex;
}
.menu_option{
text-decoration: none;
font-size: 18px;
}
.menu_list{
display: flex;
gap: 30px;
margin-left: -50px;
}
.project-details{
margin: 2.5%;
display: grid;
grid-template-columns: repeat(2,1fr);
padding-left: 100px;
gap:20px;
}
.profile-launch{
height: 70px;
width: 70px;
border-radius: 100%;
}
#nego{
background-color: #6365e8;
border-radius: 10px;
border-style: none;
height: 300px;
width: 600px;
padding: 25px;
backdrop-filter: blur(40px);
opacity: 0.5;
}
::placeholder{
color:white;
opacity: 1;
z-index: 2;
}
.chat-container {
max-width: 600px;
padding: 10px;
background: rgba(255, 255, 255, 0.243);
border-radius: 8px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
/* Message styles */
.message {
display: flex;
align-items: flex-start;
margin-bottom: 15px;
}
.message.sender {
justify-content: flex-start;
}
.message.receiver {
justify-content: flex-end;
}
.avatar {
width: 50px;
height: 50px;
border-radius: 50%;
margin-right: 10px;
}
.message-content {
max-width: 70%;
padding-inline: 10px;
border-radius: 25px;
}
.sender .message-content {
background-color:#7c7dd6;
}
.receiver .message-content {
background-color: #acd9da;
}
/* Time styles */
.time {
display: block;
font-size: 0.8em;
color: #888;
margin-top: 5px;
text-align: right;
}
.input-area {
display: flex;
margin-top: auto; /* Pushes the input area to the bottom */
padding-top: 10px;
border-top: 1px solid #ddd;
}
.message-input {
flex: 1; /* Allows the input to take available space */
padding: 10px;
border: 1px none #ddd;
border-radius: 5px;
font-size: 1em;
background-color: #ffffffd4;
color: black;
}
.send-button {
padding: 10px 15px;
margin-left: 10px;
border: none;
border-radius: 5px;
background-color: #00003b;
color: rgb(255, 255, 255);
cursor: pointer;
font-size: 1em;
transition: all 0.3s ease;
}
.send-button:hover {
background-color: #acd9da; /* Darker green on hover */
transform: scale(1.1);
color: black;
}
.payment{
font-size: 28px;
}