-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
54 lines (51 loc) · 1.54 KB
/
style.css
File metadata and controls
54 lines (51 loc) · 1.54 KB
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
html, body {
margin: auto;
/*padding: 0;
overflow: hidden; /* Hide scrollbars */
height: 100%; /* Για να μην γίνεται scrolling */
touch-action: none; /* Για να μην κινείται ο canvas όταν γίνεται drag */
-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 */
background-color: rgb(0, 0, 60);
color: rgb(255, 255, 255);
}
canvas {
display: block;
margin: auto;
height: 100%; /* Για να μην γίνεται scrolling */
touch-action: none; /* Για να μην κινείται ο canvas όταν γίνεται drag */
}
.loadingclass {
margin: 0;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
text-align: center;
}
.modes {
color: rgb(0, 200, 245);
background-color: transparent;
border: none;
font-weight: bold;
outline: none;
}
.inputbox {
font-family: "Arial Narrow Bold";
font-weight: normal;
background-color: rgb(48, 98, 213);
color: white;
border: none;
}
.inputbox:focus {
outline: none;
}
.inputbox::selection {
background: grey;
}
@font-face {font-family: "Arial Narrow Bold"; src: url("ARIALNB.TTF") format("truetype"); }