Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(css): Make example a little more accessible #261

Merged
merged 1 commit into from
Mar 7, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 3 additions & 19 deletions web-workers/simple-shared-worker/style.css
Original file line number Diff line number Diff line change
@@ -1,17 +1,8 @@
html {
background-color: #7d2663;
background-color: rgb(230, 230, 230);
font-family: sans-serif;
}

h1 {
margin: 0;
font-size: 15vw;
letter-spacing: -0.2rem;
position: absolute;
top: 0;
z-index: -1;
}

p {
margin: 0 0 1rem 0;
}
Expand All @@ -20,15 +11,8 @@ p {
padding: 4vw;
width: 75%;
margin: 3vw auto;
background-color: rgba(255, 255, 255, 0.7);
border: 5px solid black;
opacity: 0.3;
transition: 1s all;
}

.controls:hover,
.controls:focus {
opacity: 1;
border: 2px solid;
border-radius: 6px;
}

.controls label,
Expand Down
38 changes: 12 additions & 26 deletions web-workers/simple-web-worker/style.css
Original file line number Diff line number Diff line change
@@ -1,40 +1,26 @@
html {
background-color: #7D2663;
font-family: sans-serif;
}

h1 {
margin: 0;
font-size: 20vmin;
letter-spacing: -0.2rem;
position: absolute;
top: 0;
z-index: -1;
background-color: rgb(230, 230, 230);
font-family: sans-serif;
}

p {
margin: 0;
margin: 0 0 1rem 0;
}

.controls {
padding: 4vw;
width: 75%;
margin: 10vw auto;
background-color: rgba(255,255,255,0.7);
border: 5px solid black;
opacity: 0.3;
transition: 1s all;
padding: 4vw;
width: 75%;
margin: 3vw auto;
border: 2px solid;
border-radius: 6px;
}

.controls:hover, .controls:focus {
opacity: 1;
}

.controls label, .controls p, .controls input {
font-size: 3vw;
.controls label,
.controls p,
.controls input {
font-size: 3vw;
}

.controls div {
padding-bottom: 1rem;
}