-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstylesheet.css
More file actions
87 lines (72 loc) · 1.61 KB
/
stylesheet.css
File metadata and controls
87 lines (72 loc) · 1.61 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
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
@font-face { font-family: opensans; src: url('resources/OpenSans-Regular.ttf');}
body {
background-color: #222222;
}
.title {
font-family: opensans;
color: white;
text-align: center;
font-size:60px;
position: fixed;
width: 90%;
top: 40%;
left: 50%;
transform: translate(-50%, -400%);
/*outline: 2px solid #555555;*/
}
.number {
font-family: opensans;
color: white;
text-align: center;
font-size:80px;
position: fixed;
width: 90%;
top: 40%;
left: 50%;
transform: translate(-50%, -50%);
/*outline: 2px solid #555555;*/
}
.targSequence {
font-family: opensans;
color: white;
text-align: center;
font-size:60px;
position: fixed;
width: 90%;
top: 40%;
left: 50%;
transform: translate(-50%, +300%);
/*outline: 2px solid #555555;*/
}
.button {
background-color: #4CAFFF;
font-family: opensans;
text-align: center;
font-size: 40px;
padding: 10px 0px;
color: white;
outline-style:none;
border:none;
cursor:pointer;
position:fixed;
width:50%;
bottom : 10%;
left : 25%;
/* Disable text selection: https://stackoverflow.com/questions/826782/how-to-disable-text-selection-highlighting */
-webkit-touch-callout: none; /* iOS Safari */
-webkit-user-select: none; /* Safari */
-moz-user-select: none; /* Old versions of Firefox */
-ms-user-select: none; /* Internet Explorer/Edge */
user-select: none; /* Chrome, Opera and Firefox */
/*
Prevent double-tapping on button from zooming page on mobile
https://developer.mozilla.org/en-US/docs/Web/CSS/touch-action
*/
touch-action: manipulation;
}
.button:hover {
background-color: #5dc2f5;
}
.button:active {
background-color: #5591ff;
}