| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150 |
- .projects_page {
- height: 120vw;
- background-color: #dcb495;
- }
- .project_header {
- height: 25vw;
- width: 100%;
- display: flex;
- align-items: center;
- justify-content: space-around;
- }
- .project_logo {
- margin-top: 30px;
- width: 15vw;
- height: 15vw;
- border: 0.2vw solid #ffffff;
- border-radius: 2vw;
- }
- .brand_block {
- height: 25vw;
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: space-between;
- color: #dcb495;
- }
- .name_project {
- font-size: 3vw !important;
- }
- .edit_block {
- display: flex;
- align-items: center;
- justify-content: center;
- }
- .edit_button {
- width: 4.5vw;
- height: 4.5vw;
- display: flex;
- align-items: center;
- justify-content: center;
- }
- .edit_button_image {
- height: 3vw;
- width: 3vw;
- }
- .collaborator_block {
- width: 95%;
- height: 25vw;
- background-color: #EDCBB0;
- border-radius: 2vw;
- overflow-y: auto;
- }
- .staff_block {
- margin: 20px;
- }
- .user {
- width: 24vw;
- height: 3.5vw;
- background-color: #ffffff;
- border: 2px solid #9E795A;
- border-radius: 3vw;
- margin-top: 5px;
- display: flex;
- align-items: center;
- justify-content: flex-start;
- flex-direction: row;
- flex-wrap: no-wrap;
- }
- .user_logo {
- margin-left: 3px;
- width: 3vw;
- height: 3vw;
- border-radius: 5vw;
- background-color: #000000;
- }
- .user_names {
- margin-left: 9px;
- margin-top: 10px;
- overflow-x: auto;
- color: #000000 !important;
- }
- .link_to_user {
- width: 26vw;
- height: 3.5vw;
- display: flex;
- align-items: center;
- justify-content: flex-start;
- flex-direction: row;
- flex-wrap: no-wrap;
- text-decoration: none;
- }
- .link_to_user:hover {
- text-decoration: none;
- }
- .head_staff_block {
- display: flex;
- width: 30vw;
- flex-direction: column;
- align-items: center;
- }
- .header_title, .header_title_2 {
- text-align: center;
- color: #000000;
- font-size: 3vw;
- margin-bottom: 15px;
- }
- .header_title {
- width: 100%;
- }
- .header_task_block {
- width: 60vw;
- height: 30vw;
- display: flex;
- flex-direction: column;
- align-items: center;
- }
- .task_block {
- background-color: #EDCBB0;
- width: 95%;
- height: 25vw;
- border-radius: 2vw;
- overflow-y: auto;
- }
- .task {
- margin: 20px;
- }
- .body_block {
- display: flex;
- justify-content: space-evenly;
- align-items: flex-start;
- flex-direction: row;
- }
- .new_task_block {
- width: 4.5vw;
- height: 4.5vw;
- }
- .new_task_link {
- width: 4.5vw;
- height: 4.5vw;
- }
- .new_task_image {
- width: 4.5vw;
- height: 4.5vw;
- }
- .head_task {
- display: flex;
- flex-direction: row;
- flex-wrap: nowrap;
- width: 60vw;
- }
|