forked from angular/angular.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patha11y.css
105 lines (89 loc) · 1.89 KB
/
a11y.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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
label {
color: #424242;
width: 100%;
}
hr {
border-top: 3px double #8c8b8b;
}
h3 {
outline: 0;
}
.hide-element {
display: none !important;
}
.btn {
margin-bottom: 15px;
}
.background-contrast {
background-color: #0143A3;
color: #fff;
}
nav a:visited, a:link {
color: darkblue;
}
.label-default {
background-color: #3F3F3F;
}
.skiplink {
min-height: 20px;
}
/* #docregion cb-a11y-managing-focus-skiplinks-style */
.skiplink a {
position: absolute;
width: 1px;
height: 1px;
padding: 0;
margin: -1px;
overflow: hidden;
clip: rect(0, 0, 0, 0);
border: 0;
color: darkblue;
}
.skiplink a:active,
.skiplink a:focus {
position: static;
width: auto;
height: auto;
margin: 0;
overflow: visible;
clip: auto;
}
/* #enddocregion */
/* #docregion cb-a11y-managing-focus-custom-outline */
.custom-outline:focus {
border-color: #7F0037;
outline: 0;
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(127, 0, 55, .6);
box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(127, 0, 55, .6);
}
/* #enddocregion */
/* #docregion cb-a11y-form-controls-visually-hidden-style*/
.visually-hidden {
border: 0;
clip: rect(0 0 0 0);
height: 1px;
margin: -1px;
overflow: hidden;
padding: 0;
position: absolute;
width: 1px;
}
/* #enddocregion */
.like-bootstrap {
display: block;
width: 100%;
height: 34px;
padding: 6px 12px;
font-size: 14px;
line-height: 1.42857143;
color: #555;
background-color: #fff;
background-image: none;
border: 1px solid #ccc;
border-radius: 4px;
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
-webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
-o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}