Add wlogout CSS
This commit is contained in:
parent
1b69716ec5
commit
bb80e87ba6
1 changed files with 64 additions and 0 deletions
64
wlogout/style.css
Normal file
64
wlogout/style.css
Normal file
|
|
@ -0,0 +1,64 @@
|
||||||
|
* {
|
||||||
|
background-image: none;
|
||||||
|
box-shadow: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
window {
|
||||||
|
background-color: rgba(0, 0, 0, 0.92);
|
||||||
|
}
|
||||||
|
|
||||||
|
button {
|
||||||
|
border-radius: 20px;
|
||||||
|
border-color: #D90202;
|
||||||
|
border-style: solid;
|
||||||
|
border-width: 3px;
|
||||||
|
background-repeat: no-repeat;
|
||||||
|
background-position: center 38%;
|
||||||
|
background-size: 35%;
|
||||||
|
color: #33D4C4;
|
||||||
|
font-family: MonoidNerdFont;
|
||||||
|
font-size: 13px;
|
||||||
|
margin: 12px;
|
||||||
|
padding-top: 60px;
|
||||||
|
padding-bottom: 20px;
|
||||||
|
padding-left: 15px;
|
||||||
|
padding-right: 15px;
|
||||||
|
min-height: 120px;
|
||||||
|
min-width: 110px;
|
||||||
|
}
|
||||||
|
|
||||||
|
button:hover {
|
||||||
|
background-color: rgba(217, 2, 2, 0.2);
|
||||||
|
border-color: #33D4C4;
|
||||||
|
color: #DDDDDD;
|
||||||
|
outline-style: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
button:focus {
|
||||||
|
background-color: rgba(54, 41, 33, 0.5);
|
||||||
|
outline-style: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
#lock {
|
||||||
|
background-image: image(url("icons/lock.svg"), url("icons/lock.svg"));
|
||||||
|
}
|
||||||
|
|
||||||
|
#logout {
|
||||||
|
background-image: image(url("icons/logout.svg"), url("icons/logout.svg"));
|
||||||
|
}
|
||||||
|
|
||||||
|
#suspend {
|
||||||
|
background-image: image(url("icons/suspend.svg"), url("icons/suspend.svg"));
|
||||||
|
}
|
||||||
|
|
||||||
|
#hibernate {
|
||||||
|
background-image: image(url("icons/hibernate.svg"), url("icons/hibernate.svg"));
|
||||||
|
}
|
||||||
|
|
||||||
|
#shutdown {
|
||||||
|
background-image: image(url("icons/shutdown.svg"), url("icons/shutdown.svg"));
|
||||||
|
}
|
||||||
|
|
||||||
|
#reboot {
|
||||||
|
background-image: image(url("icons/reboot.svg"), url("icons/reboot.svg"));
|
||||||
|
}
|
||||||
Loading…
Add table
Add a link
Reference in a new issue