summaryrefslogtreecommitdiff
path: root/www/css/index.css
blob: b1e1a78b7b5bdc7fa5f12ea3d034da1b9b6cbf61 (plain)
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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
@font-face {
  font-family: "Playtime";
  /* src: url("playtime.ttf"); */
  src: url("PlaytimeWithHotToddies.svg");
  src: url("PlaytimeWithHotToddies.ttf");
  src: url("PlaytimeWithHotToddies.woff");
}
@font-face {
  font-family: "Gentium";
  /* src: url("gentium.ttf"); */
  src: url("GentiumPlus.svg");
  src: url("GentiumPlus.ttf");
  src: url("GentiumPlus.woff");
}
body {
  margin: 0;
  padding: 0;
  background: gray;
  font: 22px/27px Playtime, sans-serif;
}
#container {
  cursor: url("/dump/ui/mousecursor.png"), auto;
  width: 800px;
  height: 600px;
  position: absolute;
  top: 50%;
  margin-top: -300px;
  left: 50%;
  margin-left: -400px;
}
@keyframes toright {
  from {
    left: -100px;
  }
  to {
    left: -190px;
  }
}
#bg,#vid,#solid {
  position: absolute;
  width: 800px;
  height: 600px;
}
#who {
  color: black;
  position: absolute;
  top: 452px;
  left: 12px;
  font-weight: bold;
}
#say {
  color: white;
  width: 750px;
  height: 90px;
  position: absolute;
  top: 493px;
  left: 28px;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
#window-image {
  position: absolute;
  top: 440px;
  left: 0;
}
#gray {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgb(64, 64, 64);
  background-color: rgba(64, 64, 64, 0.8);
  z-index: 9;
}
#warn-container {
  visibility: hidden;
  cursor: auto;
}
html.no-js #warn-container {
  visibility: visible;
}
#warn {
  background-color: rgb(128, 128, 128);
  background-color: rgba(128, 128, 128, 0.8);
  border-radius: 10px 10px;
  height: 70%;
  left: 50%;
  margin-left: -300px;
  overflow: auto;
  padding: 10px;
  position: absolute;
  top: 10%;
  width: 600px;
  z-index: 10;
}
#notwork {
  font: 28px/34px Playtime;
  font-weight: bold;
}
html.no-js #warn li:not(#js) { display: none; }
html.video #warn li#video { display: none; }
html.audio #warn li#audio { display: none; }
html.fontface #warn li#fontface { display: none; }
html.csstransforms #warn li#csstransforms { display: none; }
html.csstransitions #warn li#csstransitions { display: none; }
html #warn li#html-svg-filter { display: none; }
.button {
  cursor: pointer;
  opacity: 0.4;
}
.button:hover {
  opacity: 1;
}
#gotit {
  text-align: center;
}
html.no-js #gotit {
  display: none;
}