mirror of
https://github.com/elenapan/dotfiles.git
synced 2026-02-04 03:53:31 +08:00
evil daemon system, dependency list update, README improvements.
Former-commit-id: db310f8e49
Former-commit-id: 4f25f9200c3ac9f9385daca5a68378249ff0329e
Former-commit-id: 69fa3954e5738446a59b409b7e326233e7c3ef55
Former-commit-id: 673176f7857e39f3455f4ccb426eef2789c0e891
51 lines
777 B
CSS
51 lines
777 B
CSS
/* Some settings added by hand */
|
|
.text-button {
|
|
font-weight: bold;
|
|
margin-left: 3px;
|
|
margin-right: 3px;
|
|
padding-bottom: 5px;
|
|
padding-top: 5px;
|
|
border-radius: 25px;
|
|
transition: 0.3s;
|
|
}
|
|
|
|
.text-button:checked {
|
|
color: #BD99FF;
|
|
background: #3D4C5F;
|
|
border-radius: 25px;
|
|
}
|
|
|
|
.text-button:hover {
|
|
background: #56687E;
|
|
color: #BD99FF;
|
|
transition: 0.3s;
|
|
}
|
|
|
|
.image-button {
|
|
color: #87DFEB;
|
|
margin-left: 4px;
|
|
margin-right: 4px;
|
|
padding-left: 12px;
|
|
padding-right: 12px;
|
|
transition: 0.3s;
|
|
border-radius: 99px;
|
|
}
|
|
|
|
.image-button:hover {
|
|
background: #56687E;
|
|
transition: 0.3s;
|
|
}
|
|
|
|
.image-button:checked {
|
|
color: #24D1E7;
|
|
background: #3D4C5F;
|
|
}
|
|
|
|
.image-button:disabled {
|
|
color: #56687E;
|
|
}
|
|
|
|
.titlebar {
|
|
min-height: 48px;
|
|
box-shadow: none;
|
|
}
|