forked from Ashvin-Ranjan/Ashvin-Ranjan.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
64 lines (53 loc) · 1.52 KB
/
style.css
File metadata and controls
64 lines (53 loc) · 1.52 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
body {
background-color: #1c1c1c;
}
.text{
font-family: sans-serif;
color: #fff;
text-align: center;
}
.button {
background-color: #4CAFFF;
font-family: opensans;
text-align: center;
font-size: 25px;
padding: 10px 0px;
color: white;
outline-style:none;
border:none;
cursor:pointer;
margin-top: 25px;
/*position:fixed;*/
min-width:10%;
/*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;
}
.footer {
color: white;
font-size: 25px;
position: absolute;
bottom: 0;
text-align: center;
font-family: Helvetica, Arial, Sans-Serif;
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 */
}
.footer a{
color: #1c1c1c;
}