Make bump session button pretty
This commit is contained in:
@ -1,6 +1,9 @@
|
||||
.cal {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
flex-direction: row-reverse;
|
||||
overflow-y: auto;
|
||||
max-width: max-content;
|
||||
padding-left: 2rem;
|
||||
}
|
||||
|
||||
.cal_col {
|
||||
|
||||
@ -120,6 +120,36 @@ ul.striped_list > li:nth-child(odd) ul li:nth-child(odd) { background-color:#30
|
||||
border-width: 0px 0 0px 50px;
|
||||
}
|
||||
|
||||
.category_bump_button {
|
||||
position: absolute;
|
||||
border: 0;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
|
||||
width: 3rem;
|
||||
height: 3rem;
|
||||
margin-left: -1.2rem;
|
||||
border-radius: 1.5rem;
|
||||
border: solid #a4829c 0.3rem;
|
||||
font-family: Ubuntu;
|
||||
font-weight: 1000;
|
||||
background: dimgray;
|
||||
color: wheat;
|
||||
|
||||
transition: all ease-in-out 0.2s;
|
||||
}
|
||||
|
||||
.category_bump_button:hover {
|
||||
background: wheat;
|
||||
color: dimgray;
|
||||
cursor: pointer;
|
||||
|
||||
transition: background color ease-in-out 0.2s;
|
||||
}
|
||||
|
||||
.category_bump_button:active {
|
||||
}
|
||||
|
||||
.history_entry {
|
||||
padding: 0.2em;
|
||||
padding-left: 0.5em;
|
||||
|
||||
Reference in New Issue
Block a user