40 lines
850 B
CSS
40 lines
850 B
CSS
/* steamos.css */
|
|
|
|
/* Big Picture Mode inspired UI for SteamOS */
|
|
body {
|
|
background-color: #1b2838 !important;
|
|
color: #c7d5e0 !important;
|
|
}
|
|
|
|
#browser-bar {
|
|
background-color: #171a21 !important;
|
|
padding: 10px !important;
|
|
}
|
|
|
|
#nav-buttons button {
|
|
background-color: #4c6b22 !important;
|
|
color: white !important;
|
|
border: none !important;
|
|
border-radius: 5px !important;
|
|
font-size: 1.2em !important;
|
|
padding: 10px 20px !important;
|
|
margin-right: 10px !important;
|
|
transition: background-color 0.2s;
|
|
}
|
|
|
|
#nav-buttons button:hover {
|
|
background-color: #5f862a !important;
|
|
}
|
|
|
|
#url-bar {
|
|
background-color: #2a475e !important;
|
|
border: 1px solid #66c0f4 !important;
|
|
color: white !important;
|
|
font-size: 1.2em !important;
|
|
padding: 10px !important;
|
|
}
|
|
|
|
#url-bar::placeholder {
|
|
color: #c7d5e0;
|
|
}
|