-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
29 lines (25 loc) · 859 Bytes
/
styles.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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
-webkit-transition: background-color 750ms ease-in-out, color 300ms ease-out;
-ms-transition: background-color 750ms ease-in-out, color 300ms ease-out;
transition: background-color 750ms ease-in-out, color 300ms ease-out;
}
#disconnect {
font-family: sans-serif;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
/* Utility */
.noselect {
-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 */
}