forked from SebLague/SebLague.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstylesheet.css
75 lines (62 loc) · 1.62 KB
/
stylesheet.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
@font-face { font-family: opensans; src: url('ressources/OpenSans-Regular.ttf');}
* {
font-family: opensans;
color: #fff;
}
body {
background-color: #222222;
}
.social {
touch-action: manipulation;
/* 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 */
}
.lang-flag {
height: 17px;
transform: translateY(2px);
}
.prompt {
text-align: center;
font-size:25px;
position: fixed;
width: 60%;
top: 40%;
left: 50%;
transform: translate(-50%, -50%);
/*outline: 2px solid #555555;*/
}
.button {
background-color: #4CAFFF;
text-align: center;
font-size: 25px;
padding: 10px 0px;
color: white;
outline-style:none;
border:none;
cursor:pointer;
position:fixed;
width:50%;
bottom : 30%;
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;
}