forked from buckley310/sketchywebsite
-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.css
76 lines (76 loc) · 1.71 KB
/
index.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
body {
background: url("img/background.jpg") no-repeat center center fixed; background-size: cover;
height: 100%; overflow: hidden;
cursor: url("cursor.cur"), default !important;
font-family: 'Tahoma', sans-serif; font-size: 11px; font-weight: 500; font-smooth: never;
color: #fff;
image-rendering: pixelated; /* for Chromium-based browsers */
image-rendering: crisp-edges; /* for Firefox-based browsers */
}
#loading {
width: 100%; height: 98vh;
align-content: center;
display: flex;
background-color: #fffc;
backdrop-filter: blur(5px);
}
#canvas {
position: fixed;
left: 0px; top: 0px;
width: 100%; height: 100%;
/* z-index: 100; */
cursor: url("cursor.cur"), default !important;
}
#taskbar {
display: none;
position: absolute;
left: 0%; bottom: 0%;
width: 100%; height: 30px;
background: url("img/taskbar.png");
}
#taskbar-start {
position: absolute;
left: 0%;
width: 100px; height: 100%;
background: url("img/taskbar-start.png");
cursor: url("cursor.cur"), default !important;
}
#taskbar-tooltip {
position: absolute;
left: 108px;
width: 320px; height: 60%;
margin-top: 8px;
}
#taskbar-tray {
position: absolute;
right: 0%;
width: 112px; height: 100%;
background: url("img/taskbar-tray.png");
}
#tray-clock {
position: absolute;
right: 0px;
width: 48px; height: 60%;
margin-top: 8px;
text-align: center;
user-select: none;
}
#tray-errCtrl {
position: absolute;
right: 84px;
width: 18px; height: 100%;
background: url("img/tray-errCtrl-lowS.png");
}
#tray-sounds {
position: absolute;
right: 64px;
height: 100%;
width: 18px;
background: url("img/tray-sounds-on.png");
}
#tray-errType {
position: absolute;
right: 46px;
width: 18px; height: 100%;
background: url("img/tray-errType-all.png");
}