Skip to content

Instantly share code, notes, and snippets.

@abijaK
Last active December 20, 2022 09:50
Show Gist options
  • Save abijaK/2563b3e028a9db80a40809a2b6173e4e to your computer and use it in GitHub Desktop.
Save abijaK/2563b3e028a9db80a40809a2b6173e4e to your computer and use it in GitHub Desktop.
Code CSS_suite
.controls{
display: flex;
align-items: center;
justify-content: flex-end;
gap:160px;
}
.start-break{
display: flex;
}
.reset,
.start,
.break {
background-color: var(--primary-color);
}
.reset:hover,
.start:hover,
.break:hover {
background-color: var(--primary-hover);
}
.reset,
.start,
.break{
width: var(--button-width);
height: var(--button-height);
border-radius: 100%;
display: flex;
align-items: center;
flex-direction: column;
justify-content: center;
}
.start{
z-index: 1;
position: relative;
}
.reset{
z-index: 1;
}
#start,
#break,
#reset{
width: var(--button-width);
height: var(--button-height);
border: none;
cursor: pointer;
}
#start {
background: url('https://api.iconify.design/material-symbols/play-arrow.svg') var(--background-settings);
}
#break{
background: url('https://api.iconify.design/ic/baseline-pause.svg') var(--background-settings);
}
#reset{
background: url('https://api.iconify.design/ic/sharp-stop.svg') var(--background-settings);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment