-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
67 lines (58 loc) · 2.03 KB
/
style.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
/*
Theme Name: Theme_Name
Theme URI: https://
Description: Theme description.
Author: Company_Name
Author URI: https://
Template: parent_theme_name
Version: 1.0.0
License: GNU General Public License v3 or later
License URI: http://www.gnu.org/licenses/gpl-3.0.html
Text Domain: TextDomain
*/
body {
overscroll-behavior-y: none;
}
/*
Gets rid of the annoying outline for mouse users but preserves it for
keyboard users, and is ignored by browsers that don’t support :focus-visible.
*/
[type='submit']:focus:not(:focus-visible) {
outline: none;
}
/* ----------------------------------------------------------------------------
CSS pseudo-element that applies styles to the part of a document that has
been highlighted by the user (such as clicking and dragging the mouse across
text), see: https://developer.mozilla.org/docs/Web/CSS/::selection
---------------------------------------------------------------------------- */
/*
::selection {
color: var(--color-foreground);
background-color: var(--color-selection);
}
::-moz-selection {
color: var(--color-foreground);
background-color: var(--color-selection);
}
*/
/*-----------------------------------------------------------------------------
CSS feature to detect if the user has requested that the system minimize the
amount of non-essential movement like transitions or animations, see:
https://developer.mozilla.org/docs/Web/CSS/@media/prefers-reduced-motion
-----------------------------------------------------------------------------*/
/* @media screen and (prefers-reduced-motion: reduce) {
* {
transition: 0s !important;
}
}
@media (prefers-reduced-motion: reduce) {
* {
animation-duration: 0.01ms !important;
animation-iteration-count: 1 !important;
transition-duration: 0.01ms !important;
scroll-behavior: auto !important;
}
} */
/*-----------------------------------------------------------------------------
Quick Fixes
-----------------------------------------------------------------------------*/