Skip to content

Commit be73acc

Browse files
committed
Improve styling
* Use a lighter font for large texts * Align server message & audio controls * Add spacing between mini progress bar & action message
1 parent 722ad82 commit be73acc

File tree

2 files changed

+14
-2
lines changed

2 files changed

+14
-2
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1414
- Better shutdown for `qbx_core`.
1515
- Preview in regular browsers.
1616

17+
### Changed
18+
19+
- Improved styling.
20+
- Used a lighter font for large texts.
21+
- Aligned the server message & audio controls at the top.
22+
- Added spacing between the mini progress bar & its action message.
23+
1724
### Fixed
1825

1926
- Invalid event data typing for `endDataFileEntries`.

html/style.css

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400&display=swap');
1+
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400&display=swap');
22

33
* {
44
margin: 0 0;
@@ -28,6 +28,10 @@ html {
2828
transition: background-image 2s;
2929
}
3030

31+
h1 {
32+
font-weight: 300;
33+
}
34+
3135
progress {
3236
appearance: none;
3337
overflow: hidden;
@@ -74,7 +78,7 @@ progress {
7478
width: 90vw;
7579
display: flex;
7680
flex-direction: row;
77-
align-items: start;
81+
align-items: center;
7882
justify-content: space-between;
7983
}
8084

@@ -141,6 +145,7 @@ progress {
141145
flex-direction: column;
142146
align-items: start;
143147
justify-content: space-between;
148+
gap: 0.25rem;
144149
}
145150

146151
#mini-progress-wrapper {

0 commit comments

Comments
 (0)