# Styles

#### Positions

In client/ui/positions.css it's possible to change some UI styles

.keyboard defines position of shortcuts keyboard opened with /shortcutskeyboard

```css
.keyboard {
	bottom: 5%;
	left: 35%;
}
```

.nativeShortcutPreview defines position and width of shortcut preview when you use native shortcut

```css
.nativeShortcutPreview {
	width: 614px;
	bottom: calc(5% + 120px);
	left: 35%;
}
```

.shortcutsOverview defines position and sizes of shortcuts overview opened by /shortcuts

```css
.shortcutsOverview {
	width: 1200px;
	min-height: 600px;
	top: 10%;
	left: calc((100% - 1200px) / 2);
}
```

.shortcutsAdmin defines position and sizes of admin panel

```css
.shortcutsAdmin {
	width: 1200px;
	min-height: 500px;
	top: 10%;
	left: calc((100% - 1200px) / 2);
}
```

.admin-players-list defines max-height of players list in admin panel home

```css
.admin-players-list {
	max-height: 400px;
}
```

#### Logo

If you want to replace logo in admin, it's located in client/ui folder

Logo is called `rcoreLogo.{hash}.svg`, do not rename the file just replace it with your logo


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://documentation.rcore.cz/paid-resources/rcore_shortcuts/styles.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
