File size: 1,309 Bytes
ab1a658 |
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 |
.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;
}
|