button group and default value
This commit is contained in:
parent
77785a2104
commit
e6e2f42f86
3 changed files with 54 additions and 9 deletions
|
|
@ -27,6 +27,39 @@ h1 {
|
|||
.clickable {
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.button-group button {
|
||||
border: 0;
|
||||
padding: 1em;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.button-group button.selected {
|
||||
border: 0;
|
||||
padding: 1em;
|
||||
background: #e1c300;
|
||||
}
|
||||
|
||||
.button-group button.unselected {
|
||||
border: 0;
|
||||
padding: 1em;
|
||||
background: #e1c300;
|
||||
font-weight: bold;
|
||||
color: white;
|
||||
}
|
||||
|
||||
.button-group button:first-of-type {
|
||||
border-top-left-radius: 1em;
|
||||
border-bottom-left-radius: 1em;
|
||||
margin-right: 0;
|
||||
}
|
||||
|
||||
.button-group button:last-of-type {
|
||||
border-top-right-radius: 1em;
|
||||
border-bottom-right-radius: 1em;
|
||||
margin-left: 0;
|
||||
}
|
||||
|
||||
.over-background {
|
||||
background-color: white;
|
||||
border-radius: 1vw;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue