> ## Documentation Index
> Fetch the complete documentation index at: https://docs.sinosend.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Requests

### Advanced CSS styling

You can further customize the style of your transfer page by using the styling theme below.

#### Background Container

```css theme={null}
.request-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    overflow-x: hidden;
    padding: 2rem 0;
    transition: background-image 0.3s linear;
    -webkit-transition: background-image 0.3s linear;
}
```

#### Top bar Div with your logo on the left

<Frame>
  <img src="https://mintcdn.com/sinosend/eP8IFXNKLqU5W_3c/images/Screenshot-2026-07-05-at-1.09.48-AM.png?fit=max&auto=format&n=eP8IFXNKLqU5W_3c&q=85&s=51aa4ffb53d1552a60644e80a1ff1ae3" alt="Screenshot 2026 07 05 At 1 09 48 AM" width="2578" height="286" data-path="images/Screenshot-2026-07-05-at-1.09.48-AM.png" />
</Frame>

```css theme={null}
.topbar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 85px;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 1.2rem;
    padding: 10px;
}
```

#### Logo on the top left

<Frame>
  <img src="https://mintcdn.com/sinosend/eP8IFXNKLqU5W_3c/images/Screenshot-2026-07-05-at-1.11.15-AM.png?fit=max&auto=format&n=eP8IFXNKLqU5W_3c&q=85&s=983ba9883adcbc579aa1b01fa1f4ae79" alt="Screenshot 2026 07 05 At 1 11 15 AM" width="266" height="286" data-path="images/Screenshot-2026-07-05-at-1.11.15-AM.png" />
</Frame>

```text theme={null}
.topbar img {
    display:none;
}
```

#### Request Container Block

<Frame>
  <img src="https://mintcdn.com/sinosend/eP8IFXNKLqU5W_3c/images/Screenshot-2026-07-05-at-1.18.26-AM.png?fit=max&auto=format&n=eP8IFXNKLqU5W_3c&q=85&s=7bb7f348de1ab391d526d4436cd5ffed" alt="Screenshot 2026 07 05 At 1 18 26 AM" width="750" height="596" data-path="images/Screenshot-2026-07-05-at-1.18.26-AM.png" />
</Frame>

```css theme={null}
messageText {
    text-align: center;
    margin-top: 20px;
    padding: 2rem;
    font-size: 1.1rem;
    font-weight: 300;
    font-style: italic;
    border-left: 3px solid var(--myHoverColor); // Left border color 
    position: relative;
    backdrop-filter: blur(15px);
    background-color: #1a79a2c4;
    max-width: 510px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    -webkit-backdrop-filter: blur(15px);
    font-weight: bold;
}
```

#### Profile Image

```text theme={null}
.profileImage {
    display: flex;
    justify-content: center;
    margin-bottom: 1.2rem;
    left: 0;
    right: 0;
}
```

Requesters Name

```text theme={null}
.requestersName {
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    margin-bottom: 0.5rem;
}
```

#### Upload Container

<Frame>
  <img src="https://mintcdn.com/sinosend/eP8IFXNKLqU5W_3c/images/Screenshot-2026-07-05-at-1.25.08-AM.png?fit=max&auto=format&n=eP8IFXNKLqU5W_3c&q=85&s=2467edbc1c29f2aa1ec36a9420d17b85" alt="Screenshot 2026 07 05 At 1 25 08 AM" width="1026" height="378" data-path="images/Screenshot-2026-07-05-at-1.25.08-AM.png" />
</Frame>

```css theme={null}
.upload-container {
    margin-top: 1rem;
    margin-left: 0.5rem;
    margin-right: 0.5rem;
    padding: 2.5rem .5rem;
    width: 500px;
    max-width: 95vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: var(--myWhiteColor);
    border-radius: 12px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--myBorderLine);
    margin-bottom: 1rem;
}
```

#### Add Cross Icon

```css theme={null}
.icon {
    margin-bottom: 1rem;
    font-size: 2.8rem;
    transition: 200ms transform ease-in;
    color: #0092D1;
}
```

#### Submit Button

```text theme={null}
button {
    border-radius: 8px;
    background-color: var(--myDarkIconColor);
    font-size: 1.1rem;
    cursor: pointer;
    width: 120px;
    height: 45px;
    color: var(--myWhiteColor);
    border: none;
    background-color: #00d126;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}
```
