mirror of
https://github.com/yewstack/yew.git
synced 2025-12-08 21:26:25 +00:00
* Async example * Formatted * Demo send_future and send_stream * Better comment * Reduce dependencies * Typo * Remove tokio_stream dependency * Remove tokio dependency * Formatting * Variety of async methods * Updated README * Remove wasm-bindgen-futures dependency
43 lines
702 B
SCSS
43 lines
702 B
SCSS
body {
|
|
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
|
|
font-size: 16pt;
|
|
}
|
|
|
|
.app {
|
|
display: flex;
|
|
justify-content: center;
|
|
flex-direction: row;
|
|
}
|
|
|
|
.time-display {
|
|
display: flex;
|
|
justify-content: center;
|
|
color: darkblue;
|
|
font-size: 24pt;
|
|
font-weight: bold;
|
|
margin-bottom: 15px;
|
|
}
|
|
|
|
.joke-display {
|
|
display: flex;
|
|
justify-content: center;
|
|
color: orangered;
|
|
max-width: 75%;
|
|
border-color: darkblue;
|
|
border-style: dashed;
|
|
border-width: 1px;
|
|
padding: 10px;
|
|
}
|
|
|
|
.fun-score-display {
|
|
font-style: italic;
|
|
}
|
|
|
|
|
|
.clock {
|
|
display: flex;
|
|
flex-direction: column;
|
|
row-gap: 15px;
|
|
align-items: center;
|
|
}
|