mirror of
https://github.com/mmvanheusden/SteamDepotDownloaderGUI.git
synced 2026-02-04 05:31:19 +01:00
59 lines
1.2 KiB
CSS
59 lines
1.2 KiB
CSS
@font-face {
|
|
font-family: 'Hubot Sans';
|
|
src: url('Hubot-Sans.woff2') format('woff2 supports variations'),
|
|
url('Hubot-Sans.woff2') format('woff2-variations');
|
|
font-weight: 700;
|
|
font-stretch: expanded;
|
|
}
|
|
|
|
.f1-light {
|
|
font-family: 'Hubot Sans', sans-serif;
|
|
overflow: hidden;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
/* The grey part */
|
|
.settings-surrounding {
|
|
display: none;
|
|
position: fixed;
|
|
z-index: 1;
|
|
left: 0;
|
|
top: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
overflow: hidden;
|
|
background-color: rgba(0, 0, 0, 0.33);
|
|
}
|
|
|
|
.settings-content {
|
|
position: relative;
|
|
border-radius: 10px;
|
|
overflow: auto;
|
|
background-color: white;
|
|
margin: 15% auto;
|
|
padding: 25px;
|
|
border: 1px solid #b4dede;
|
|
width: 90vw; /* 90vw -> 90% */
|
|
color: #333;
|
|
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1), 0 6px 20px rgba(0, 0, 0, 0.1);
|
|
}
|
|
|
|
.hide {
|
|
display: none;
|
|
}
|
|
|
|
hr {
|
|
border: 0;
|
|
height: 1px;
|
|
background: #ccc linear-gradient(to right, #ccc, #000000, #ccc);
|
|
}
|
|
|
|
.version-info {
|
|
position: absolute;
|
|
bottom: 0;
|
|
right: 0;
|
|
font-size: 0.8em;
|
|
padding: 5px 10px; /* space around text */
|
|
font-family: monospace;
|
|
}
|