personal-website/res/dev-fs/wde/base.css

73 lines
1.5 KiB
CSS
Raw Permalink Normal View History

2023-03-17 01:16:51 +00:00
@font-face{
2023-03-18 00:34:56 +00:00
font-family: "Virtue";
2023-05-23 23:08:01 +00:00
src:url("/res/dev-fs/fonts/virtue.ttf");
2023-03-18 00:34:56 +00:00
}
2023-05-23 23:08:01 +00:00
/* @font-face{
2023-03-18 00:34:56 +00:00
font-family: "Virtue";
2023-05-23 23:08:01 +00:00
src:url("/res/dev-fs/fonts/virtue.ttf")
} */
2023-03-17 01:16:51 +00:00
2023-04-13 01:09:07 +00:00
/* @media screen and (max-device-width: 2048px) and (max-device-height: 2048px) {
html {
zoom: 3
}
} */
2023-03-22 21:53:06 +00:00
.NoClick {
pointer-events: none;
2023-04-30 11:32:35 +00:00
}
2023-03-22 21:53:06 +00:00
.Click {
pointer-events: all;
}
2023-03-17 01:16:51 +00:00
*{
2023-03-18 00:34:56 +00:00
font-family: Verdana, Geneva, sans-serif;
font-size: 11px;
font-style: normal;
font-weight:initial;
2023-03-17 01:16:51 +00:00
}
2023-04-30 11:32:35 +00:00
*::-webkit-scrollbar { /* WebKit */
width: 0;
height: 0;
}
2023-03-15 00:05:24 +00:00
body{
2023-04-13 01:09:07 +00:00
zoom: var(--zoom);
2023-03-21 12:38:20 +00:00
position: absolute;
width: 100%;
height: 100%;
2023-03-15 00:05:24 +00:00
margin: 0px;
2023-04-29 14:26:07 +00:00
2023-03-17 01:16:51 +00:00
/* font: normal 14px Summer Pixel 22, "res/SummerPixel22Regular.ttf"; */
2023-03-20 11:20:37 +00:00
-webkit-touch-callout: none; /* iOS Safari */
-webkit-user-select: none; /* Safari */
-khtml-user-select: none; /* Konqueror HTML */
-moz-user-select: none; /* Old versions of Firefox */
-ms-user-select: none; /* Internet Explorer/Edge */
user-select: none; /* Non-prefixed version, currently
supported by Chrome, Edge, Opera and Firefox */
2023-04-13 01:09:07 +00:00
touch-action: manipulation;
2023-03-15 00:05:24 +00:00
}
2023-03-17 01:16:51 +00:00
2023-05-04 02:04:07 +00:00
#applications{
position: static;
width: 0px;
height: 0px;
visibility: hidden;
}
2023-04-30 11:32:35 +00:00
#windows-layer {
width: 0px;
height: 0px;
2023-04-13 01:09:07 +00:00
/* position: fixed; */
2023-05-04 02:04:07 +00:00
position: static;
2023-03-15 12:33:23 +00:00
}
2023-04-30 11:32:35 +00:00
#desktop-layer{
2023-05-04 02:04:07 +00:00
position: fixed;
/* margin: 0px; */
2023-03-18 02:16:32 +00:00
width: 100%;
height: 100%;
2023-04-30 11:32:35 +00:00
background-color: #9999CC;
}