|
.app-container { |
|
font-family: Arial, sans-serif; |
|
} |
|
|
|
.header { |
|
display: flex; |
|
justify-content: space-between; |
|
align-items: center; |
|
background-color: #3f5b8f; |
|
color: white; |
|
padding: 10px 20px; |
|
width: 100%; |
|
position: fixed; |
|
top: 0; |
|
left: 0; |
|
z-index: 100; |
|
} |
|
|
|
.logo { |
|
font-size: 1.5rem; |
|
font-weight: bold; |
|
} |
|
|
|
.header-right { |
|
display: flex; |
|
align-items: center; |
|
} |
|
|
|
.new-project { |
|
display: flex; |
|
align-items: center; |
|
margin-right: 20px; |
|
} |
|
|
|
.profile { |
|
width: 35px; |
|
height: 35px; |
|
border-radius: 50%; |
|
overflow: hidden; |
|
} |
|
|
|
.profile-pic { |
|
width: 100%; |
|
height: 100%; |
|
object-fit: cover; |
|
} |
|
|
|
.side-panel { |
|
background-color: #f4f4f4; |
|
border-radius: 10px; |
|
padding: 15px; |
|
position: fixed; |
|
top: 70px; |
|
left: 20px; |
|
width: 300px; |
|
height: calc(100% - 80px); |
|
overflow-y: auto; |
|
} |
|
|
|
textarea { |
|
width: 100%; |
|
height: 80px; |
|
resize: none; |
|
margin-bottom: 15px; |
|
padding: 10px; |
|
} |
|
|
|
.buttons { |
|
display: flex; |
|
justify-content: space-between; |
|
margin-top: 10px; |
|
} |
|
|
|
button { |
|
background-color: #4a6fa1; |
|
color: white; |
|
border: none; |
|
padding: 10px 20px; |
|
border-radius: 5px; |
|
cursor: pointer; |
|
} |
|
|
|
button:hover { |
|
background-color: #3b5b85; |
|
} |
|
|
|
.image-container { |
|
margin-left: 350px; |
|
margin-top: 100px; |
|
} |
|
|
|
img { |
|
max-width: 100%; |
|
border-radius: 10px; |
|
} |
|
|