Spaces:
Sleeping
Sleeping
File size: 2,338 Bytes
a75e3df | 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 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 | * {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: Helvetica, sans-serif;
}
body {
background-color: #333131;
color: white;
padding: 20px;
padding-top: 0;
}
.chat-box,
.mentor-card,
.student-card,
.workflow-step {
background: #333131;
border-radius: 10px;
box-shadow: 0 0 10px rgba(255, 255, 255, 0.05);
color: #fff;
padding: 15px;
margin-bottom: 10px;
}
.chat-box {
margin-bottom: 10px;
}
.user {
color: #90caf9;
}
.bot {
color: #a5d6a7;
}
.pdf-list {
display: flex;
flex-wrap: wrap;
gap: 10px;
}
.pdf-item {
background-color: #2a2a2a;
padding: 8px 12px;
border-radius: 6px;
display: flex;
align-items: center;
}
.pdf-item span {
margin-left: 8px;
cursor: pointer;
color: #ef5350;
}
footer {
background-color: #1f1f1f;
color: #ccc;
padding: 20px 0;
text-align: center;
font-size: 14px;
border-top: 1px solid #333;
margin-top: 40px;
position: fixed;
bottom: 0;
left: 0;
width: 100%;
}
footer a {
color: #90caf9;
text-decoration: none;
}
footer a:hover {
text-decoration: underline;
}
.or{
text-align: center;
padding-bottom: 0.5rem;
}
.team-container,
.workflow-section {
max-width: 1000px;
margin: auto;
padding: 20px;
}
.workflow-section {
padding: 40px 20px;
}
.mentor-card,
.student-card {
display: flex;
align-items: center;
border-radius: 16px;
padding: 25px;
margin-bottom: 25px;
}
.mentor-card img,
.student-card img {
width: 140px;
height: 140px;
object-fit: cover;
border-radius: 50%;
}
.mentor-card img {
margin-right: 25px;
}
.student-card {
flex-direction: column;
text-align: center;
padding: 30px 20px;
}
.overflow-auto{
overflow: auto;
height: 67vh;
}
.student-card img {
margin-bottom: 15px;
}
.student-info h5 {
font-size: 20px;
margin-bottom: 6px;
}
.student-info p,
.mentor-info p,
.workflow-step p {
font-size: 14px;
color: #ccc;
margin: 4px 0;
}
.mentor-info h5 {
font-size: 24px;
margin-bottom: 8px;
}
.workflow-step h4 {
color: #00bcd4;
margin-bottom: 10px;
}
@media (max-width: 768px) {
.mentor-card {
flex-direction: column;
align-items: center;
text-align: center;
}
.mentor-card img {
margin: 0 0 15px 0;
}
}
@media (max-width: 576px) {
.chat-box,
.btn,
.form-control {
font-size: 14px;
}
} |